/* 
    Editor: fan
    Time: 2020.4.8

    Less compilation
    > npm install -g less
    > lessc style.less style.css
*/


/* 字体 */

@font-face {
    font-family: 'pingfnag';
    font-display: swap;
    src: url('../fonts/PingFang.eot');
    /* IE9 */
    src: url('../fonts/PingFang.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/PingFang.woff2') format('woff2'), url('../fonts/PingFang.woff') format('woff'), /* chrome、firefox */
    url('../fonts/PingFang.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
    url('../fonts/PingFang.svg#PingFang') format('svg');
    /* iOS 4.1- */
}

@font-face {
    font-family: 'shu';
    src: url('../fonts/GOTHAMRND-BOLD.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* @font-face {
  font-family: "shu";
  src: url("../fonts/GOTHAMRND-BOLD.woff2") format("woff2"),
       url("../fonts/GOTHAMRND-BOLD.woff") format("woff"),
       url("../fonts/GOTHAMRND-BOLD.ttf") format("truetype"),
       url("../fonts/GOTHAMRND-BOLD.eot") format("embedded-opentype"),
       url("../fonts/GOTHAMRND-BOLD.svg") format("svg");
  font-weight: normal;
  font-style: normal;
} */


/* End */


/* 公用 */


/* base公共样式 */

* {
    padding: 0;
    margin: 0;
    -webkiit-box-sizing: border-box;
    box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

body {
    color: #333;
    font-size: 16px;
    position: relative;
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'WenQuanYi Micro Hei', 'Arial', 'sans-serif', \5b8b\4f53;
}


/* @media (max-width: 767px) {
	body {
		overflow: hidden;
	}
} */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    text-decoration: none;
}

img {
    border: none;
}

ol,
ul,
li {
    list-style: none;
}

table {
    border-collapse: collapse;
}

input[type=text]:focus,
input[type=text]:active {
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}

a {
    -webkit-tap-highlight-color: transparent;
}

a:hover {
    -webkit-tap-highlight-color: transparent;
}

img {
    vertical-align: middle;
}

input,
input:focus,
input:active,
button,
button[type=button],
textarea:focus {
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}

.basecont {
    max-width: 96%;
    width: 1600px;
    margin: 0 auto;
}

@media (min-width: 1921px) {
    .basecont {
        min-width: 80%;
    }
}

@media (max-width: 1440px) {
    .basecont {
        width: 1280px;
    }
}

@media (max-width: 1199px) {
    .basecont {
        width: 970px;
    }
}

@media (max-width: 991px) {
    .basecont {
        width: 750px;
    }
}

@media (max-width: 767px) {
    .basecont {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
}

.basebut {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 60px;
    position: relative;
}

@media (max-width: 767px) {
    .basebut {
        width: 100%;
        height: 50px;
        font-size: 14px;
        color: #fff;
    }
}

.basebut:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 5px;
    background-color: #0f4b81;
    transition: width 0.3s linear;
}

.basebut span,
.basebut i {
    position: relative;
    z-index: 3;
}

.basebut i {
    width: 34px;
    display: block;
    margin-left: 18px;
}

@media (max-width: 767px) {
    .basebut:after {
        width: 100%;
    }
    .basebut i {
        width: 28px;
        display: none;
        margin-left: 10px;
    }
}

.basebut i img {
    width: 100%;
    height: auto;
    float: left;
}

.basebut i img:nth-child(2) {
    display: none;
}

.basebut:hover {
    color: #fff;
}

.basebut:hover:after {
    width: 100%;
}

.basebut:hover i img:nth-child(1) {
    display: none;
}

.basebut:hover i img:nth-child(2) {
    display: block;
}

.basepagebox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.basepagebox .next,
.basepagebox .prev {
    width: 160px;
    background-color: #fff;
    text-align: center;
    height: 50px;
    line-height: 50px;
    color: #666;
    display: block;
}

@media (max-width: 767px) {
    .basepagebox .next,
    .basepagebox .prev {
        font-size: 14px;
        height: 40px;
        width: 100px;
        line-height: 40px;
    }
}

@media (max-width: 575px) {
    .basepagebox .next,
    .basepagebox .prev {
        width: 100%;
    }
}

.basepagebox .next:hover,
.basepagebox .prev:hover {
    background-color: #0f4b81;
    color: #fff;
}

.basepagebox a {
    margin-bottom: 20px;
}

.basepagebox .cont1 {
    width: 16%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 575px) {
    .basepagebox .cont1 {
        display: none;
        margin: 20px 0;
        width: 100%;
    }
}

.basepagebox a {
    display: block;
    margin-right: 20px;
    font-size: 18px;
    color: #666;
}

@media (max-width: 991px) {
    .basepagebox a {
        margin-right: 10px;
    }
}

@media (max-width: 767px) {
    .basepagebox a {
        font-size: 16px;
        margin-right: 5px;
    }
}

.basepagebox a:hover {
    color: #0f4b81;
}

.basepagebox .active {
    color: #0f4b81;
}


/* End */


/* 导航和底部样式 */

.navbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    height: 100px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media (max-width: 1199px) {
    .navbox {
        height: 70px;
    }
}

.navbox>.basecont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.navbox>.basecont .logo {
    width: 256px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media (max-width: 1199px) {
    .navbox>.basecont .logo {
        width: 180px;
    }
}

@media (max-width: 575px) {
    .navbox>.basecont .logo {
        width: 140px;
    }
}

.navbox>.basecont .logo a {
    display: block;
    width: 100%;
}

.navbox>.basecont .logo a img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.navbox>.basecont .logo a img:nth-child(2) {
    display: none;
}

.navbox>.basecont .menubox {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1199px) {
    .navbox>.basecont .menubox {
        display: none;
    }
}

.navbox>.basecont .menubox .menu {
    height: 100%;
}

.navbox>.basecont .menubox .menu .item {
    display: inline-block;
    height: 100%;
    margin-left: 55px;
    position: relative;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.navbox>.basecont .menubox .menu .item .tit {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    line-height: 100px;
    color: #fff;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.navbox>.basecont .menubox .menu .item.on a {
    color: #fff;
}

.navbox>.basecont .menubox .menu .item .tit {
    /* color: #333; */
}

.navbox>.basecont .menubox .menu .item .tit i {
    width: 12px;
    margin-left: 10px;
    display: block;
    overflow: hidden;
}

.navbox>.basecont .menubox .menu .item .tit i img {
    width: 100%;
    float: left;
}

.navbox>.basecont .menubox .menu .item .tit i img:nth-child(2) {
    display: none;
}

.navbox>.basecont .menubox .menu .item:first-child {
    margin-left: 0;
}

.navbox>.basecont .menubox .menu .item .cont {
    display: none;
}

.navbox>.basecont .menubox .menu .item:hover {
    position: relative;
}

.navbox>.basecont .menubox .menu .item:hover .tit {
    color: #0f4b81;
}

.navbox>.basecont .menubox .menu .item:hover i img:nth-child(1) {
    display: none;
}

.navbox>.basecont .menubox .menu .item:hover i img:nth-child(2) {
    display: block;
}

.navbox>.basecont .menubox .menu .item:hover .cont {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    padding: 45px 30px;
    width: 500px;
    -webkit-transform: translateX(-45%);
    transform: translateX(-45%);
    /* display: flex; */
    display: none;
    box-shadow: -10px 0 20px rgba(0, 0, 0, 0.2);
}

.navbox>.basecont .menubox .menu .item:hover .cont .jut {
    margin-right: 170px;
}

.navbox>.basecont .menubox .menu .item:hover .cont .jut:last-child {
    margin-right: 0;
}

.navbox>.basecont .menubox .menu .item:hover .cont .jut .h1 {
    font-size: 18px;
    color: #333333;
    margin-bottom: 20px;
    display: block;
}

.navbox>.basecont .menubox .menu .item:hover .cont .jut .list a {
    margin-bottom: 10px;
    display: block;
    height: auto;
    position: relative;
    padding-left: 10px;
    font-size: 16px;
    color: #666666;
}

.navbox>.basecont .menubox .menu .item:hover .cont .jut .list a:after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: 5px;
    background-color: #666666;
}

.navbox>.basecont .menubox .menu .item:hover .cont .jut .list a:hover {
    color: #0f4b81;
    padding-left: 10px;
}

.navbox>.basecont .menubox .menu .active {
    position: relative;
}

.navbox>.basecont .menubox .menu .active .tit {
    color: #0f4b81;
}

.navbox>.basecont .menubox .menu .active .cont {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    padding: 45px 30px;
    width: 500px;
    -webkit-transform: translateX(-45%);
    transform: translateX(-45%);
    display: flex;
}

.navbox>.basecont .menubox .menu .active .cont .jut {
    margin-right: 170px;
}

.navbox>.basecont .menubox .menu .active .cont .jut:last-child {
    margin-right: 0;
}

.navbox>.basecont .menubox .menu .active .cont .jut .h1 {
    font-size: 18px;
    color: #333333;
    margin-bottom: 20px;
    display: block;
}

.navbox>.basecont .menubox .menu .active .cont .jut .list a {
    margin-bottom: 10px;
    display: block;
    height: auto;
    position: relative;
    padding-left: 10px;
    font-size: 16px;
    color: #666666;
}

.navbox>.basecont .menubox .menu .active .cont .jut .list a:after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: 5px;
    background-color: #666666;
}

.navbox>.basecont .menubox .menu .active .cont .jut .list a:hover {
    color: #0f4b81;
    padding-left: 10px;
}

.navbox>.basecont .menubox .en {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-left: 100px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media (max-width: 1199px) {
    .navbox>.basecont .menubox .en {
        border-radius: 0;
        width: 52px;
    }
}

@media (max-width: 767px) {
    .navbox>.basecont .menubox .en {
        width: 35px;
        height: 35px;
    }
}

.navbox>.basecont .clickbut {
    display: none;
}

@media (max-width: 1199px) {
    .navbox>.basecont .clickbut {
        display: flex;
        justify-content: cener;
        align-items: center;
        width: 28px;
        height: auto;
        flex-wrap: wrap;
        position: relative;
    }
    .navbox>.basecont .clickbut span {
        display: block;
        width: 100%;
        height: 2px;
        border-radius: 8px;
        background-color: #fff;
        margin-bottom: 6px;
        -webkit-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }
    .navbox>.basecont .clickbut span:last-child {
        margin-bottom: 0;
    }
    .navbox>.basecont .clickbut:after,
    .navbox>.basecont .clickbut:before {
        display: block;
        content: "";
        width: 100%;
        height: 2px;
        position: absolute;
        background-color: #666;
        top: 8px;
        -webkit-transition: opacity 0.2s linear;
        transition: opacity 0.2s linear;
        opacity: 0;
    }
    .navbox>.basecont .clickbut:before {
        left: 0;
    }
    .navbox>.basecont .clickbut:after {
        right: 0;
    }
}

.navbox>.basecont .clickbut.on:after,
.navbox>.basecont .clickbut.on:before {
    opacity: 1;
}

.navbox>.basecont .clickbut.on:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.navbox>.basecont .clickbut.on:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.navbox>.basecont .clickbut.on span {
    opacity: 0;
}

@media (min-width: 1200px) {
    .navbox .phonemenu {
        display: none!important;
    }
}

.headbox2 {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

@media (max-width: 1199px) {
    .navbox .phonemenu {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        padding-top: 5vh;
        background-color: #fff;
        overflow: auto;
    }
    .f_left1 {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    .navbox .phonemenu .menu li {
        width: 100%;
        /* margin-bottom: 10px; */
        padding-top: 12px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 12px;
    }
    .navbox .phonemenu .menu li .tit {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .navbox .phonemenu .menu li .tit a {
        font-size: 14px;
        text-indent: .4em;
    }
    .navbox .phonemenu .menu li .tit i {
        display: block;
        width: 15px;
        -webkit-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }
    .navbox .phonemenu .menu li .tit i img {
        float: left;
        width: 100%;
    }
    .navbox .phonemenu .menu li .cont {
        display: none;
        padding-left: 20px;
        margin-top: 20px;
    }
    .navbox .phonemenu .menu li .cont a {
        font-size: 18px;
        color: #666;
    }
    .navbox .phonemenu .menu li .cont a:hover {
        color: #0f4b81;
    }
    .navbox .phonemenu .menu li .cont .jut {
        margin-bottom: 10px;
    }
    .navbox .phonemenu .menu li .cont .jut .list {
        display: block;
        padding-left: 20px;
        margin-top: 10px;
    }
    .navbox .phonemenu .menu li .cont .jut .list a {
        display: block;
        margin-bottom: 5px;
    }
    .navbox .phonemenu .menu li.active .tit i {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    .navbox .phonemenu .en {
        margin-top: 20px;
        display: block;
        width: 70px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 3px;
    }
    .navbox .phonemenu .en img {
        width: 22px;
        margin-right: 10px;
    }
}

@media (max-width: 1199px) and (max-width: 767px) {
    .navbox .phonemenu .menu li .tit a {
        font-size: 15px;
    }
}

@media (max-width: 1199px) and (max-width: 767px) {
    .navbox .phonemenu .menu li .cont a {
        font-size: 14px;
    }
}

.navbox:hover {
    background-color: #fff;
}

.navbox:hover>.basecont .logo a img:nth-child(1) {
    display: none;
}

.navbox:hover>.basecont .logo a img:nth-child(2) {
    display: block;
}

.navbox:hover>.basecont .menubox .en {
    border: 1px solid #999;
    color: #333;
}

.navbox:hover>.basecont .menubox .menu a {
    color: #333;
}

.navbox:hover>.basecont .menubox .menu a:hover {
    color: #0f4b81;
}

.navbox:hover>.basecont .clickbut span {
    background-color: #666;
}

.navbox:hover>.basecont .menubox .menu .item .tit {
    color: #333;
}

.navbox:hover>.basecont .menubox .menu .item.on .tit {
    color: #0f4b81;
}

.navbox:hover>.basecont .menubox .menu .item .tit i img:nth-child(1) {
    display: none;
}

.navbox:hover>.basecont .menubox .menu .item .tit i img:nth-child(2) {
    display: block;
}

.navhover {
    background-color: #fff;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1);
}

.navhover>.basecont .logo a img:nth-child(1) {
    display: none;
}

.navhover>.basecont .logo a img:nth-child(2) {
    display: block;
}

.navhover>.basecont .menubox .en {
    border: 1px solid #999;
    color: #333;
}

.navhover>.basecont .menubox .menu a {
    color: #333;
}

.navhover>.basecont .menubox .menu a:hover {
    color: #0f4b81;
}

.navhover>.basecont .clickbut span {
    background-color: #666;
}

.navhover>.basecont .menubox .menu .item .tit {
    color: #333;
}

.navhover>.basecont .menubox .menu .item.on a {
    color: #0f4b81;
}

.navhover2 {
    background-color: #fff;
}

.navhover2>.basecont .logo a img:nth-child(1) {
    display: none;
}

.navhover2>.basecont .logo a img:nth-child(2) {
    display: block;
}

.navhover2>.basecont .menubox .en {
    border: 1px solid #999;
    color: #333;
}

.navhover2>.basecont .menubox .menu a {
    color: #333;
}

.navhover2>.basecont .menubox .menu a:hover {
    color: #0f4b81;
}

.navhover2>.basecont .clickbut span {
    background-color: #666;
}

.navhover2>.basecont .menubox .menu .item .tit {
    color: #333;
}

.navhover2>.basecont .menubox .menu .item.on a {
    color: #0f4b81;
}

.navheight {
    height: 80px;
}

@media (max-width: 1199px) {
    .navheight {
        height: 60px;
    }
}

.navheight>.basecont .logo {
    width: 200px;
}

@media (max-width: 1199px) {
    .navheight>.basecont .logo {
        width: 160px;
    }
}

@media (max-width: 575px) {
    .navheight>.basecont .logo {
        width: 120px;
    }
}

.navheight>.basecont .menubox .menu .item {
    margin-left: 40px;
}

.navheight>.basecont .menubox .menu .item .tit {
    line-height: 80px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navheight>.basecont .menubox .menu .item .tit.on a {
    color: #0f4b81;
}

.navheight>.basecont .menubox .menu .item .tit i img:nth-child(1) {
    display: none;
}

.navheight>.basecont .menubox .menu .item .tit i img:nth-child(2) {
    display: block;
}

.navheight>.basecont .menubox .en {
    margin-left: 90px;
    width: 36px;
    height: 36px;
}

.footerbox {
    padding: 100px 0 45px;
    background: url(../images/home/huadong2.jpg) no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .footerbox {
        padding: 50px 0 23px;
        background-position: 62% 0;
        background-size: auto 100%;
        background-attachment: initial;
    }
}

.footerbox:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0f4b81;
    opacity: 0;
    z-index: 1;
}

.footerbox .basecont {
    position: relative;
    z-index: 2;
}

.footerbox .basecont .menu {
    width: 100%;
    margin-bottom: 200px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 1199px) {
    .footerbox .basecont .menu {
        margin-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .footerbox .basecont .menu {
        margin-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .footerbox .basecont .menu {
        margin-bottom: 20px;
    }
}

@media (max-width: 1199px) {
    .footerbox .basecont .menu .lt {
        width: 100%;
        margin-bottom: 45px;
    }
}

.footerbox .basecont .menu .lt .logo {
    width: 257px;
    margin-bottom: 60px;
}

@media (max-width: 1199px) {
    .footerbox .basecont .menu .lt .logo {
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .footerbox .basecont .menu .lt .logo {
        width: 160px;
    }
}

.footerbox .basecont .menu .lt .logo img {
    width: 100%;
}

.footerbox .basecont .menu .lt .icon {
    display: flex;
}

.footerbox .basecont .menu .lt .icon .item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.footerbox .basecont .menu .lt .icon .item img {
    height: 20px;
}

.footerbox .basecont .menu .gt {
    display: flex;
    justify-content: space-between;
    width: 70%;
}

@media (max-width: 1199px) {
    .footerbox .basecont .menu .gt {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .footerbox .basecont .menu .gt {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .footerbox .basecont .menu .gt .item {
        width: 45%;
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .footerbox .basecont .menu .gt .item {
        width: 100%;
    }
}

.footerbox .basecont .menu .gt .item .tit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.footerbox .basecont .menu .gt .item .tit a {
    color: #fff;
    text-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);
    font-size: 18px;
}

.footerbox .basecont .menu .gt .item .tit i {
    width: 17px;
    display: none;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media (max-width: 767px) {
    .footerbox .basecont .menu .gt .item .tit i {
        display: block;
    }
}

.footerbox .basecont .menu .gt .item .tit i img {
    float: left;
    width: 100%;
}

.footerbox .basecont .menu .gt .item .cont {
    display: none;
}

@media (min-width: 768px) {
    .footerbox .basecont .menu .gt .item .cont {
        display: block!important;
    }
}

.footerbox .basecont .menu .gt .item .cont span,
.footerbox .basecont .menu .gt .item .cont a {
    display: block;
    color: #fff;
    text-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    opacity: .8;
}

.footerbox .basecont .menu .gt .item .cont a {}

@media (max-width: 575px) {
    .footerbox .basecont .menu .gt .item .cont span,
    .footerbox .basecont .menu .gt .item .cont a {
        font-size: 14px;
    }
}

.footerbox .basecont .menu .gt .item .cont span:hover,
.footerbox .basecont .menu .gt .item .cont a:hover {
    color: #fff;
}

.footerbox .basecont .menu .gt .item .cont a:hover {
    opacity: 1;
}

.footerbox .basecont .menu .gt .active1 .tit i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.footerbox .basecont .ban {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 767px) {
    .footerbox .basecont .ban {
        flex-wrap: wrap;
    }
}

.footerbox .basecont .ban .lt {
    color: #607ea3;
    font-size: 14px;
}

@media (max-width: 1199px) {
    .footerbox .basecont .ban .lt {
        width: 80%;
    }
}

@media (max-width: 767px) {
    .footerbox .basecont .ban .lt {
        width: 100%;
        text-align: center;
    }
}

.footerbox .basecont .ban .lt a {
    color: #607ea3;
    display: inline-block;
}

.footerbox .basecont .ban .lt a:hover {
    color: #fff;
}

.footerbox .basecont .ban .gt {
    position: relative;
    padding: 5px;
}

@media (max-width: 767px) {
    .footerbox .basecont .ban .gt {
        display: none;
    }
}

.footerbox .basecont .ban .gt .tit {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footerbox .basecont .ban .gt .tit a {
    color: #607ea3;
}

.footerbox .basecont .ban .gt .tit i {
    width: 13px;
    margin-left: 20px;
    margin-top: 5px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    overflow: hidden;
    display: block;
}

.footerbox .basecont .ban .gt .tit i img {
    width: 100%;
    float: left;
}

.footerbox .basecont .ban .gt .tit i img:nth-child(2) {
    display: none;
}

.footerbox .basecont .ban .gt .cont {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    display: none;
}

.footerbox .basecont .ban .gt .cont a {
    color: #607ea3;
    display: block;
    width: 100%;
    padding: 5px;
}

.footerbox .basecont .ban .on .tit i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}


/* End */


/* banner */

.bannerbox {
    position: relative;
    z-index: 2;
}

.bannerbox .bannerbox-container {
    height: 100%;
    width: 100%;
}

.bannerbox .bannerbox-container .swiper-slide {
    /* background-color: rgba(15,75,129,.2); */
}

.bannerbox .bannerbox-container .img {
    position: relative;
    height: 100%;
}

.bannerbox .bannerbox-container .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    -webkit-transform: translateY(-16%);
    transform: translateY(-16%);
    visibility: visible!important;
}

.bannerbox .bannerbox-container .tit,
.bannerbox .bannerbox-container .tuan,
.bannerbox .bannerbox-container .but {
    position: absolute;
    left: 0;
    right: 0;
    height: 0;
    z-index: 55;
    -webit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
}

.bannerbox .bannerbox-container .tit {
    top: 50%;
    /*  -webkit-filter: saturate(0.75);
  filter: saturate(0.75);
  mix-blend-mode: overlay; */
}

.bannerbox .bannerbox-container .tit .font {
    color: #fff;
    -webit-transform: translateY(-50%);
    transform: translateY(-50%);
    /*  -webkit-filter: saturate(0.75);
  filter: saturate(0.75);
  mix-blend-mode: overlay; */
}

.bannerbox .bannerbox-container .tit .font strong {
    font-size: 62px;
    font-weight: bold;
    display: block;
    margin-bottom: 30px;
    /*  -webkit-filter: saturate(0.75);
  filter: saturate(0.75);
  mix-blend-mode: overlay; */
    /* width: 470px; */
}

.bannerbox .bannerbox-container .tit .font strong img {
    width: 100%;
}

@media (max-width: 767px) {
    .bannerbox .bannerbox-container .tit .font strong {
        width: 250px;
    }
    .bannerbox .bannerbox-container .tit .font strong {
        font-size: 32px;
        line-height: 1.2;
    }
}

@media (max-width: 376px) {
    .bannerbox .bannerbox-container .tit .font strong {
        font-size: 30px;
    }
    .bannerbox .bannerbox-container .tit .font strong {
        width: 270px;
    }
}

.bannerbox .bannerbox-container .tuan {
    top: calc(50% - 130px);
}

@media (max-width: 767px) {
    .bannerbox .bannerbox-container .tuan {
        top: calc(50% - 85px);
    }
}

.bannerbox .bannerbox-container .tuan span {
    display: block;
    line-height: 1.2;
    /* margin-bottom: 35px; */
}

@media (max-width: 767px) {
    .bannerbox .bannerbox-container .tuan span {
        margin-bottom: 20px;
        font-size: 14px;
    }
}

.bannerbox .bannerbox-container .but {
    top: calc(50% + 142px);
}

@media (max-width: 767px) {
    .bannerbox .bannerbox-container .but {
        top: calc(50% + 112px);
    }
}

.bannerbox .bannerbox-container .but .basebut {
    color: #fff;
}

.bannerbox .bannerbox-container .but .basebut:after {
    background-color: #2c61c6;
}

.bannerbox .bannerbox-container .but .basebut i img:nth-child(1) {
    display: none;
}

.bannerbox .bannerbox-container .but .basebut i img:nth-child(2) {
    display: block;
}

@media (max-width: 767px) {
    .bannerbox .bannerbox-container .but .basebut {
        color: #fff;
        width: 135px;
    }
    .bannerbox .bannerbox-container .but .basebut:after {
        width: 5px;
    }
}

.bannerbox .bannerbox-container .bannerbox-pagination {
    bottom: 4%;
}

.bannerbox .bannerbox-container .bannerbox-pagination span {
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    background-color: transparent;
    outline: none;
    margin: 0 10px;
}

@media (max-width: 767px) {
    .bannerbox .bannerbox-container .bannerbox-pagination span {
        margin: 0 5px;
    }
}

.bannerbox .bannerbox-container .bannerbox-pagination .swiper-pagination-bullet-active {
    background-color: #fff;
}


/* End */


/* 公用banner */

.basebanner {
    position: relative;
}

.basebanner:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #000;
    filter: alpha(opacity=20);
    -moz-opacity: 0.2;
    -khtml-opacity: 0.2;
    opacity: 0.2;
}

.basebanner .img {
    width: 100%;
}

@media (max-width: 767px) {
    .basebanner .img {
        height: 240px;
    }
}

@media (max-width: 575px) {
    .basebanner .img {
        height: 288px;
    }
}

.basebanner .img img {
    width: 100%;
}

@media (max-width: 767px) {
    .basebanner .img img {
        height: 100%;
        object-fit: cover;
    }
}

.basebanner .basecont {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
}

.basebanner .basecont .font {
    color: #fff;
}

@media (max-width: 991px) {
    .basebanner .basecont .font {
        margin-top: 20px;
    }
}

.basebanner .basecont .font .tit {
    font-size: 48px;
    font-weight: bold;
}

@media (max-width: 1199px) {
    .basebanner .basecont .font .tit {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .basebanner .basecont .font .tit {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .basebanner .basecont .font .tit {
        font-size: 26px;
    }
}

.basebanner .basecont .font p {
    font-size: 16px;
    margin-top: 35px;
    line-height: 30px;
    max-width: 654px;
}

@media (max-width: 1199px) {
    .basebanner .basecont .font p {
        margin-top: 15px;
    }
}

@media (max-width: 991px) {
    .basebanner .basecont .font p {
        margin-top: 8px;
        font-size: 13px;
        line-height: 28px;
    }
}

@media (max-width: 767px) {
    .basebanner .basecont .font p {
        width: 100%!important;
        line-height: 20px;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .basebanner .basecont .font p {
        font-size: 14px;
    }
}

.basebanner .basecont .list {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 80px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

@media (max-width: 1199px) {
    .basebanner .basecont .list {
        height: 60px;
    }
}

@media (max-width: 991px) {
    .basebanner .basecont .list {
        height: 45px;
    }
}

@media (max-width: 767px) {
    .basebanner .basecont .list {
        padding: 0 15px;
    }
}

.basebanner .basecont .list a,
.basebanner .basecont .list span {
    color: #efece9;
}

@media (max-width: 991px) {
    .basebanner .basecont .list a,
    .basebanner .basecont .list span {
        font-size: 14px;
    }
}

.basebanner .basecont .list span {
    display: block;
    margin: 0 5px;
}


/* End */


/* 首页 */

.home-section1 {
    padding-top: 140px;
    padding-bottom: 130px;
}

.home-section1 .basecont {
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
}

@media (max-width: 1199px) {
    .home-section1 {
        padding-top: 100px;
        padding-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .home-section1 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.home-section1 .lt {
    width: 37%;
}

@media (max-width: 1199px) {
    .home-section1 .lt {
        width: 100%;
        display: none;
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .home-section1 .lt {
        display: none;
    }
}

.home-section1 .lt img {
    width: 100%;
}

@media (max-width: 767px) {
    .home-section1 .lt {
        width: 100%;
    }
    .home-section1 .lt img {
        width: 100%;
    }
}

.home-section1 .gt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 54%;
    margin-left: 100px;
}

@media (max-width: 1680px) {
    .home-section1 .gt {
        margin-left: 80px;
    }
}

@media (max-width: 1440px) {
    .home-section1 .gt {
        margin-left: 60px;
    }
}

@media (max-width: 1366px) {
    .home-section1 .gt {
        margin-left: 40px;
    }
}

@media (max-width: 1199px) {
    .home-section1 .gt {
        width: 100%;
        margin-left: 20px;
    }
}

@media (max-width: 991px) {
    .home-section1 .gt {
        margin-left: 0px;
    }
}

.home-section1 .gt .cont {
    width: 100%;
}

.home-section1 .gt .cont .font {
    padding-bottom: 50px;
    margin-bottom: 45px;
    border-bottom: 1px solid #cccccc;
    width: 100%;
    padding-right: 8%;
}

@media (max-width: 1440px) {
    .home-section1 .gt .cont .font {
        margin-bottom: 25px;
        padding-bottom: 30px;
    }
}

@media (max-width: 1199px) {
    .home-section1 .gt .cont .font {
        padding-right: 0;
    }
}

.home-section1 .gt .cont .font .tit {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
}

@media (max-width: 1440px) {
    .home-section1 .gt .cont .font .tit {
        font-size: 40px;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .home-section1 .gt .cont .font .tit {
        font-size: 30px;
    }
}

.home-section1 .gt .cont .font p {
    font-size: 16px;
    color: #999;
    line-height: 36px;
}

@media (max-width: 1440px) {
    .home-section1 .gt .cont .font p {
        line-height: 30px;
    }
}

@media (max-width: 767px) {
    .home-section1 .gt .cont .font p {
        line-height: 1.6;
    }
}

.home-section1 .gt .cont .mas {
    margin-bottom: 88px;
    display: flex;
}

@media (max-width: 1680px) {
    .home-section1 .gt .cont .mas {
        margin-bottom: 66px;
    }
}

@media (max-width: 1367px) {
    .home-section1 .gt .cont .mas {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .home-section1 .gt .cont .mas {
        margin-bottom: 40px;
        justify-content: space-between;
    }
}

.home-section1 .gt .cont .mas .item {
    margin-right: 178px;
}

.home-section1 .gt .cont .mas .item:last-child {
    margin-right: 0;
}

@media (max-width: 1680px) {
    .home-section1 .gt .cont .mas .item {
        margin-right: 158px;
    }
}

@media (max-width: 1440px) {
    .home-section1 .gt .cont .mas .item {
        margin-right: 138px;
    }
}

@media (max-width: 1366px) {
    .home-section1 .gt .cont .mas .item {
        margin-right: 100px;
    }
}

@media (max-width: 1199px) {
    .home-section1 .gt .cont .mas .item {
        margin-right: 178px;
    }
}

@media (max-width: 991px) {
    .home-section1 .gt .cont .mas .item {
        margin-right: 100px;
    }
}

@media (max-width: 767px) {
    .home-section1 .gt .cont .mas .item {
        margin-right: 18px;
    }
    .home-section1 .gt .cont .mas .item:last-child {
        margin-right: 18px;
    }
}

.home-section1 .gt .cont .mas .item .shu {
    color: #0f4b81;
    margin-bottom: 10px;
    position: relative;
    font-family: "pingfnag", "Microsoft YaHei";
}

@media (max-width: 1440px) {
    .home-section1 .gt .cont .mas .item .shu {
        margin-bottom: 5px;
    }
}

.home-section1 .gt .cont .mas .item .shu span {
    font-size: 60px;
    line-height: 1.1;
    /* font-family: "shu"; */
    font-weight: 600;
}

@media (max-width: 1440px) {
    .home-section1 .gt .cont .mas .item .shu span {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .home-section1 .gt .cont .mas .item .shu span {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .home-section1 .gt .cont .mas .item .shu span {
        font-size: 38px;
    }
}

@media (max-width: 374px) {
    .home-section1 .gt .cont .mas .item .shu span {
        font-size: 30px;
    }
}

.home-section1 .gt .cont .mas .item .shu i {
    font-style: normal;
    font-size: 24px;
    line-height: 1.1;
    position: absolute;
    right: -30px;
    top: 5px;
}

@media (max-width: 1440px) {
    .home-section1 .gt .cont .mas .item .shu i {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .home-section1 .gt .cont .mas .item .shu i {
        font-size: 18px;
        right: -21px;
        top: -2px;
    }
}

@media (max-width: 374px) {
    .home-section1 .gt .cont .mas .item .shu i {
        font-size: 16px;
    }
}

.home-section1 .gt .cont .mas .item strong {
    color: #999;
}

@media (max-width: 575px) {
    .home-section1 .gt .cont .mas .item strong {
        font-size: 14px;
    }
}

@media (max-width: 374px) {
    .home-section1 .gt .cont .mas .item strong {
        font-size: 13px;
    }
}

.home-section1 .gt .cont .logo-container {
    width: 100%;
    margin-bottom: 60px;
}

.home-section1 .gt .cont .logo-container .swiper-wrapper {
    -webkit-transition-timing-function: linear;
    /*之前是ease-out*/
    -moz-transition-timing-function: linear;
    -ms-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
}

@media (max-width: 1440px) {
    .home-section1 .gt .cont .logo-container {
        margin-bottom: 40px;
    }
}

.home-section1 .gt .cont .logo-container .img {
    width: 100%;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
}

.home-section1 .gt .cont .logo-container .swiper-slide-active .img {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
    filter: gray;
}

.home-section1 .gt .cont .logo-container .img img {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    width: 100%;
}

@media (max-width: 767px) {
    .home-section1 .gt .cont .logo-container .img {
        background-color: #f5f5f5;
    }
}

@media (max-width: 375px) {
    .home-section1 .gt .cont .logo-container .img img {
        width: 98%;
    }
}

.home-section1 .gt .cont .logo-container .img:hover {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
    filter: gray;
}

.home-section1 .gt .cont .logo-container .img:hover img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.home-section2 .cont {
    margin-bottom: 100px;
    overflow: hidden;
    position: relative;
}

.home-section2 {
    padding-bottom: 130px;
    padding-top: 130px;
}

@media (max-width: 1440px) {
    .home-section2 .cont {
        margin-bottom: 80px;
    }
}

@media (max-width: 1199px) {
    .home-section2 .cont {
        margin-bottom: 60px;
    }
    .home-section2 {
        padding-bottom: 80px;
        padding-top: 80px;
    }
}

@media (max-width: 767px) {
    .home-section2 .cont {
        margin-bottom: 40px;
    }
    .home-section2 {
        padding: 0 15px;
        padding-bottom: 40px;
        padding-top: 40px;
    }
}

.home-section2 .cont:last-child {
    margin-bottom: 0;
}

.home-section2 .cont .img {
    float: right;
    position: relative;
    z-index: 2;
    width: 62.5%;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .home-section2 .cont .img {
        width: 100%;
        float: none;
    }
}

.home-section2 .cont .img img {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media (min-width: 1921px) {
    .home-section2 .cont .img img {
        width: 100%;
    }
}

@media (max-width: 1440px) {
    .home-section2 .cont .img img {
        width: 100%;
    }
}

@media (max-width: 1199px) {
    .home-section2 .cont .img img {
        width: 100%;
    }
}

.home-section2 .cont .img:hover img {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
}

.home-section2 .cont .jut {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 660px;
}

@media (min-width: 1921px) {
    .home-section2 .cont .jut {
        height: 87%;
    }
}

@media (max-width: 1440px) {
    .home-section2 .cont .jut {
        height: 87%;
    }
}

@media (max-width: 1199px) {
    .home-section2 .cont .jut {
        position: relative;
        height: auto;
        background-color: #f5f5f5;
    }
}

.home-section2 .cont .jut .basecont {
    background-color: #f5f5f5;
    height: 100%;
    padding-left: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 1199px) {
    .home-section2 .cont .jut .basecont {
        padding: 0 15px;
    }
}

.home-section2 .cont .jut .basecont .font {
    width: 30%;
}

@media (max-width: 1199px) {
    .home-section2 .cont .jut .basecont .font {
        padding: 40px 0;
        width: 80%;
    }
}

@media (max-width: 767px) {
    .home-section2 .cont .jut .basecont .font {
        width: 100%;
    }
}

.home-section2 .cont .jut .basecont .font>span {
    font-size: 18px;
    display: block;
    margin-bottom: 110px;
}

@media (max-width: 1366px) {
    .home-section2 .cont .jut .basecont .font>span {
        margin-bottom: 60px;
    }
}

@media (max-width: 1199px) {
    .home-section2 .cont .jut .basecont .font>span {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .home-section2 .cont .jut .basecont .font>span {
        display: none;
    }
}

.home-section2 .cont .jut .basecont .font .tit {
    font-size: 36px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .home-section2 .cont .jut .basecont .font .tit {
        font-size: 30px;
    }
}

.home-section2 .cont .jut .basecont .font p {
    color: #999;
}

@media (max-width: 575px) {
    .home-section2 .cont .jut .basecont .font p {
        font-size: 14px;
    }
}

.home-section2 .cont .jut .basecont .font .basebut {
    margin-top: 120px;
}

@media (max-width: 1366px) {
    .home-section2 .cont .jut .basecont .font .basebut {
        margin-top: 70px;
    }
}

@media (max-width: 1199px) {
    .home-section2 .cont .jut .basecont .font .basebut {
        margin-top: 60px;
    }
}

@media (max-width: 767px) {
    .home-section2 .cont .jut .basecont .font .basebut {
        margin-top: 40px;
    }
}

.home-section2 .cont:nth-child(2n) .img {
    float: left;
}

@media (max-width: 1199px) {
    .home-section2 .cont:nth-child(2n) .img {
        width: 100%;
        float: none;
    }
}

.home-section2 .cont:nth-child(2n) .jut .basecont {
    align-items: flex-end;
    padding-right: 58px;
}

@media (max-width: 1199px) {
    .home-section2 .cont:nth-child(2n) .jut .basecont {
        padding: 0 15px;
        align-items: flex-start;
    }
}

.home-section2 .cont:nth-child(2n) .jut .basecont .font .tit {
    color: #333;
}

.home-section2 .cont:hover .jut .basecont .font .tit {
    color: #0f4b81;
}

.home-section2 .cont:hover .jut .basecont .font .basebut:after {
    width: 100%;
}

.home-section2 .cont:hover .jut .basecont .font .basebut {
    color: #fff;
}

.home-section2 .cont:hover .jut .basecont .font .basebut i img:nth-child(1) {
    display: none;
}

.home-section2 .cont:hover .jut .basecont .font .basebut i img:nth-child(2) {
    display: block;
}

.home-section2 .cont:hover .img img {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
}

.home-section3 {
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
    /* background-color: rgba(15,75,129,.2); */
}

@media (max-width: 1440px) {
    .home-section3 {
        height: 600px;
    }
}

@media (max-width: 575px) {
    .home-section3 {
        height: 600px;
    }
}

.home-section3 .img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

@media (min-width: 1921px) {
    .home-section3 .img {
        background-size: cover;
    }
}

@media (max-width: 767px) {
    .home-section3 .img {
        background-position: 62% 0;
        background-size: auto 100%;
        background-attachment: initial;
    }
}

.home-section3 .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-section3 .img2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.home-section3 .basecont {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    height: 100%;
}

.home-section3 .basecont .font {
    color: #fff;
    width: 100%;
}

.home-section3 .basecont .font .tit {
    font-size: 30px;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 0 0 3px rgba(0, 0, 0, .4);
}

@media (max-width: 1440px) {
    .home-section3 .basecont .font .tit {
        font-size: 30px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    .home-section3 .img2 {
        display: none;
    }
}

@media (max-width: 575px) {
    .home-section3 .basecont .font .tit {
        font-size: 30px;
        line-height: 47px;
    }
}

.home-section3 .basecont .font p {
    font-size: 18px;
}

.home-section3 .basecont .font p img {
    width: 100%;
    max-width: 880px;
}

@media (max-width: 992px) {
    .home-section3 .basecont .font p img {
        max-width: 100%;
    }
}

.home-section3 .basecont .font a {
    display: block;
    margin-top: 70px;
    width: 160px;
    height: 60px;
    background-color: #fff;
    color: #0f4b81;
    font-size: 18px;
    text-align: center;
    line-height: 60px;
}

@media (max-width: 767px) {
    .home-section3 .basecont .font a {
        width: 120px;
        height: 50px;
        font-size: 14px;
        line-height: 50px;
    }
}

.home-section4 {
    padding: 100px 0 120px 0;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .home-section4 {
        padding: 80px 0 100px 0;
    }
}

@media (max-width: 767px) {
    .home-section4 {
        padding: 60px 0 80px;
    }
}

.home-section4 .cont {
    margin: 0 -27px;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .home-section4 .cont {
        margin: 0 -10px;
    }
}

@media (max-width: 767px) {
    .home-section4 .cont {
        padding: 0;
    }
}

.home-section4 .cont .nav-tit {
    margin-bottom: 58px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.home-section4 .cont .nav-tit span {
    font-size: 36px;
    color: #333333;
    font-weight: 600;
}

.home-section4 .cont .nav-tit span:after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: #0f4b81;
    margin-top: 25px;
}

.home-section4 .cont .nav-tit a {
    display: block;
    margin-top: 20px;
    font-size: 18px;
    margin-right: 45px;
}

.home-section4 .cont .lt,
.home-section4 .cont .gt {
    padding: 0 27px;
}

@media (max-width: 1199px) {
    .home-section4 .cont .lt,
    .home-section4 .cont .gt {
        padding: 0 10px;
    }
    .home-section4 .cont .nav-tit {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .home-section4 .cont .lt,
    .home-section4 .cont .gt {
        padding: 0;
    }
    .home-section4 .cont .nav-tit {
        margin-bottom: 24px;
    }
}

.home-section4 .cont .lt {
    width: 66%;
    float: left;
}

.home-section4 .cont .lt .fontimg {
    width: 100%;
    background-color: #f5f5f5;
    display: flex;
    height: 530px;
}

.home-section4 .cont .lt .fontimg .tu {
    width: 46.3%;
    overflow: hidden;
}

.home-section4 .cont .lt .fontimg .tu .img {
    position: relative;
    padding-bottom: 330px;
    overflow: hidden;
}

.home-section4 .cont .lt .fontimg .tu .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media (max-width: 1199px) {
    .home-section4 .cont .lt .fontimg {
        height: auto;
    }
    .home-section4 .cont .lt .fontimg .tu .img {
        padding-bottom: 68.5%;
    }
}

.home-section4 .cont .lt .fontimg .tu .font {
    width: 100%;
    padding: 38px 30px;
    background-color: #0f4b81;
    height: 200px;
    color: #fff;
}

@media (max-width: 1440px) {
    .home-section4 .cont .lt .fontimg .tu .font {
        padding: 24px 30px;
    }
}

.home-section4 .cont .lt .fontimg .tu .font .tit {
    font-weight: bold;
    font-size: 24px;
    line-height: 37px;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .home-section4 .cont .lt .fontimg .tu .font {
        height: auto;
    }
    .home-section4 .cont .lt .fontimg .tu .font .tit {
        font-size: 20px;
        line-height: 1.5;
    }
}

.home-section4 .cont .lt .fontimg .tu .font .data {
    display: flex;
    justify-content: space-between;
}

.home-section4 .cont .lt .fontimg .tu .font .data span {
    font-family: "宋体";
}

.home-section4 .cont .lt .fontimg .tu:hover img {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
}

.home-section4 .cont .lt .fontimg .newslist {
    width: 53.7%;
    padding: 0 38px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.home-section4 .cont .lt .fontimg .newslist .item {
    display: block;
    width: 100%;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 30px;
    margin-bottom: 34px;
}

.home-section4 .cont .lt .fontimg .newslist .item strong {
    font-weight: bold;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.home-section4 .cont .lt .fontimg .newslist .item span {
    color: #999;
    font-size: 14px;
    line-height: 1;
}

.home-section4 .cont .lt .fontimg .newslist .item:hover strong {
    color: #0f4b81;
}

.home-section4 .cont .lt .fontimg .newslist .item:last-child {
    margin-bottom: 0;
}

.home-section4 .cont .gt {
    width: 34%;
    float: left;
}

.home-section4 .cont .gt .newslist {
    width: 100%;
    height: 530px;
}

.home-section4 .cont .gt .newslist .item {
    display: block;
    margin-bottom: 20px;
    background-color: #f5f5f5;
}

.home-section4 .cont .gt .newslist .item:last-child {
    margin-bottom: 0;
}

.home-section4 .cont .gt .newslist .item .img {
    position: relative;
    height: 178px;
    overflow: hidden;
}

@media (min-width: 1921px) {
    .home-section4 .cont .gt .newslist .item .img {
        /* padding-bottom: 38.8%; */
    }
}


/* @media (max-width: 1600px) {
  .home-section4 .cont .gt .newslist .item .img {
    padding-bottom: 52%;
  }
} */


/* @media (max-width: 1500px) {
  .home-section4 .cont .gt .newslist .item .img {
    padding-bottom: 43%;
  }
}
@media (max-width: 1365px) {
  .home-section4 .cont .gt .newslist .item .img {
    padding-bottom: 40%;
  }
} */

@media (max-width: 1199px) {
    .home-section4 .cont .gt .newslist {
        height: auto;
    }
    .home-section4 .cont .gt .newslist .item .img {
        padding-bottom: 35.015%;
    }
}

.home-section4 .cont .gt .newslist .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.home-section4 .cont .gt .newslist .item strong {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 30px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    width: 100%;
    font-size: 24px;
    line-height: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media (max-width: 1199px) {
    .home-section4 .cont .gt .newslist .item strong {
        padding: 15px;
    }
}

@media (max-width: 767px) {
    .home-section4 .cont .gt .newslist .item strong {
        font-size: 20px;
        padding: 20px 15px;
    }
    .home-section4 .cont .gt .newslist {
        height: auto;
    }
}

.home-section4 .cont .gt .newslist .item strong i {
    font-family: "宋体";
    font-style: normal;
}

.home-section4 .cont .gt .newslist .item:hover {
    background-color: #0f4b81;
}

.home-section4 .cont .gt .newslist .item:hover strong {
    color: #fff;
}

.home-section4 .cont .gt .newslist .item:hover .img img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

@media (max-width: 1199px) {
    .home-section4 .cont .lt,
    .home-section4 .cont .gt {
        width: 100%;
    }
    .home-section4 .cont .lt {
        margin-bottom: 45px;
    }
    .home-section4 .cont .lt .fontimg {
        flex-wrap: wrap;
    }
    .home-section4 .cont .lt .fontimg .tu,
    .home-section4 .cont .lt .fontimg .newslist {
        width: 100%;
    }
    .home-section4 .cont .lt .fontimg .tu {
        margin-bottom: 45px;
    }
    .home-section4 .cont .lt .fontimg .tu .font {
        padding: 35px 15px 44px;
    }
    .home-section4 .cont .lt .fontimg .newslist {
        padding: 0 15px 45px;
    }
    .home-section4 .cont .lt .fontimg .newslist .item {
        margin-bottom: 35px;
    }
    .home-section4 .cont .nav-tit {
        padding: 0 15px;
    }
    .home-section4 .cont .nav-tit span {
        font-size: 30px;
    }
    .home-section4 .cont .nav-tit span::after {
        margin-top: 20px;
    }
    .home-section4 .cont .nav-tit a {
        font-size: 16px;
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .home-section4 .cont .lt .fontimg .newslist .item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}


/* End */


/* 关于我们 */

.about-section1 {
    padding-top: 60px;
    padding-bottom: 120px;
}

@media (max-width: 1199px) {
    .about-section1 {
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .about-section1 {
        padding-top: 40px;
        padding-bottom: 80px;
    }
}

.about-section1 .basecont {
    display: flex;
    justify-content: center;
}

.about-section1 .basecont a {
    display: inline-block;
    margin-right: 85px;
    font-size: 18px;
    color: #666;
}

.about-section1 .basecont a:last-child {
    margin-right: 0;
}

@media (max-width: 991px) {
    .about-section1 .basecont a {
        margin-right: 65px;
    }
}

@media (max-width: 767px) {
    .about-section1 .basecont a {
        margin-right: 40px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .about-section1 .basecont a {
        margin-right: 30px;
    }
}

@media (max-width: 376px) {
    .about-section1 .basecont a {
        margin-right: 15px;
        font-size: 14px;
    }
}

.about-section1 .basecont a:hover {
    color: #0f4b81;
}

.about-section1 .basecont .on {
    color: #0f4b81;
}

.about-section2 {
    padding-bottom: 23px;
}

.about-section2 .tit {
    text-align: center;
    margin-bottom: 100px;
    line-height: 50px;
}

@media (max-width: 1440px) {
    .about-section2 .tit {
        margin-bottom: 80px;
    }
}

@media (max-width: 1199px) {
    .about-section2 .tit {
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .about-section2 .tit {
        margin-bottom: 50px;
        line-height: 32px;
    }
}

.about-section2 .tit strong {
    font-weight: bold;
    font-size: 48px;
}

@media (max-width: 1199px) {
    .about-section2 .tit strong {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .about-section2 .tit strong {
        font-size: 30px;
    }
}

.about-section2 .jut {
    width: 100%;
}

.about-section2 .jut .cont {
    width: 100%;
    margin-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media (max-width: 1440px) {
    .about-section2 .jut .cont {
        margin-bottom: 80px;
    }
}

@media (max-width: 1199px) {
    .about-section2 .jut .cont {
        margin-bottom: 60px;
    }
}

@media (max-width: 991px) {
    .about-section2 .jut .cont {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .about-section2 .jut .cont {
        margin-bottom: 20px;
    }
}

.about-section2 .jut .cont .lt {
    width: 54.2%;
    overflow: hidden;
}

.about-section2 .jut .cont .lt img {
    width: 100%;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media (max-width: 1199px) {
    .about-section2 .jut .cont .lt {
        width: 100%;
        margin-bottom: 60px;
    }
    .about-section2 .jut .cont .lt img {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .about-section2 .jut .cont .lt {
        margin-bottom: 30px;
    }
}

.about-section2 .jut .cont .lt:hover img {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
}

.about-section2 .jut .cont .gt {
    width: 38%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

@media (max-width: 1440px) {
    .about-section2 .jut .cont .gt {
        width: 40%;
    }
}

@media (max-width: 1199px) {
    .about-section2 .jut .cont .gt {
        width: 100%;
    }
}

.about-section2 .jut .cont .gt .text {
    font-size: 36px;
    font-weight: bold;
    color: #0f4b81;
    line-height: 46px;
}

@media (max-width: 1199px) {
    .about-section2 .jut .cont .gt .text {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .about-section2 .jut .cont .gt .text {
        font-size: 30px;
        line-height: 36px;
    }
}

@media (max-width: 575px) {
    .about-section2 .jut .cont .gt .text {
        font-size: 24px;
        line-height: 30px;
    }
}

.about-section2 .jut .cont .gt .font {
    margin-top: 34px;
}

@media (max-width: 1199px) {
    .about-section2 .jut .cont .gt .font {
        margin-top: 24px;
    }
}

@media (max-width: 767px) {
    .about-section2 .jut .cont .gt .font {
        margin-top: 15px;
    }
}

.about-section2 .jut .cont .gt .font p {
    color: #666;
    line-height: 28px;
}

.about-section2 .jut .cont:nth-child(2n) {
    flex-direction: row-reverse;
}

.about-section3 {
    width: 100%;
    position: relative;
    height: 600px;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .about-section3 {
        height: 460px;
    }
}

@media (max-width: 575px) {
    .about-section3 {
        height: 280px;
    }
}

.about-section3 .img {
    width: 100%;
    height: 100%;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .about-section3 .img {
        background-size: auto 100%;
        background-position: 62% 0;
        background-attachment: initial;
    }
}

.about-section3 .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1199px) {
    .about-section3 .img {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .about-section3 .img {
        height: 100%;
    }
    .about-section3 .img img {
        height: 100%;
        object-fit: cover;
    }
}

.about-section3 .basecont {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
}

.about-section3 .basecont .font {
    width: 100%;
    text-align: center;
}

.about-section3 .basecont .font strong {
    font-size: 48px;
    font-weight: bold;
    display: block;
    line-height: 56px;
}

@media (max-width: 1199px) {
    .about-section3 .basecont .font strong {
        font-size: 40px;
        line-height: 46px;
    }
}

@media (max-width: 767px) {
    .about-section3 .basecont .font strong {
        font-size: 30px;
        line-height: 36px;
    }
}

@media (max-width: 575px) {
    .about-section3 .basecont .font strong {
        font-size: 28px;
    }
}

@media (max-width: 376px) {
    .about-section3 .basecont .font strong {
        font-size: 22px;
        line-height: 30px;
    }
}

.about-section3 .basecont .font span {
    margin-top: 15px;
    display: block;
    font-size: 24px;
}

@media (max-width: 767px) {
    .about-section3 .basecont .font span {
        line-height: 26px;
        font-size: 20px;
    }
}

.about-section3:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #0f4b81;
    opacity: 0;
}

.about-section4 .cont {
    padding: 100px 0;
}

@media (max-width: 1199px) {
    .about-section4 .cont {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .about-section4 .cont {
        padding: 60px 0;
    }
}

.about-section4 .cont .tit {
    text-align: center;
    margin-bottom: 53px;
}

@media (max-width: 1199px) {
    .about-section4 .cont .tit {
        margin-bottom: 45px;
    }
}

@media (max-width: 767px) {
    .about-section4 .cont .tit {
        margin-bottom: 30px;
    }
}

.about-section4 .cont .tit strong {
    font-size: 36px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

@media (max-width: 1199px) {
    .about-section4 .cont .tit strong {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .about-section4 .cont .tit strong {
        font-size: 28px;
    }
}

.about-section4 .cont .tit span {
    color: #666;
    display: block;
}

@media (max-width: 575px) {
    .about-section4 .cont .tit span {
        font-size: 14px;
    }
}

.about-section4 .cont .about-section4-cont {
    padding-bottom: 70px;
}

.about-section4 .cont .about-section4-cont .swiper-slide {
    display: block;
}

.about-section4 .cont .about-section4-cont .swiper-slide .font {
    position: absolute;
    bottom: -20px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 80%;
    background-color: #0f4b81;
    color: #fff;
    padding: 56px 0;
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    text-align: center;
}

@media (max-width: 1199px) {
    .about-section4 .cont .about-section4-cont .swiper-slide .font {
        padding: 40px 0;
    }
}

@media (max-width: 1199px) {
    .about-section4 .cont .about-section4-cont .swiper-slide .font {
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .about-section4 .cont .about-section4-cont .swiper-slide .font {
        padding: 20px 0;
    }
}

@media (max-width: 575px) {
    .about-section4 .cont .about-section4-cont .swiper-slide .font {
        padding: 15px 10px;
        width: 100%;
    }
}

.about-section4 .cont .about-section4-cont .swiper-slide .font strong {
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

@media (max-width: 1199px) {
    .about-section4 .cont .about-section4-cont .swiper-slide .font strong {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .about-section4 .cont .about-section4-cont .swiper-slide .font strong {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .about-section4 .cont .about-section4-cont .swiper-slide .font strong {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .about-section4 .cont .about-section4-cont .swiper-slide .font span {
        font-size: 14px;
    }
}

.about-section4 .cont .about-section4-cont .swiper-slide .img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-section4 .cont .about-section4-cont .swiper-slide .img img {
    width: 100%;
    object-fit: cover;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.about-section4 .cont .about-section4-cont .swiper-slide:hover .font {
    opacity: 1;
}

.about-section4 .cont .about-section4-cont .swiper-slide:hover .img img {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
}

.about-section5 {
    background-color: #f5f5f5;
    margin-bottom: 0;
    padding: 120px 0 105px;
}

@media (max-width: 1199px) {
    .about-section5 {
        padding: 90px 0;
    }
}

@media (max-width: 991px) {
    .about-section5 {
        padding: 50px 0;
    }
}

@media (max-width: 767px) {
    .about-section5 {
        padding: 30px 0;
    }
}

@media (max-width: 575px) {
    .about-section5 {
        padding: 20px 0;
    }
}

.about-section5 .basecont {
    display: flex;
    flex-wrap: wrap;
}

.about-section5 .basecont .lt,
.about-section5 .basecont .gt {
    width: 50%;
}

@media (max-width: 1199px) {
    .about-section5 .basecont .lt,
    .about-section5 .basecont .gt {
        width: 100%;
    }
}

@media (max-width: 1199px) {
    .about-section5 .basecont .lt {
        margin-bottom: 50px;
    }
}

.about-section5 .basecont .lt>strong {
    font-weight: bold;
    font-size: 36px;
    margin-bottom: 18px;
    display: block;
}

.about-section5 .basecont .lt>span {
    font-size: 16px;
    color: #666;
    display: block;
    line-height: 30px;
    width: 54%;
}

@media (max-width: 1440px) {
    .about-section5 .basecont .lt>span {
        width: 69%;
    }
}

@media (max-width: 767px) {
    .about-section5 .basecont .lt>span {
        width: 100%;
    }
}

.about-section5 .basecont .lt .mas {
    margin-top: 50px;
    display: flex;
}

@media (max-width: 1199px) {
    .about-section5 .basecont .lt .mas {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .about-section5 .basecont .lt .mas {
        margin-top: 45px;
    }
}

.about-section5 .basecont .lt .mas .item {
    margin-right: 100px;
}

.about-section5 .basecont .lt .mas .item:last-child {
    margin-right: 0;
}

@media (max-width: 1199px) {
    .about-section5 .basecont .lt .mas .item {
        margin-right: 60px;
    }
}

@media (max-width: 575px) {
    .about-section5 .basecont .lt .mas .item {
        margin-right: 40px;
    }
}

.about-section5 .basecont .lt .mas .item .shu {
    color: #333;
    margin-bottom: 10px;
    position: relative;
}

@media (max-width: 1440px) {
    .about-section5 .basecont .lt .mas .item .shu {
        margin-bottom: 5px;
    }
}

.about-section5 .basecont .lt .mas .item .shu span {
    font-size: 60px;
    line-height: 1.1;
    /* font-family: "shu"; */
    font-weight: 600;
}

@media (max-width: 1440px) {
    .about-section5 .basecont .lt .mas .item .shu span {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .about-section5 .basecont .lt .mas .item .shu span {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .about-section5 .basecont .lt .mas .item .shu span {
        font-size: 38px;
    }
}

@media (max-width: 374px) {
    .about-section5 .basecont .lt .mas .item .shu span {
        font-size: 30px;
    }
}

.about-section5 .basecont .lt .mas .item .shu i {
    font-style: normal;
    font-size: 24px;
    line-height: 1.1;
    position: absolute;
    right: -30px;
    top: 5px;
}

@media (max-width: 1440px) {
    .about-section5 .basecont .lt .mas .item .shu i {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .about-section5 .basecont .lt .mas .item .shu i {
        font-size: 18px;
        right: -21px;
        top: -2px;
    }
}

@media (max-width: 374px) {
    .about-section5 .basecont .lt .mas .item .shu i {
        font-size: 16px;
    }
}

.about-section5 .basecont .lt .mas .item strong {
    color: #999;
}

@media (max-width: 575px) {
    .about-section5 .basecont .lt .mas .item strong {
        font-size: 14px;
    }
}

@media (max-width: 374px) {
    .about-section5 .basecont .lt .mas .item strong {
        font-size: 13px;
    }
}

.about-section5 .basecont .gt {
    overflow: hidden;
    margin: 0 -10px;
}

@media (max-width: 575px) {
    .about-section5 .basecont .gt {
        margin: 0 -5px;
    }
}

.about-section5 .basecont .gt .item {
    display: block;
    width: 25%;
    padding: 0 10px;
    float: left;
    margin-bottom: 20px;
    opacity: 0.5;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
}

@media (max-width: 767px) {
    .about-section5 .basecont .gt .item {
        width: 33.33%;
    }
}

@media (max-width: 575px) {
    .about-section5 .basecont .gt .item {
        padding: 0 5px;
    }
}

.about-section5 .basecont .gt .item img {
    width: 100%;
}

.about-section5 .basecont .gt .item:hover {
    opacity: 1;
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
}

.about-section6 {
    padding-bottom: 140px;
}

@media (max-width: 1199px) {
    .about-section6 {
        padding-bottom: 110px;
    }
}

@media (max-width: 991px) {
    .about-section6 {
        padding-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .about-section6 {
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .about-section6 {
        padding-bottom: 40px;
    }
}

.about-section6 .cont {
    margin: 0 -10px;
    display: flex;
    flex-wrap: wrap;
}

.about-section6 .cont .item {
    padding: 0 10px;
    width: 50%;
    height: 200px;
}

@media (max-width: 991px) {
    .about-section6 .cont .item {
        height: 160px;
    }
}


/* @media (max-width: 767px) {
  .about-section6 .cont .item {
    height: 100px;
  }
} */

@media (max-width: 575px) {
    .about-section6 .cont .item {
        width: 100%;
        margin-bottom: 20px;
    }
}

.about-section6 .cont .item .jut {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #f5f5f5;
    padding: 0 80px;
    font-size: 30px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media (max-width: 1199px) {
    .about-section6 .cont .item .jut {
        padding: 0 60px;
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .about-section6 .cont .item .jut {
        padding: 0 45px;
    }
}

@media (max-width: 767px) {
    .about-section6 .cont .item .jut {
        padding: 0 30px;
        font-size: 26px;
    }
}

.about-section6 .cont .item .jut .font {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.about-section6 .cont .item .jut .font .li1 {
    width: 100%;
    font-size: 18px;
    color: #666;
    margin-top: 20px;
    opacity: 0;
}

.about-section6 .cont .item .jut .font span {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.about-section6 .cont .item .jut .font i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 23px;
    display: none;
}

.about-section6 .cont .item .jut .font i img {
    width: 100%;
}

.about-section6 .cont .item .jut .font i img:nth-child(2) {
    display: none;
}

.about-section6 .cont .item .jut .text {
    position: absolute;
    z-index: 1;
    bottom: -46%;
    right: -2%;
    font-size: 200px;
    opacity: 0.05;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-family: "Microsoft YaHei";
}

@media (max-width: 991px) {
    .about-section6 .cont .item .jut .text {
        font-size: 93px;
        bottom: -43%;
    }
}

.about-section6 .cont .item:hover .jut {
    background-color: #0f4b81;
}

.about-section6 .cont .item:hover .jut .font span {
    color: #fff;
}

.about-section6 .cont .item:hover .jut i img:nth-child(1) {
    display: none;
}

.about-section6 .cont .item:hover .jut i img:nth-child(2) {
    display: block;
}

.about-section6 .cont .item:hover .jut .text {
    color: #fff;
}

.about-section6 .cont .item:hover .jut .font .li1 {
    color: #fff;
    opacity: 1;
}


/* End */


/* 联系我们 */

body {
    overflow-x: hidden;
}

.contact-section1 .cont {
    margin: 0 -100px;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
    align-items: flex-start;
}

@media (max-width: 1440px) {
    .contact-section1 .cont {
        padding: 80px 0;
        margin: 0 -30px;
    }
}

@media (max-width: 991px) {
    .contact-section1 .cont {
        margin: 0;
        padding: 60px 0;
    }
    .contact-section1 {
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    .contact-section1 .cont {
        padding: 40px 0;
    }
    .about-section6 .cont .item .jut .font .li1 {
        opacity: 1;
    }
}

.contact-section1 .cont .lt,
.contact-section1 .cont .gt {
    width: 50%;
    padding: 0 100px;
}

@media (max-width: 1440px) {
    .contact-section1 .cont .lt,
    .contact-section1 .cont .gt {
        padding: 0 30px;
    }
}

@media (max-width: 991px) {
    .contact-section1 .cont .lt,
    .contact-section1 .cont .gt {
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 991px) {
    .contact-section1 .cont .lt {
        /* margin-bottom: 60px; */
        order: 1;
    }
}

@media (max-width: 767px) {
    .contact-section1 .cont .lt {
        /* margin-bottom: 70px; */
    }
}

@media (max-width: 575px) {
    .contact-section1 .cont .lt {
        /* margin-bottom: 30px; */
    }
}

.contact-section1 .cont .lt .jut .list {
    width: 100%;
    background-color: #f5f5f5;
    margin-bottom: 20px;
    padding: 60px;
}

@media (max-width: 767px) {
    .contact-section1 .cont .lt .jut .list {
        padding: 30px;
    }
}

.contact-section1 .cont .lt .jut .list .tit {
    font-size: 30px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .contact-section1 .cont .lt .jut .list .tit {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .contact-section1 .cont .lt .jut .list .tit {
        font-size: 26px;
        margin-bottom: 15px;
    }
}

.contact-section1 .cont .lt .jut .list .font {
    width: 100%;
}

.contact-section1 .cont .lt .jut .list .font p {
    font-size: 16px;
    color: #666;
    line-height: 28px;
}

@media (max-width: 575px) {
    .contact-section1 .cont .lt .jut .list .font p {
        font-size: 14px;
        line-height: 1.3;
    }
}

.contact-section1 .cont .gt {
    position: sticky;
    top: 90px;
}

@media (max-width: 1199px) {
    .contact-section1 .cont .gt {
        top: 60px;
    }
}

@media (max-width: 991px) {
    .contact-section1 .cont .gt {
        margin-bottom: 100px;
        order: 0;
    }
    .contact-section1 .cont .gt {
        position: relative;
        z-index: 0;
    }
}

@media (max-width: 767px) {
    .contact-section1 .cont .gt {
        margin-bottom: 50px;
    }
}

.contact-section1 .cont .gt .tit {
    width: 100%;
    font-size: 24px;
    margin-bottom: 33px;
}

@media (max-width: 767px) {
    .contact-section1 .cont .gt .tit {
        margin-bottom: 15px;
    }
}

.contact-section1 .cont .gt .form input,
.contact-section1 .cont .gt .form textarea {
    padding: 19px 0;
    margin-bottom: 16px;
    font-size: 16px;
    color: #666;
    display: block;
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 1px solid #dddddd;
    resize: none;
}

@media (max-width: 767px) {
    .contact-section1 .cont .gt .form input,
    .contact-section1 .cont .gt .form textarea {
        margin-bottom: 15px 0;
    }
}

.contact-section1 .cont .gt .form input::-webkit-input-placeholder,
.contact-section1 .cont .gt .form textarea::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #999;
}

.contact-section1 .cont .gt .form input:-moz-placeholder,
.contact-section1 .cont .gt .form textarea::-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #999;
}

.contact-section1 .cont .gt .form input::-moz-placeholder,
.contact-section1 .cont .gt .form textarea::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #999;
}

.contact-section1 .cont .gt .form input:-ms-input-placeholder,
.contact-section1 .cont .gt .form textarea::-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #999;
}

.contact-section1 .cont .gt .form select {
    border: none;
    outline: none;
    border-bottom: 1px solid #dddddd;
    display: block;
    width: 100%;
    padding: 19px 0;
    color: #333;
    font-size: 16px;
    margin-bottom: 20px;
    height: 62px;
    -webkit-appearance: none;
    appearance: none;
    background: url(../images/inner/san.png) no-repeat;
    background-size: 12px 9px;
    background-position: 98% 45%;
}

@media (max-width: 767px) {
    .contact-section1 .cont .gt .form select {
        margin-bottom: 15px 0;
    }
}

.contact-section1 .cont .gt .form textarea {
    height: 134px;
}

.contact-section1 .cont .gt .form button {
    background-color: #0f4b81;
    width: 160px;
    height: 60px;
    border: none;
    outline: none;
    margin-top: 40px;
    color: #fff;
    font-size: 18px;
}

@media (max-width: 767px) {
    .contact-section1 .cont .gt .form button {
        width: 120px;
        height: 50px;
        font-size: 14px;
        margin-top: 20px;
    }
}


/* End */


/* 加入我们 */

.join-section1 {
    overflow: hidden;
}

.join-section1 .cont {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -90px;
    padding: 100px 0;
}

@media (max-width: 1440px) {
    .join-section1 .cont {
        margin: 0 -30px;
        padding: 80px 0;
    }
}

@media (max-width: 991px) {
    .join-section1 .cont {
        margin: 0;
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .join-section1 .cont {
        padding: 40px 0;
    }
}

.join-section1 .cont .lt,
.join-section1 .cont .gt {
    padding: 0 90px;
}

@media (max-width: 1440px) {
    .join-section1 .cont .lt,
    .join-section1 .cont .gt {
        padding: 0 30px;
    }
}

@media (max-width: 991px) {
    .join-section1 .cont .lt,
    .join-section1 .cont .gt {
        padding: 0;
    }
}

.join-section1 .cont .lt {
    width: 35%;
}

@media (max-width: 991px) {
    .join-section1 .cont .lt {
        width: 100%;
        order: 1;
    }
}

.join-section1 .cont .lt .item {
    width: 100%;
    padding: 55px 37px 170px;
    background-color: #e7edf2;
}

@media (max-width: 767px) {
    .join-section1 .cont .lt .item {
        padding: 30px 15px 160px;
    }
}

@media (max-width: 575px) {
    .join-section1 .cont .lt .item {
        padding: 25px 15px 100px;
    }
}

.join-section1 .cont .lt .item .tit {
    font-size: 30px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .join-section1 .cont .lt .item .tit {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .join-section1 .cont .lt .item .tit {
        font-size: 26px;
        margin-bottom: 15px;
    }
}

.join-section1 .cont .lt .item .font {
    width: 100%;
}

.join-section1 .cont .lt .item .font p {
    font-size: 16px;
    color: #666;
    line-height: 28px;
}

@media (max-width: 575px) {
    .join-section1 .cont .lt .item .font p {
        font-size: 14px;
        line-height: 1.3;
    }
}

.join-section1 .cont .gt {
    width: 65%;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .join-section1 .cont .gt {
        width: 100%;
        order: 0;
        margin-top: 0;
    }
}

.join-section1 .cont .gt .item {
    width: 100%;
    padding: 30px 0;
    border-top: 2px solid #999999;
    margin-bottom: 25px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media (max-width: 767px) {
    .join-section1 .cont .gt .item {
        padding: 15px 0;
        margin-bottom: 15px;
    }
}

.join-section1 .cont .gt .item .tit {
    width: 100%;
}

.join-section1 .cont .gt .item .tit .h1 {
    width: 100%;
    margin-bottom: 20px;
    font-size: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

@media (max-width: 991px) {
    .join-section1 .cont .gt .item .tit .h1 {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .join-section1 .cont .gt .item .tit .h1 {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .join-section1 .cont .gt .item .tit .h1 {
        font-size: 20px;
    }
}

.join-section1 .cont .gt .item .tit .h1 i {
    width: 20px;
}

@media (max-width: 575px) {
    .join-section1 .cont .gt .item .tit .h1 i {
        width: 15px;
    }
}

.join-section1 .cont .gt .item .tit .h1 i img {
    width: 100%;
    float: left;
}

.join-section1 .cont .gt .item .tit .h1 i img:nth-child(2) {
    display: none;
}

.join-section1 .cont .gt .item .tit .p span {
    display: inline-block;
    margin-right: 50px;
    color: #999;
    line-height: 20px;
}

@media (max-width: 767px) {
    .join-section1 .cont .gt .item .tit .p span {
        font-size: 14px;
    }
}

.join-section1 .cont .gt .item .font {
    margin-top: 35px;
    display: none;
}

@max-md {
    margin-top: 25px;
}

.join-section1 .cont .gt .item .font p,
.join-section1 .cont .gt .item .font strong {
    display: block;
    font-size: 16px;
    color: #666;
}

@media (max-width: 767px) {
    .join-section1 .cont .gt .item .font p,
    .join-section1 .cont .gt .item .font strong {
        font-size: 14px;
    }
}

.join-section1 .cont .gt .item .font strong {
    color: #333;
}

.join-section1 .cont .gt .on {
    border-top: 2px solid #0f4b81;
}

.join-section1 .cont .gt .on .tit .h1 {
    color: #0f4b81;
}

.join-section1 .cont .gt .on .tit .h1 i img:nth-child(1) {
    display: none;
}

.join-section1 .cont .gt .on .tit .h1 i img:nth-child(2) {
    display: block;
}

.join-section1 .cont .gt .on .font {
    display: block;
}


/* End */


/* 项目运输服务 */

.service-section1 {
    padding-top: 70px;
    padding-bottom: 10px;
}

@media (max-width: 1199px) {
    .service-section1 {
        padding-top: 50px;
    }
}

@media (max-width: 767px) {
    .service-section1 {
        padding-top: 35px;
    }
}

.service-section1 .cont {
    width: 100%;
    margin-bottom: 200px;
}

@media (max-width: 1440px) {
    .service-section1 .cont {
        margin-bottom: 160px;
    }
}

@media (max-width: 1199px) {
    .service-section1 .cont {
        margin-bottom: 100px;
    }
    .service-section1 .cont:nth-child(3) .jut .gt .img {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }
}

@media (max-width: 991px) {
    .service-section1 .cont {
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .service-section1 .cont {
        margin-bottom: 45px;
    }
}

.service-section1 .cont .jut {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-section1 .cont .jut .lt {
    width: 45.8%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 94px;
}

@media (max-width: 1440px) {
    .service-section1 .cont .jut .lt {
        padding-left: 60px;
    }
}

@media (max-width: 1199px) {
    .service-section1 .cont .jut .lt {
        width: 100%;
        order: 1;
        padding-left: 0;
    }
}

.service-section1 .cont .jut .lt .font {
    width: 62%;
}

@media (max-width: 1440px) {
    .service-section1 .cont .jut .lt .font {
        width: 80%;
    }
}

@media (max-width: 767px) {
    .service-section1 .cont .jut .lt .font {
        width: 100%;
    }
}

.service-section1 .cont .jut .lt .font .tit {
    font-size: 36px;
    color: #333;
    margin-bottom: 25px;
    font-weight: bold;
}

@media (max-width: 991px) {
    .service-section1 .cont .jut .lt .font .tit {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .service-section1 .cont .jut .lt .font .tit {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .service-section1 .cont .jut .lt .font .tit {
        font-size: 26px;
    }
}

.service-section1 .cont .jut .lt .font .text {
    font-size: 16px;
    color: #999;
    line-height: 24px;
}

.service-section1 .cont .jut .lt .font .text p {
    color: #999;
}

@media (max-width: 575px) {
    .service-section1 .cont .jut .lt .font .text {
        font-size: 14px;
    }
}

.service-section1 .cont .jut .lt .font .basebut {
    margin-top: 130px;
}

@media (max-width: 1440px) {
    .service-section1 .cont .jut .lt .font .basebut {
        margin-top: 80px;
    }
}

@media (max-width: 1199px) {
    .service-section1 .cont .jut .lt .font .basebut {
        margin-top: 70px;
    }
}

@media (max-width: 767px) {
    .service-section1 .cont .jut .lt .font .basebut {
        margin-top: 60px;
    }
}

@media (max-width: 575px) {
    .service-section1 .cont .jut .lt .font .basebut {
        margin-top: 30px;
    }
}

.service-section1 .cont .jut .gt {
    width: 54.2%;
}

@media (max-width: 1199px) {
    .service-section1 .cont .jut .gt {
        order: 0;
        width: 100%;
        margin-bottom: 30px;
    }
}

.service-section1 .cont .jut .gt .img {
    position: relative;
    overflow: hidden;
}

.service-section1 .cont .jut .gt .img img {
    width: 100%;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.service-section1 .cont .jut .gt .img:hover img {
    -webkit-transform: scale(1.009);
    transform: scale(1.009);
}

.service-section1 .cont:nth-child(2n) {
    background-color: #f5f5f5;
    padding-top: 57px;
    padding-bottom: 130px;
}

@media (max-width: 1440px) {
    .service-section1 .cont:nth-child(2n) {
        padding-bottom: 100px;
    }
}

@media (max-width: 1199px) {
    .service-section1 .cont:nth-child(2n) {
        padding-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .service-section1 .cont:nth-child(2n) {
        padding-bottom: 60px;
        padding-top: 37px;
    }
}

@media (max-width: 575px) {
    .service-section1 .cont:nth-child(2n) {
        padding-bottom: 40px;
        padding-top: 27px;
    }
}

.service-section1 .cont:nth-child(2n) .jut {
    flex-direction: row-reverse;
}

.service-section1 .cont:nth-child(2n) .jut .lt .font {
    width: 67%;
}

@media (max-width: 1440px) {
    .service-section1 .cont:nth-child(2n) .jut .lt .font {
        width: 78%;
    }
}

@media (max-width: 767px) {
    .service-section1 .cont:nth-child(2n) .jut .lt .font {
        width: 100%;
    }
}


/* End */


/* 供应链服务 */

.service2-section1 .cont:nth-child(2) .jut .gt {
    width: 57.1%;
}

@media (max-width: 1199px) {
    .service2-section1 .cont:nth-child(2) .jut .gt {
        width: 100%;
    }
}

.service2-section1 .cont:nth-child(2) .jut .lt {
    width: 42.9%;
    padding-left: 44px;
}

@media (max-width: 1199px) {
    .service2-section1 .cont:nth-child(2) .jut .lt {
        width: 100%;
        padding-left: 0px;
    }
}

@media (max-width: 1440px) {
    .service2-section1 .cont:nth-child(2) .jut .lt .font {
        width: 81%;
    }
}

@media (max-width: 767px) {
    .service2-section1 .cont:nth-child(2) .jut .lt .font {
        width: 100%;
    }
}

.service-section1 .cont .jut:hover .lt .font .tit {
    color: #0f4b81;
}

.service-section1 .cont .jut:hover .lt .font .basebut {
    color: #fff;
}

.service-section1 .cont .jut:hover .lt .font .basebut:after {
    width: 100%;
}

.service-section1 .cont .jut:hover .lt .font .basebut i img:nth-child(1) {
    display: none;
}

.service-section1 .cont .jut:hover .lt .font .basebut i img:nth-child(2) {
    display: block;
}

.service-section1 .cont .jut:hover .gt .img img {
    -webkit-transform: scale(1.009);
    transform: scale(1.009);
}


/* End */


/* 海运详情 */

.serviceinfo-tit {
    text-align: center;
}

.serviceinfo-tit strong {
    font-size: 36px;
    font-weight: bold;
    display: block;
}

@media (max-width: 767px) {
    .serviceinfo-tit strong {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .serviceinfo-tit strong {
        font-size: 28px;
    }
}

.serviceinfo-tit span {
    display: block;
    margin-top: 15px;
    color: #666;
}

@media (max-width: 575px) {
    .serviceinfo-tit span {
        font-size: 14px;
        margin-top: 10px;
    }
}

.serviceinfo-section1 {
    padding-top: 120px;
    padding-bottom: 20px;
}

.serviceinfo-section1>.cont:nth-child(2) .basebut,
.serviceinfo-section1>.cont:nth-child(3) .basebut {
    display: none;
}

@media (max-width: 1440px) {
    .serviceinfo-section1 {
        padding-top: 100px;
    }
}

@media (max-width: 1199px) {
    .serviceinfo-section1 {
        padding-top: 80px;
    }
}

@media (max-width: 991px) {
    .serviceinfo-section1 {
        padding-top: 60px;
    }
}

@media (max-width: 767px) {
    .serviceinfo-section1 {
        padding-top: 40px;
    }
}

.serviceinfo-section1 .cont {
    margin-bottom: 200px;
}

.serviceinfo-section1 .cont:last-child {
    margin-bottom: 100px;
}

@media (max-width: 1440px) {
    .serviceinfo-section1 .cont {
        margin-bottom: 160px;
    }
    .serviceinfo-section1 .cont:last-child {
        margin-bottom: 80px;
    }
}

@media (max-width: 1199px) {
    .serviceinfo-section1 .cont {
        margin-bottom: 100px;
    }
    .serviceinfo-section1 .cont:last-child {
        margin-bottom: 60px;
    }
}

@media (max-width: 991px) {
    .serviceinfo-section1 .cont {
        margin-bottom: 60px;
    }
    .serviceinfo-section1 .cont:last-child {
        margin-bottom: 45px;
    }
}

@media (max-width: 767px) {
    .serviceinfo-section1 .cont {
        margin-bottom: 45px;
    }
}

.serviceinfo-section1 .cont .basecont {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.serviceinfo-section1 .cont .basecont .lt {
    width: 42.9%;
    display: flex;
    align-items: flex-end;
    padding-left: 40px;
}

@media (max-width: 1199px) {
    .serviceinfo-section1 .cont .basecont .lt {
        width: 100%;
        order: 1;
        padding-left: 0px;
    }
}

.serviceinfo-section1 .cont .basecont .lt .font {
    width: 90%;
}

@media (max-width: 767px) {
    .serviceinfo-section1 .cont .basecont .lt .font {
        width: 100%;
    }
}

.serviceinfo-section1 .cont .basecont .lt .font .tit {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .serviceinfo-section1 .cont .basecont .lt .font .tit {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .serviceinfo-section1 .cont .basecont .lt .font .tit {
        font-size: 28px;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .serviceinfo-section1 .cont .basecont .lt .font .tit {
        font-size: 26px;
    }
}

.serviceinfo-section1 .cont .basecont .lt .font .text {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 45px;
}

@media (max-width: 1440px) {
    .serviceinfo-section1 .cont .basecont .lt .font .text {
        margin-bottom: 30px;
    }
}

@media (max-width: 1199px) {
    .serviceinfo-section1 .cont .basecont .lt .font .text {
        margin-bottom: 25px;
    }
}

@media (max-width: 991px) {
    .serviceinfo-section1 .cont .basecont .lt .font .text {
        line-height: 28px;
    }
}

@media (max-width: 767px) {
    .serviceinfo-section1 .cont .basecont .lt .font .text {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .serviceinfo-section1 .cont .basecont .lt .font .text {
        line-height: 24px;
        margin-bottom: 15px;
    }
}

.serviceinfo-section1 .cont .basecont .lt .font .center {
    width: 100%;
    margin-bottom: 50px;
}

@media (max-width: 1440px) {
    .serviceinfo-section1 .cont .basecont .lt .font .center {
        margin-bottom: 30px;
    }
}

@media (max-width: 1199px) {
    .serviceinfo-section1 .cont .basecont .lt .font .center {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .serviceinfo-section1 .cont .basecont .lt .font .center {
        margin-bottom: 20px;
    }
}

.serviceinfo-section1 .cont .basecont .lt .font .center p {
    font-size: 16px;
    color: #999;
    line-height: 30px;
}

@media (max-width: 1199px) {
    .serviceinfo-section1 .cont .basecont .lt .font .center p {
        line-height: 26px;
    }
}

@media (max-width: 767px) {
    .serviceinfo-section1 .cont .basecont .lt .font .center p {
        font-size: 14px;
        line-height: 24px;
    }
}

.serviceinfo-section1 .cont .basecont .lt .font>span {
    font-size: 60px;
    color: #f0f0f0;
    margin-top: 20px;
    font-family: "Microsoft YaHei";
    display: block;
}

@media (max-width: 1440px) {
    .serviceinfo-section1 .cont .basecont .lt .font>span {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .serviceinfo-section1 .cont .basecont .lt .font>span {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .serviceinfo-section1 .cont .basecont .lt .font>span {
        font-size: 30px;
    }
}

.serviceinfo-section1 .cont .basecont .gt {
    width: 57.1%;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .serviceinfo-section1 .cont .basecont .gt {
        width: 100%;
        order: 0;
        margin-bottom: 30px;
    }
}

.serviceinfo-section1 .cont .basecont .gt img {
    width: 100%;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.serviceinfo-section1 .cont .basecont .gt:hover img {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
}

.serviceinfo-section1 .cont:nth-child(2n) .basecont {
    flex-direction: row-reverse;
}

.serviceinfo-section1 .cont:nth-child(2n) .basecont .lt {
    padding-left: 97px;
}

@media (max-width: 1440px) {
    .serviceinfo-section1 .cont:nth-child(2n) .basecont .lt {
        padding-left: 50px;
    }
}

@media (max-width: 1199px) {
    .serviceinfo-section1 .cont:nth-child(2n) .basecont .lt {
        padding-left: 0;
    }
}

.serviceinfo-section1 .cont:nth-child(2n) .basecont .lt .font {
    width: 98%;
}

.serviceinfo-section2 {
    padding: 100px 0;
    background-color: #f5f5f5;
    margin-bottom: 140px;
}

@media (max-width: 1440px) {
    .serviceinfo-section2 {
        margin-bottom: 115px;
    }
}

@media (max-width: 1199px) {
    .serviceinfo-section2 {
        padding: 80px 0;
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .serviceinfo-section2 {
        padding: 60px 0;
        margin-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .serviceinfo-section2 {
        padding: 40px 0;
        margin-bottom: 50px;
    }
}

@media (max-width: 575px) {
    .serviceinfo-section2 {
        padding: 35px 0;
    }
}

.serviceinfo-section2 .basecont .serviceinfo-tit {
    margin-top: 20px;
}

.serviceinfo-section2 .basecont .cont {
    margin-top: 55px;
}

.serviceinfo-section2 .basecont .cont .item {
    width: 100%;
    padding-bottom: 80px;
    position: relative;
    display: block;
}

@media (max-width: 1199px) {
    .serviceinfo-section2 .basecont .cont .item {
        padding-bottom: 60px;
    }
}

.serviceinfo-section2 .basecont .cont .item .img {
    width: 100%;
    position: relative;
    padding-bottom: 66%;
    z-index: 1;
    overflow: hidden;
}

.serviceinfo-section2 .basecont .cont .item .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.serviceinfo-section2 .basecont .cont .item .font {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 26px 0;
    text-align: center;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media (max-width: 1199px) {
    .serviceinfo-section2 .basecont .cont .item .font {
        padding: 20px 0;
    }
}

@media (max-width: 767px) {
    .serviceinfo-section2 .basecont .cont .item .font {
        font-size: 14px;
    }
}

.serviceinfo-section2 .basecont .cont .item:hover .font {
    background-color: #0f4b81;
    padding: 52px 0;
    color: #fff;
}

@media (max-width: 1199px) {
    .serviceinfo-section2 .basecont .cont .item:hover .font {
        padding: 42px 0;
    }
}

@media (max-width: 767px) {
    .serviceinfo-section2 .basecont .cont .item:hover .font {
        padding: 38px 0;
    }
}

.serviceinfo-section2 .basecont .cont .item:hover .img img {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
}

.serviceinfo-section2 .basecont .but {
    width: 160px;
    height: 60px;
    line-height: 60px;
    margin: 50px auto 0;
    background: #0f4b81;
    color: #fff;
    display: block;
    text-align: center;
    font-size: 18px;
}

@media (max-width: 1199px) {
    .serviceinfo-section2 .basecont .but {
        margin: 35px auto 0;
    }
}

@media (max-width: 767px) {
    .serviceinfo-section2 .basecont .but {
        width: 120px;
        height: 50px;
        line-height: 50px;
        margin: 20px auto 0;
        font-size: 16px;
    }
}

.serviceinfo-section3 .serviceinfo-tit {
    margin-bottom: 140px;
}

@media (max-width: 1440px) {
    .serviceinfo-section3 .serviceinfo-tit {
        margin-bottom: 115px;
    }
}

@media (max-width: 1199px) {
    .serviceinfo-section3 .serviceinfo-tit {
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .serviceinfo-section3 .serviceinfo-tit {
        margin-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .serviceinfo-section3 .serviceinfo-tit {
        margin-bottom: 50px;
    }
}

.serviceinfo-section3 .serviceinfo-tit a {
    display: block;
    width: 152px;
    font-size: 18px;
    color: #0f4b81;
    margin: 33px auto 0;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 767px) {
    .serviceinfo-section3 .serviceinfo-tit a {
        font-size: 16px;
        margin: 15px auto 0;
    }
}

.serviceinfo-section1 .cont:hover .basecont .lt .font .tit {
    color: #0f4b81;
}

.serviceinfo-section1 .cont:hover .basecont .gt img {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
}


/* End */


/* 采购代理 */

.purchase-section1 {
    background-color: #f5f5f5;
    padding: 100px 0 80px;
}

@media (max-width: 1199px) {
    .purchase-section1 {
        padding: 70px 0 50px;
    }
}

@media (max-width: 767px) {
    .purchase-section1 {
        padding: 50px 0 20px;
    }
}

@media (max-width: 575px) {
    .purchase-section1 {
        padding: 35px 0 15px;
    }
}

.purchase-section1 .tit {
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 55px;
}

@media (max-width: 1199px) {
    .purchase-section1 .tit {
        font-size: 30px;
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .purchase-section1 .tit {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .purchase-section1 .tit {
        font-size: 26px;
    }
}

.purchase-section1 .cont {
    margin: 0 -10px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .purchase-section1 .cont {
        margin: 0 -5px;
    }
}

@media (max-width: 575px) {
    .purchase-section1 .cont {
        margin: 0;
    }
}

.purchase-section1 .cont .item {
    padding: 0 10px;
    margin-bottom: 20px;
    width: 50%;
    float: left;
}

@media (max-width: 767px) {
    .purchase-section1 .cont .item {
        padding: 0 -5px;
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .purchase-section1 .cont .item {
        padding: 0;
        width: 100%;
    }
}

.purchase-section1 .cont .item div {
    display: block;
    width: 100%;
    padding: 34px 0;
    background-color: #fff;
    font-size: 24px;
    text-align: center;
}

@media (max-width: 767px) {
    .purchase-section1 .cont .item div {
        padding: 30px 0;
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .purchase-section1 .cont .item div {
        font-size: 18px;
    }
}

.purchase-section2 .tit1 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 36px;
    font-weight: bold;
}

@media (max-width: 1199px) {
    .purchase-section2 .tit1 {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .purchase-section2 .tit1 {
        margin-bottom: 30px;
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .purchase-section2 .tit1 {
        font-size: 28px;
    }
}

.purchase-section2 .cont .basecont .lt .font .tit {
    margin-bottom: 30px;
}

@media (max-width: 1440px) {
    .purchase-section2 .cont .basecont .lt .font .tit {
        margin-bottom: 20px;
    }
}

@media (max-width: 1199px) {
    .purchase-section2 .cont .basecont .lt .font .tit {
        margin-bottom: 16px;
    }
}

@media (max-width: 575px) {
    .purchase-section2 .cont .basecont .lt .font .tit {
        margin-bottom: 15px;
    }
}

.purchase-section3 {
    padding: 120px 0 100px;
    background-color: #f5f5f5;
    margin-bottom: 135px;
}

@media (max-width: 1440px) {
    .purchase-section3 {
        padding: 90px 0 70px;
        margin-bottom: 110px;
    }
}

@media (max-width: 1199px) {
    .purchase-section3 {
        padding: 70px 0 50px;
        margin-bottom: 90px;
    }
}

@media (max-width: 767px) {
    .purchase-section3 {
        padding: 40px 0 30px;
        margin-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .purchase-section3 {
        padding: 30px 0 20px;
        margin-bottom: 50px;
    }
}

.purchase-section3 .tit {
    text-align: center;
    margin-bottom: 56px;
}

@media (max-width: 767px) {
    .purchase-section3 .tit {
        margin-bottom: 35px;
    }
}

@media (max-width: 575px) {
    .purchase-section3 .tit {
        margin-bottom: 25px;
    }
}

.purchase-section3 .tit strong {
    font-weight: bold;
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

@media (max-width: 1199px) {
    .purchase-section3 .tit strong {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .purchase-section3 .tit strong {
        font-size: 28px;
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .purchase-section3 .tit strong {
        font-size: 26px;
    }
}

.purchase-section3 .tit span {
    font-size: 16px;
    color: #666;
    display: block;
}

@media (max-width: 767px) {
    .purchase-section3 .tit span {
        font-size: 14px;
    }
}

.purchase-section3 .cont {
    margin: 0 -20px;
    overflow: hidden;
}

@media (max-width: 1440px) {
    .purchase-section3 .cont {
        margin: 0 -10px;
    }
}

@media (max-width: 1199px) {
    .purchase-section3 .cont {
        margin: 0;
    }
}

.purchase-section3 .cont .item {
    padding: 0 20px;
    margin-bottom: 40px;
    width: 50%;
    height: 300px;
    float: left;
}

@media (max-width: 1440px) {
    .purchase-section3 .cont .item {
        padding: 0 -10px;
        margin-bottom: 20px;
    }
}

@media (max-width: 1199px) {
    .purchase-section3 .cont .item {
        padding: 0;
        margin-bottom: 10px;
        width: 100%;
        height: auto;
    }
}

.purchase-section3 .cont .item a {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    width: 100%;
    height: 100%;
    padding: 75px 50px;
}

@media (max-width: 1440px) {
    .purchase-section3 .cont .item a {
        padding: 60px 40px;
    }
}

@media (max-width: 1199px) {
    .purchase-section3 .cont .item a {
        height: auto;
    }
}

@media (max-width: 991px) {
    .purchase-section3 .cont .item a {
        padding: 45px 30px;
    }
}

@media (max-width: 767px) {
    .purchase-section3 .cont .item a {
        padding: 30px 15px;
    }
}

@media (max-width: 575px) {
    .purchase-section3 .cont .item a {
        padding: 25px 15px;
    }
}

.purchase-section3 .cont .item a .img {
    width: 80px;
    margin-right: 40px;
}

@media (max-width: 1440px) {
    .purchase-section3 .cont .item a .img {
        width: 70px;
        margin-right: 35px;
    }
}

@media (max-width: 991px) {
    .purchase-section3 .cont .item a .img {
        margin-right: 30px;
    }
}

@media (max-width: 767px) {
    .purchase-section3 .cont .item a .img {
        margin-right: 25px;
        width: 65px;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .purchase-section3 .cont .item a .img {
        margin-right: 15px;
        width: 50px;
    }
}

.purchase-section3 .cont .item a .img img {
    width: 100%;
}

@media (max-width: 767px) {
    .purchase-section3 .cont .item a .font {
        width: 100%;
        margin-top: -60px;
    }
}

.purchase-section3 .cont .item a .font strong {
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 25px;
    display: block;
}

@media (max-width: 767px) {
    .purchase-section3 .cont .item a .font strong {
        margin-bottom: 20px;
        font-size: 24px;
        padding-left: 80px;
    }
}

@media (max-width: 575px) {
    .purchase-section3 .cont .item a .font strong {
        font-size: 22px;
    }
}

.purchase-section3 .cont .item a .font .text p {
    color: #999;
    font-size: 16px;
    line-height: 32px;
}

@media (max-width: 991px) {
    .purchase-section3 .cont .item a .font .text p {
        line-height: 30px;
    }
}

@media (max-width: 767px) {
    .purchase-section3 .cont .item a .font .text p {
        font-size: 14px;
        line-height: 24px;
    }
}


/* End */


/* 货运代理 */

.freight-section1 {
    padding: 100px 0;
    overflow: hidden;
}

.freight-section1 .tit {
    text-align: center;
    margin-bottom: 60px;
}

.freight-section1 .tit strong {
    display: block;
    font-size: 36px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .freight-section1 .tit {
        margin-bottom: 40px;
    }
    .freight-section1 .tit strong {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .freight-section1 .tit strong {
        font-size: 28px;
    }
}

@media (max-width: 1199px) {
    .freight-section1 {
        padding: 80px 0;
    }
}

@media (max-width: 991px) {
    .freight-section1 {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .freight-section1 {
        padding: 40px 0;
    }
}

@media (max-width: 575px) {
    .freight-section1 {
        padding: 0;
    }
}

.freight-section1 .cont {
    border: 1px solid #dddddd;
    overflow: hidden;
    border-right: none;
}

.freight-section1 .cont .center {
    overflow: hidden;
    margin: 0 -1px -1px 0;
}

.freight-section1 .cont .center .item {
    display: block;
    float: left;
    width: 33.333%;
    background: #fff url(../images/inner/fbag.png) no-repeat center;
    background-size: cover;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    padding: 86px 54px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    text-align: center;
    overflow: hidden;
}

@media (max-width: 1440px) {
    .freight-section1 .cont .center .item {
        padding: 76px 50px;
    }
}

@media (max-width: 1199px) {
    .freight-section1 .cont .center .item {
        padding: 58px 45px;
        width: 33.333%;
    }
}

@media (max-width: 991px) {
    .freight-section1 .cont .center .item {
        padding: 40px 35px;
        width: 50%;
    }
}

@media (max-width: 767px) {
    .freight-section1 .cont .center .item {
        padding: 30px 25px;
    }
}

@media (max-width: 767px) {
    .freight-section1 .cont .center .item {
        padding: 20px 15px;
    }
}

.freight-section1 .cont .center .item strong {
    font-size: 24px;
    display: block;
    margin-bottom: 18px;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: transform 0.2s linear;
    transition: transform 0.2s linear;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 1199px) {
    .freight-section1 .cont .center .item strong {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media (max-width: 991px) {
    .freight-section1 .cont .center .item strong {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .freight-section1 .cont .center .item strong {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

.freight-section1 .cont .center .item .font {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: transform 0.2s linear;
    transition: transform 0.2s linear;
    width: 100%;
    height: 52px;
    line-height: 24px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 991px) {
    .freight-section1 .cont .center .item .font {
        height: 49px;
    }
}

@media (max-width: 767px) {
    .freight-section1 .cont .center .item .font {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 575px) {
    .freight-section1 .cont .center .item .font {
        font-size: 12px;
        line-height: 18px;
        height: 38px;
    }
}

.freight-section1 .cont .center .item:hover {
    background: #0f4b81 url(../images/inner/fbag.png) no-repeat center;
    background-size: cover;
    color: #fff;
}

.freight-section1 .cont .center .item:hover strong {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.freight-section1 .cont .center .item:hover .font {
    opacity: 0.5;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.freight-section2 {
    padding: 120px 0;
    background-color: #f5f5f5;
}

@media (max-width: 1440px) {
    .freight-section2 {
        padding: 110px 0;
    }
}

@media (max-width: 1440px) {
    .freight-section2 {
        padding: 90px 0;
    }
}

@media (max-width: 991px) {
    .freight-section2 {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {
    .freight-section2 {
        padding: 50px 0;
    }
}

@media (max-width: 575px) {
    .freight-section2 {
        padding: 30px 0;
    }
}

.freight-section2 .basecont {
    overflow: hidden;
}

.freight-section2 .basecont .tit {
    text-align: center;
    margin-bottom: 60px;
}

@media (max-width: 1199px) {
    .freight-section2 .basecont .tit {
        margin-bottom: 45px;
    }
}

@media (max-width: 767px) {
    .freight-section2 .basecont .tit {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .freight-section2 .basecont .tit {
        margin-bottom: 20px;
    }
}

.freight-section2 .basecont .tit strong {
    display: block;
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .freight-section2 .basecont .tit strong {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .freight-section2 .basecont .tit strong {
        font-size: 28px;
    }
}

@media (max-width: 376px) {
    .freight-section2 .basecont .tit strong {
        font-size: 26px;
    }
}

.freight-section2 .basecont .tit span {
    display: block;
    margin: 0 auto;
    width: 59%;
    color: #666;
    line-height: 30px;
}

@media (max-width: 1199px) {
    .freight-section2 .basecont .tit span {
        width: 80%;
    }
}

@media (max-width: 991px) {
    .freight-section2 .basecont .tit span {
        line-height: 28px;
        width: 95%;
    }
}

@media (max-width: 767px) {
    .freight-section2 .basecont .tit span {
        width: 100%;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .freight-section2 .basecont .tit span {
        line-height: 24px;
    }
}

.freight-section2 .basecont .cont {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.freight-section2 .basecont .cont .jut {
    width: 33.333%;
    padding: 0 100px;
    margin-bottom: 51px;
}

@media (max-width: 1440px) {
    .freight-section2 .basecont .cont .jut {
        padding: 0 0;
    }
}

@media (max-width: 1199px) {
    .freight-section2 .basecont .cont .jut {
        margin-bottom: 31px;
    }
}

@media (max-width: 991px) {
    .freight-section2 .basecont .cont .jut {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .freight-section2 .basecont .cont .jut {
        margin-bottom: 25px;
    }
}

@media (max-width: 575px) {
    .freight-section2 .basecont .cont .jut {
        padding: 0 10px;
    }
}

.freight-section2 .basecont .cont .jut .item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.freight-section2 .basecont .cont .jut .item .img {
    width: 80px;
    margin-bottom: 16px;
}

.freight-section2 .basecont .cont .jut .item .img img {
    width: 100%;
}

.freight-section2 .basecont .cont .jut .item .font {
    text-align: center;
    width: 100%;
}

.freight-section2 .basecont .cont .jut .item .font strong {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    font-size: 24px;
}

@media (max-width: 767px) {
    .freight-section2 .basecont .cont .jut .item .font strong {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .freight-section2 .basecont .cont .jut .item .font strong {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

.freight-section2 .basecont .cont .jut .item .font span {
    display: block;
    color: #666;
    line-height: 30px;
}

@media (max-width: 767px) {
    .freight-section2 .basecont .cont .jut .item .font span {
        font-size: 12px;
        line-height: 20px;
    }
}

@media (max-width: 376px) {
    .freight-section2 .basecont .cont .jut .item .font span {
        font-size: 11px;
        white-space: nowrap;
        line-height: 18px;
    }
}

.freight-section3 {
    width: 100%;
    height: 500px;
    position: relative;
}

@media (max-width: 1440px) {
    .freight-section3 {
        height: 400px;
    }
}

.freight-section3 .img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

@media (max-width: 991px) {
    .freight-section3 .img {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .freight-section3 .img {
        background-position: 63% 0;
        background-attachment: initial;
    }
}

.freight-section3 .img img {
    width: 100%;
}

@media (max-width: 991px) {
    .freight-section3 .img img {
        height: 100%;
        object-fit: cover;
    }
}

.freight-section3 .basecont {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 2;
}

.freight-section3 .basecont .font {
    width: 100%;
    text-align: center;
    color: #fff;
}

.freight-section3 .basecont .font strong {
    display: block;
    margin-bottom: 25px;
    font-size: 36px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .freight-section3 .basecont .font strong {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .freight-section3 .basecont .font strong {
        font-size: 22px;
    }
}

.freight-section3 .basecont .font span {
    display: block;
    width: 39%;
    margin: 0 auto;
    line-height: 30px;
}

@media (max-width: 1199px) {
    .freight-section3 .basecont .font span {
        width: 85%;
    }
}

@media (max-width: 991px) {
    .freight-section3 .basecont .font span {
        width: 95%;
    }
}

@media (max-width: 767px) {
    .freight-section3 .basecont .font span {
        width: 100%;
        font-size: 14px;
        line-height: 24px;
    }
}

.freight-section3:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f4b81;
    opacity: 0;
    z-index: 1;
}

.freight-section4 .cont .basecont .lt .font .center {
    margin-bottom: 65px;
}

@media (max-width: 1440px) {
    .freight-section4 .cont .basecont .lt .font .center {
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .freight-section4 .cont .basecont .lt .font .center {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .freight-section4 .cont .basecont .lt .font .center {
        margin-bottom: 20px;
    }
}

.freight-section4 .cont .basecont .gt img {
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1199px) {
    .freight-section4 .cont .basecont .gt img {
        height: auto;
        object-fit: inherit;
    }
}


/* End */


/* 案例 */

.case-section1 {
    margin-bottom: 140px;
    padding: 100px 0;
    background-color: #f5f5f5;
    overflow: hidden;
}

@media (max-width: 1440px) {
    .case-section1 {
        margin-bottom: 115px;
    }
}

@media (max-width: 1199px) {
    .case-section1 {
        padding: 80px 0;
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .case-section1 {
        padding: 60px 0;
        margin-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .case-section1 {
        padding: 40px 0;
        margin-bottom: 50px;
    }
}

.case-section1 .casetit {
    width: 100%;
    display: flex;
    margin-bottom: 60px;
}

@media (max-width: 1199px) {
    .case-section1 .casetit {
        margin-bottom: 45px;
    }
}

@media (max-width: 767px) {
    .case-section1 .casetit {
        margin-bottom: 30px;
        justify-content: space-between;
    }
}

@media (max-width: 575px) {
    .case-section1 .casetit {
        margin-bottom: 20px;
    }
}

.case-section1 .casetit .item {
    display: block;
    margin-right: 50px;
    font-size: 18px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f5f5f5;
    color: #666;
}

@media (max-width: 767px) {
    .case-section1 .casetit .item {
        font-size: 16px;
        margin-right: 0;
    }
}

@media (max-width: 575px) {
    .case-section1 .casetit .item {
        font-size: 14px;
        margin-right: 0;
    }
}

.case-section1 .casetit .item:hover {
    color: #0f4b81;
}

.case-section1 .casetit .on {
    color: #0f4b81;
    font-weight: bold;
    border-bottom: 2px solid #0f4b81;
}

.case-section1 .cont {
    margin: 0 -15px;
    overflow: hidden;
}

.case-section1 .cont .basepagebox {
    margin-top: 68px;
}

@media (max-width: 1199px) {
    .case-section1 .cont {
        margin: 0 -15px;
    }
    .case-section1 .cont .basepagebox {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .case-section1 .cont {
        margin: 0 -10px;
    }
    .case-section1 .cont .basepagebox {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .case-section1 .cont {
        margin: 0 0;
    }
    .case-section1 .cont .basepagebox {
        margin-top: 25px;
    }
}

.case-section1 .cont .jut {
    padding: 0 15px;
    width: 33.333%;
    float: left;
}

@media (max-width: 991px) {
    .case-section1 .cont .jut {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .case-section1 .cont .jut {
        padding: 0 10px;
    }
}

@media (max-width: 575px) {
    .case-section1 .cont .jut {
        padding: 0;
        width: 100%;
    }
}

.case-section1 .cont .jut .item {
    width: 100%;
    padding-bottom: 80px;
    position: relative;
    margin-bottom: 20px;
    display: block;
}

@media (max-width: 1199px) {
    .case-section1 .cont .jut .item {
        padding-bottom: 60px;
    }
}

.case-section1 .cont .jut .item .img {
    width: 100%;
    position: relative;
    padding-bottom: 66%;
    z-index: 1;
    overflow: hidden;
}

.case-section1 .cont .jut .item .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.case-section1 .cont .jut .item .font {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 26px 0;
    text-align: center;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media (max-width: 1199px) {
    .case-section1 .cont .jut .item .font {
        padding: 20px 0;
    }
}

@media (max-width: 767px) {
    .case-section1 .cont .jut .item .font {
        font-size: 14px;
    }
}

.case-section1 .cont .jut .item:hover .font {
    background-color: #0f4b81;
    padding: 52px 0;
    color: #fff;
}

@media (max-width: 1199px) {
    .case-section1 .cont .jut .item:hover .font {
        padding: 42px 0;
    }
}

@media (max-width: 767px) {
    .case-section1 .cont .jut .item:hover .font {
        padding: 38px 0;
    }
}

.case-section1 .cont .jut .item:hover .img img {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
}


/* End */


/* 案例详情页 */

.offtop {
    margin-top: 100px;
}

@media (max-width: 1199px) {
    .offtop {
        margin-top: 70px;
    }
}

.caseinfo {
    background-color: #f5f5f5;
}

.caseinfo-section1 {
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    margin-bottom: 88px;
}

@media (max-width: 1199px) {
    .caseinfo-section1 {
        margin-bottom: 66px;
    }
}

@media (max-width: 767px) {
    .caseinfo-section1 {
        margin-bottom: 44px;
        height: 50px;
    }
}

.caseinfo-section1 a,
.caseinfo-section1 span {
    color: #666;
    font-size: 16px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .caseinfo-section1 a,
    .caseinfo-section1 span {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .caseinfo-section1 a,
    .caseinfo-section1 span {
        font-size: 12px;
        max-width: 43%;
    }
}

.caseinfo-section1 span {
    margin: 0 5px;
}

@media (max-width: 575px) {
    .caseinfo-section1 span {
        margin: 0 3px;
    }
}

.caseinfo-section2 {
    padding-bottom: 100px;
}

@media (max-width: 1199px) {
    .caseinfo-section2 {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .caseinfo-section2 {
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .caseinfo-section2 {
        padding-bottom: 40px;
    }
}

.caseinfo-section2 .tit {
    width: 100%;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .caseinfo-section2 .tit {
        margin-bottom: 25px;
    }
}

.caseinfo-section2 .tit .h1 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .caseinfo-section2 .tit .h1 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .caseinfo-section2 .tit .h1 {
        font-size: 28px;
    }
}

.caseinfo-section2 .tit .font {
    width: 100%;
    color: #666;
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .caseinfo-section2 .tit .font {
        font-size: 14px;
    }
}

.caseinfo-section2 .tit .font span {
    display: block;
    margin-right: 60px;
}

@media (max-width: 1199px) {
    .caseinfo-section2 .tit .font span {
        margin-right: 50px;
    }
}

@media (max-width: 991px) {
    .caseinfo-section2 .tit .font span {
        margin-right: 20px;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .caseinfo-section2 .tit .font span {
        margin-right: 15px;
    }
}

@media (max-width: 575px) {
    .caseinfo-section2 .tit .font span {
        margin-right: 15px;
    }
}

.caseinfo-section2 .cont {
    position: relative;
}

.caseinfo-section2 .cont::after {
    display: block;
    content: "";
    clear: both;
}

.caseinfo-section2 .cont .lt {
    width: 63%;
    padding-right: 30px;
    float: left;
}

.caseinfo-section2 .cont .lt .jut .prev,
.caseinfo-section2 .cont .lt .jut .next {
    width: 42%;
    background-color: #fff;
    text-align: center;
    height: 70px;
    line-height: 70px;
    color: #666;
    display: inline-block;
}

.caseinfo-section2 .cont .lt .jut .prev {
    margin-bottom: 20px;
    float: left;
    margin-right: 20px;
}

.caseinfo-section2 .cont .lt .jut .next {}

.caseinfo-section2 .cont .lt .jut .num {
    display: inline-block;
    /* margin-right: 20px; */
    font-size: 18px;
    /* margin-top: 17px; */
    margin-bottom: 20px;
    color: #666;
}

.caseinfo-section2 .cont .lt .jut .num:hover {
    color: #0f4b81;
}

.caseinfo-section2 .cont .lt .jut .active {
    color: #0f4b81;
    margin: 0 10px;
    margin-bottom: 20px;
}

.caseinfo-section2 .cont .lt .jut .prev:hover,
.caseinfo-section2 .cont .lt .jut .next:hover {
    background-color: #0f4b81;
    color: #fff;
}

@media (max-width: 1440px) {
    .caseinfo-section2 .cont .lt {
        padding-right: 20px;
    }
}

@media (max-width: 1199px) {
    .caseinfo-section2 .cont .lt {
        width: 100%;
        margin-bottom: 40px;
        padding-right: 0;
    }
}

.caseinfo-section2 .cont .lt .text {
    background-color: #fff;
    padding: 70px 30px;
}

@media (max-width: 767px) {
    .caseinfo-section2 .cont .lt .text {
        padding: 45px 15px;
    }
    .caseinfo-section2 .cont .lt .jut .prev,
    .caseinfo-section2 .cont .lt .jut .next {
        font-size: 14px;
        height: 50px;
        line-height: 50px;
    }
    .caseinfo-section2 .cont .lt .jut .num {
        margin-right: 10px;
        font-size: 16px;
        margin-right: 5px;
    }
    .caseinfo-section2 .cont .lt .jut .prev {
        margin-right: 15;
    }
}

@media (max-width: 575px) {
    .caseinfo-section2 .cont .lt .text {
        padding: 25px 10px;
    }
    .caseinfo-section2 .cont .lt .jut .prev,
    .caseinfo-section2 .cont .lt .jut .next {
        width: 100%;
    }
    .caseinfo-section2 .cont .lt .jut .prev {
        margin-right: 0;
    }
}

.caseinfo-section2 .cont .lt .text img {
    width: 100%;
}

.caseinfo-section2 .cont .lt .text p {
    color: #666;
    font-size: 16px;
    line-height: 35px;
}

@media (max-width: 767px) {
    .caseinfo-section2 .cont .lt .text p {
        font-size: 14px;
        line-height: 22px;
    }
}

.caseinfo-section2 .cont .lt .ltpage {
    margin-top: 60px;
}

@media (max-width: 1199px) {
    .caseinfo-section2 .cont .lt .ltpage {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .caseinfo-section2 .cont .lt .ltpage {
        margin-top: 20px;
    }
}

.caseinfo-section2 .cont .lt .ltpage a {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    color: #666;
}

.caseinfo-section2 .cont .lt .ltpage>div {
    display: flex;
}

.caseinfo-section2 .cont .lt .ltpage>div span {
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .caseinfo-section2 .cont .lt .ltpage a {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

.caseinfo-section2 .cont .lt .but {
    margin-top: 40px;
    display: block;
    width: 160px;
    height: 60px;
    background-color: #0f4b81;
    text-align: center;
    line-height: 60px;
    color: #fff;
}

@media (max-width: 1199px) {
    .caseinfo-section2 .cont .lt .but {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .caseinfo-section2 .cont .lt .but {
        margin-top: 20px;
        width: 120px;
        height: 50px;
        line-height: 50px;
    }
}

.caseinfo-section2 .cont .gt {
    width: 37%;
    position: sticky;
    top: 120px;
    padding-left: 30px;
    float: right;
}

@media (max-width: 1440px) {
    .caseinfo-section2 .cont .gt {
        padding-left: 20px;
    }
}

@media (max-width: 1199px) {
    .caseinfo-section2 .cont .gt {
        width: 100%;
        height: auto;
        padding-left: 0;
    }
}

.caseinfo-section2 .cont .gt .gttit {
    width: 100%;
    margin-bottom: 35px;
    font-size: 30px;
    font-weight: bold;
}

@media (max-width: 1199px) {
    .caseinfo-section2 .cont .gt .gttit {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .caseinfo-section2 .cont .gt .gttit {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .caseinfo-section2 .cont .gt .gttit {
        font-size: 26px;
    }
}

.caseinfo-section2 .cont .gt .gtcont {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.caseinfo-section2 .cont .gt .gtcont .item {
    display: block;
    margin-bottom: 10px;
    width: 100%;
}

@media (max-width: 1199px) {
    .caseinfo-section2 .cont .gt .gtcont .item {
        width: 50%;
        padding-right: 10px;
    }
    .caseinfo-section2 .cont .gt .gtcont .item:nth-child(2n) {
        padding-right: 0;
    }
}

@media (max-width: 575px) {
    .caseinfo-section2 .cont .gt .gtcont .item {
        padding-right: 0;
        width: 100%;
    }
}

.caseinfo-section2 .cont .gt .gtcont .item .img {
    overflow: hidden;
    position: relative;
    padding-bottom: 48%;
}

.caseinfo-section2 .cont .gt .gtcont .item .img img {
    width: 100%;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
}

.caseinfo-section2 .cont .gt .gtcont .item .gtfont {
    width: 100%;
    padding: 18px 0;
    text-align: center;
}

.caseinfo-section2 .cont .gt .gtcont .item:hover .gtfont {
    background-color: #0f4b81;
    color: #fff;
}

.caseinfo-section2 .cont .gt .gtcont .item:hover img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}


/* End */


/* 新闻详情页 */

.newsinfo-section1 .cont .gt .gttit {
    font-weight: 500;
}

.newsinfo-section1 .cont .gt .gtcont .item .img {
    padding-bottom: 33%;
}

.newsinfo-section1 .cont .gt .gtcont .item .gtfont {
    text-align: left;
    font-size: 14px;
}


/* End */


/* 服务支持 */

.support-section1 {
    padding: 100px 0;
    background-color: #f5f5f5;
    margin-bottom: 140px;
}

@media (max-width: 1199px) {
    .support-section1 {
        padding: 80px 0;
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .support-section1 {
        padding: 60px 0;
        margin-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .support-section1 {
        margin-bottom: 50px;
        padding: 40px 0;
    }
}

.support-section1 .cont {
    margin: 0 -10px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .support-section1 .cont {
        margin: 0 -5px;
    }
}

@media (max-width: 575px) {
    .support-section1 .cont {
        margin: 0;
    }
}

.support-section1 .cont .jut {
    padding: 0 10px;
    margin-bottom: 20px;
    float: left;
    width: 50%;
}

@media (max-width: 991px) {
    .support-section1 .cont .jut {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .support-section1 .cont .jut {
        padding: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .support-section1 .cont .jut {
        padding: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 357px) {
    .support-section1 .cont .jut {
        margin-bottom: 10px;
    }
}

.support-section1 .cont .jut a {
    display: flex;
    background-color: #fff;
    width: 100%;
    align-items: center;
    padding: 90px 63px;
    background-position: 60px center;
    background-repeat: no-repeat;
    justify-content: space-between;
    background-size: auto 137px;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
}

.support-section1 .cont .jut a:hover {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
    filter: gray;
}

@media (max-width: 1199px) {
    .support-section1 .cont .jut a {
        padding: 60px 33px;
    }
}

@media (max-width: 767px) {
    .support-section1 .cont .jut a {
        padding: 35px 15px;
        background-position: center;
        background-size: contain;
    }
}

@media (max-width: 575px) {
    .support-section1 .cont .jut a {
        padding: 30px 15px;
    }
}

@media (max-width: 357px) {
    .support-section1 .cont .jut a {
        padding: 20px 10px;
    }
}

.support-section1 .cont .jut a .font {
    color: #333;
}

.support-section1 .cont .jut a .font span {
    font-size: 30px;
    display: block;
    margin-bottom: 30px;
    opacity: 1;
}

.support-section2 .cont .jut a .font span {
    opacity: 1;
}

@media (max-width: 767px) {
    .support-section1 .cont .jut a .font span {
        font-size: 28px;
        margin-bottom: 25px;
    }
}

@media (max-width: 575px) {
    .support-section1 .cont .jut a .font span {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

@media (max-width: 357px) {
    .support-section1 .cont .jut a .font span {
        font-size: 20px;
        margin-bottom: 10px;
    }
}

.support-section1 .cont .jut a .font strong {
    color: #999;
    font-size: 30px;
}

@media (max-width: 991px) {
    .support-section1 .cont .jut a .font strong {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .support-section1 .cont .jut a .font strong {
        font-size: 24px;
    }
}

@media (max-width: 357px) {
    .support-section1 .cont .jut a .font strong {
        font-size: 20px;
    }
}

.support-section1 .cont .jut a .img {
    height: 98px;
}

@media (max-width: 1199px) {
    .support-section1 .cont .jut a .img {
        height: 85px;
    }
}

@media (max-width: 767px) {
    .support-section1 .cont .jut a .img {
        height: 38px;
    }
}

@media (max-width: 357px) {
    .support-section1 .cont .jut a .img {
        height: 50px;
    }
}

.support-section1 .cont .jut a .img img {
    height: 100%;
}

.support-section1 .cont .jut a:hover {
    background-color: #0f4b81;
}

.support-section2 .cont .jut a:hover {
    background-color: #0f4b81;
}

.support-section1 .cont .jut a:hover .font {
    color: #fff;
}

.support-section1 .cont .jut a:hover .font strong {
    color: #a6b4c7;
}

.support-section1 .cont .jut a:hover .img img {
    -webkit-filter: brightness(100);
    -moz-filter: brightness(100);
    filter: brightness(100);
}


/* End */


/* 下载中心 */

.download-section1 {
    padding: 100px 0;
    background-color: #f5f5f5;
}

@media (max-width: 1199px) {
    .download-section1 {
        padding: 80px 0;
    }
}

@media (max-width: 991px) {
    .download-section1 {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .download-section1 {
        padding: 40px 0;
    }
}

.download-section1 .cont {
    margin-bottom: 60px;
    width: 100%;
    background-color: #fff;
}

@media (max-width: 1199px) {
    .download-section1 .cont {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .download-section1 .cont {
        margin-bottom: 20px;
    }
}

.download-section1 .cont .item {
    width: 100%;
    display: flex;
    align-items: center;
    height: 80px;
    border-bottom: 1px solid #f5f5f5;
    padding: 0 40px;
}

@media (max-width: 991px) {
    .download-section1 .cont .item {
        height: 65px;
        padding: 0 28px;
    }
}

@media (max-width: 767px) {
    .download-section1 .cont .item {
        padding: 0 15px;
    }
}

@media (max-width: 575px) {
    .download-section1 .cont .item {
        padding: 0 10px;
    }
}

.download-section1 .cont .item strong,
.download-section1 .cont .item span,
.download-section1 .cont .item i,
.download-section1 .cont .item a {
    display: block;
    font-style: normal;
}

@media (max-width: 767px) {
    .download-section1 .cont .item strong,
    .download-section1 .cont .item span,
    .download-section1 .cont .item i,
    .download-section1 .cont .item a {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .download-section1 .cont .item strong,
    .download-section1 .cont .item span,
    .download-section1 .cont .item i,
    .download-section1 .cont .item a {
        font-size: 12px;
    }
}

.download-section1 .cont .item span {
    width: 65%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 767px) {
    .download-section1 .cont .item span {
        width: 50%;
        margin-right: 10px;
    }
}

@media (max-width: 575px) {
    .download-section1 .cont .item span {
        width: 45%;
    }
}

.download-section1 .cont .item strong {
    width: 20%;
}

@media (max-width: 767px) {
    .download-section1 .cont .item strong {
        width: 30%;
    }
}

.download-section1 .cont .item i,
.download-section1 .cont .item a {
    width: 15%;
}

@media (max-width: 767px) {
    .download-section1 .cont .item i,
    .download-section1 .cont .item a {
        width: 20%;
    }
}

@media (max-width: 575px) {
    .download-section1 .cont .item i,
    .download-section1 .cont .item a {
        width: 25%;
    }
}

.download-section1 .cont .item a {
    width: 120px;
    height: 42px;
    border-radius: 30px;
    text-align: center;
    line-height: 42px;
    background-color: #fff;
    border: 1px solid #e3e3e3;
}

@media (max-width: 1199px) {
    .download-section1 .cont .item a {
        height: 32px;
        line-height: 32px;
        width: 100px;
    }
}

@media (max-width: 767px) {
    .download-section1 .cont .item a {
        height: 28px;
        line-height: 28px;
        width: 80px;
    }
}

.download-section1 .cont .item:hover span {
    color: #0f4b81;
}

.download-section1 .cont .item:hover a {
    background-color: #0f4b81;
    color: #fff;
}

.download-section1 .cont .tit {
    background-color: #0f4b81;
    color: #fff;
}

.download-section1 .cont .tit strong,
.download-section1 .cont .tit span,
.download-section1 .cont .tit i {
    font-size: 18px;
}

@media (max-width: 767px) {
    .download-section1 .cont .tit strong,
    .download-section1 .cont .tit span,
    .download-section1 .cont .tit i {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .download-section1 .cont .tit strong,
    .download-section1 .cont .tit span,
    .download-section1 .cont .tit i {
        font-size: 14px;
    }
}

.download-section1 .cont .tit:hover span {
    color: #fff;
}


/* End */


/* 新闻中心 */

.news {
    background-color: #f5f5f5;
    margin-bottom: 140px;
}

@media (max-width: 1199px) {
    .news {
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .news {
        margin-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .news {
        margin-bottom: 50px;
    }
}

.news-section1 {
    padding: 100px 0;
}

@media (max-width: 1199px) {
    .news-section1 {
        padding: 80px 0;
    }
}

@media (max-width: 991px) {
    .news-section1 {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .news-section1 {
        padding: 40px 0;
    }
}

.news-section1 .basecont .newstit {
    width: 100%;
    display: flex;
    margin-bottom: 60px;
}

@media (max-width: 1199px) {
    .news-section1 .basecont .newstit {
        margin-bottom: 45px;
    }
}

@media (max-width: 767px) {
    .news-section1 .basecont .newstit {
        margin-bottom: 30px;
        justify-content: space-between;
    }
}

@media (max-width: 575px) {
    .news-section1 .basecont .newstit {
        margin-bottom: 20px;
    }
}

.news-section1 .basecont .newstit .item {
    display: block;
    margin-right: 50px;
    font-size: 18px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f5f5f5;
    color: #666;
}

@media (max-width: 767px) {
    .news-section1 .basecont .newstit .item {
        font-size: 16px;
        margin-right: 0;
    }
}

@media (max-width: 575px) {
    .news-section1 .basecont .newstit .item {
        font-size: 14px;
        margin-right: 0;
    }
}

.news-section1 .basecont .newstit .item:hover {
    color: #0f4b81;
}

.news-section1 .basecont .newstit .on {
    color: #0f4b81;
    font-weight: bold;
    border-bottom: 2px solid #0f4b81;
}

.news-section1 .basecont .cont .jut .basepagebox {
    margin-top: 60px;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .news-section1 .basecont .cont .jut .basepagebox {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .news-section1 .basecont .cont .jut .basepagebox {
        margin-bottom: 20px;
        justify-content: flex-start;
    }
}

.news-section1 .basecont .cont .jut .basepagebox .next,
.news-section1 .basecont .cont .jut .basepagebox .prev {
    width: 39%;
}

@media (max-width: 575px) {
    .news-section1 .basecont .cont .jut .basepagebox .next,
    .news-section1 .basecont .cont .jut .basepagebox .prev {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .news-section1 .basecont .cont .jut .basepagebox .next {
        margin-bottom: 20px;
    }
}

.news-section1 .basecont .cont .jut .center {
    width: 100%;
}

.news-section1 .basecont .cont .jut .center .list {
    width: 100%;
    display: block;
    padding: 40px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

@media (max-width: 767px) {
    .news-section1 .basecont .cont .jut .center .list {
        padding: 25px 0;
        margin-bottom: 15px;
    }
}

.news-section1 .basecont .cont .jut .center .list .h1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .news-section1 .basecont .cont .jut .center .list .h1 {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .news-section1 .basecont .cont .jut .center .list .h1 {
        font-size: 18px;
    }
}

.news-section1 .basecont .cont .jut .center .list .p {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
    line-height: 30px;
    height: 55px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media (max-width: 767px) {
    .news-section1 .basecont .cont .jut .center .list .p {
        line-height: 24px;
        height: 50px;
    }
}

@media (max-width: 575px) {
    .news-section1 .basecont .cont .jut .center .list .p {
        font-size: 12px;
        line-height: 20px;
    }
}

@media (max-width: 575px) {
    .news-section1 .basecont .cont .jut .center .list .p {
        height: 43px;
    }
}

.news-section1 .basecont .cont .jut .center .list span {
    font-size: 14px;
    color: #999;
}

@media (max-width: 575px) {
    .news-section1 .basecont .cont .jut .center .list span {
        font-size: 12px;
    }
}

.news-section1 .basecont .cont .jut .center .list:hover .h1 {
    color: #0f4b81;
}


/* End */


/* banenrbox */

.bannerbox-pagin2 {
    position: absolute;
    z-index: 45;
    top: 50%;
    right: 10%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.bannerbox-pagin2 .f_pag1 {
    width: 2px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.bannerbox-pagin2 .f_pag1 i {
    display: block;
    width: 100%;
    height: 0%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.bannerbox-pagin2 span,
.bannerbox-pagin2 strong {
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    display: block;
    font-size: 16px;
    opacity: 0.5;
}

.bannerbox-pagin2 span {
    margin-bottom: 22px;
}

.bannerbox-pagin2 strong {
    margin-top: 22px;
}


/* End */

.fixdright {
    position: fixed;
    z-index: 1202;
    right: 16px;
    bottom: 60px;
    display: none;
    flex-direction: column;
    align-items: flex-end;
}

.fixdright .lt {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.fixdright a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.fixdright a i {
    display: block;
    width: 18px;
}

.fixdright a i img {
    width: 100%;
    float: left;
}

.fixdright a i img:nth-child(2) {
    display: none;
}

.fixdright a .font {
    display: none;
}

.fixdright .top {
    margin-top: 20px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transform: translateX(600%);
    transform: translateX(600%);
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
}

.fixdright .top.on {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.fixdright .top {
    background-color: #0f4b81;
}

.fixdright .top i img:nth-child(1) {
    display: none;
}

.fixdright .top i img:nth-child(2) {
    display: block;
}

.fixdright .zi {
    width: 50px;
    height: 50px;
    background-color: #0f4b81;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.fixdright .zi i {}

.fixdright .zi span {
    color: #fff;
    font-size: 14px;
    display: none;
    line-height: 1;
    margin-left: 10px;
}

.fixdright .zi:hover {
    width: 165px;
}

.fixdright .zi:hover span {
    display: block;
}

.fixdright .tel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #0f4b81;
    overflow: hidden;
    border-radius: 30px;
    margin-bottom: 20px;
    /* 	-webkit-transition: all .3s linear;
	transition: all .3s linear; */
}

.fixdright .tel i img:nth-child(1) {
    display: none;
}

.fixdright .tel i img:nth-child(2) {
    display: block;
}

.fixdright .tel .font {
    display: none;
    font-size: 16px;
}

.fixdright .tel:hover {
    width: 240px;
    border-radius: 30px;
    color: #fff;
}

.fixdright .tel:hover .font {
    display: block;
    color: #fff;
    margin-right: 16px;
}

.fixdright .tel:hover i img:nth-child(2) {
    display: block;
}

.fixdright .tel:hover i img:nth-child(1) {
    display: none;
}

@media (max-width:767px) {
    .fixdright {
        bottom: 20px;
        flex-direction: row-reverse;
        display: none!important;
    }
    .fixdright .top {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        margin-bottom: 0;
        margin-top: 20px;
    }
    .fixdright .zi {
        margin-right: 20px;
        width: 120px;
        height: 42px;
        position: fixed;
        right: 0;
        left: 0;
        margin: 0 auto;
    }
}

.base100 {
    padding: 100px 0;
}

@media (max-width: 1440px) {
    .base100 {
        padding: 80px 0;
    }
}

@media (max-width: 1199px) {
    .base100 {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .base100 {
        padding: 40px 0;
    }
}

.about-he {
    padding-top: 0;
}

.about-he .tit {
    text-align: center;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 70px;
    font-weight: bold;
    color: #333;
}

.about-he .tit strong {
    display: block;
    font-size: 48px;
    font-weight: bold;
    display: block;
    line-height: inherit;
    margin-bottom: 16px;
}

@media (max-width: 1199px) {
    .about-he .tit strong {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .about-he .tit strong {
        font-size: 30px;
    }
}

.about-he .tit span {
    font-size: 36px;
    color: #666;
    font-weight: 500;
    display: block;
}

@media (max-width: 1199px) {
    .about-he .tit span {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .about-he .tit span {
        font-size: 24px;
    }
}

.about-he .cont {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    justify-content: space-between;
}

.about-he .item {
    width: 49%;
    background-color: #f5f5f5;
    padding: 52px 52px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-he .item .f_tit {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 16px;
}

.about-he .item span {
    font-size: 16px;
    color: #333;
    opacity: .5;
    display: block;
    line-height: 26px;
    display: block;
    margin-bottom: 56px;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    opacity: 0;
}

.about-he .item strong {
    font-size: 36px;
    opacity: .2;
    color: #333;
}

.about-he .item .gt {
    height: 94px;
}

.about-he .item .lt {
    width: 80%;
}

.about-he .item .gt img {
    height: 100%;
}


/* .about-he .item .gt img:nth-child(2){
	display: none;
} */

@media (max-widt: 1440px) {
    .about-he .tit {
        margin-bottom: 50px;
    }
    .about-he .item {
        padding: 60px 32px;
    }
    .about-he .item .f_tit,
    .about-he .item strong {
        font-size: 30px;
        line-height: 40px;
    }
    .about-he .item span {
        margin-bottom: 40px;
    }
    .about-he .item .gt {
        height: 70px;
    }
}

@media (max-width: 1199px) {
    .about-he .tit {
        font-size: 40px;
        margin-bottom: 30px;
    }
    .about-he .item {
        padding: 40px 22px;
    }
    .about-he .item span {
        margin-bottom: 36px;
    }
    .about-he .item .gt {
        height: 60px;
    }
    .about-he .item .f_tit,
    .about-he .item strong {
        font-size: 26px;
        line-height: 36px;
    }
}

@media (max-width: 991px) {
    .about-he .item .gt {
        display: none;
    }
}

@media (max-width: 767px) {
    .about-he .item {
        width: 100%;
        margin-bottom: 20px;
    }
    .about-he .item span {
        margin-bottom: 26px;
        opacity: 1;
    }
    .about-he .item .gt {
        display: none;
    }
    .about-he .item .lt {
        width: 100%;
    }
    .about-he .item .f_tit,
    .about-he .item strong {
        font-size: 20px;
        line-height: 30px;
    }
}

@media (max-width: 575px) {
    .about-he .tit {
        font-size: 30px;
    }
    .about-he .item:last-child {
        margin-bottom: 0;
    }
}

.about-he .item:hover {
    background: url(../images/wobag1.jpg) no-repeat center / 100% 100%;
}

.about-he .item:hover .f_tit,
.about-he .item:hover span,
.about-he .item:hover strong {
    color: #fff;
}

.about-he .item:hover .gt img:nth-child(1) {
    display: none;
}

.about-he .item:hover .gt img:nth-child(2) {
    display: block;
}

.about-he .item:hover .lt span {
    opacity: 1;
}


/* 发展历程 */

.about-li {
    background-color: #fafafa;
}

.about-li .tit {
    text-align: center;
    font-size: 36px;
    color: #333;
    font-weight: bold;
}

@media (max-width: 1199px) {
    .about-li .tit {
        font-size: 30px;
    }
}

.about-li .cont {
    width: 100%;
}

.about-li .cont .about-li-cnt {
    border-bottom: 1px solid #ddd;
    z-index: 1;
}

.about-li .cont .about-li-cnt .item {
    position: relative;
    width: 100%;
    padding: 104px 0;
}

@media (max-width: 1440px) {
    .about-li .cont .about-li-cnt .item {
        padding: 80px 0;
    }
}

@media (max-width: 1199px) {
    .about-li .cont .about-li-cnt .item {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .about-li .cont .about-li-cnt .item {
        padding: 40px 0;
    }
}

@media (max-width: 575px) {
    .about-li .cont .about-li-cnt .item {
        padding: 20px 0;
    }
}

.about-li .cont .about-li-cnt .item>span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    line-height: 1;
    font-size: 300px;
    color: #f3f3f3;
    font-weight: bold;
    font-family: "arial";
}

@media (max-width: 1199px) {
    .about-li .cont .about-li-cnt .item>span {
        font-size: 240px;
    }
}

@media (max-width: 767px) {
    .about-li .cont .about-li-cnt .item>span {
        font-size: 200px;
    }
}

@media (max-width: 575px) {
    .about-li .cont .about-li-cnt .item>span {
        font-size: 160px;
    }
}

@media (max-width: 376px) {
    .about-li .cont .about-li-cnt .item>span {
        font-size: 120px;
    }
}

.about-li .cont .about-li-cnt .item .text {
    width: 50%;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    font-size: 16px;
    line-height: 30px;
    color: #666;
}

@media (max-width: 1440px) {
    .about-li .cont .about-li-cnt .item .text {
        width: 60%;
    }
}

@media (max-width: 991px) {
    .about-li .cont .about-li-cnt .item .text {
        width: 100%;
    }
}

.about-li .cont .about-li-cnt .about-li-next,
.about-li .cont .about-li-cnt .about-li-prev {
    width: 68px;
    height: 68px;
    background: none;
    outline: none;
    pointer-events: auto;
}

.about-li .cont .about-li-cnt .about-li-next {
    background: url(../images/yuangt1.png) no-repeat center / 100% 100%;
}

.about-li .cont .about-li-cnt .about-li-next:hover {
    background: url(../images/yuangt1.png) no-repeat center / 100% 100%;
}

.about-li .cont .about-li-cnt .about-li-prev {
    background: url(../images/yuanlt1.png) no-repeat center / 100% 100%;
}

.about-li .cont .about-li-cnt .about-li-prev:hover {
    background: url(../images/yuanlt1.png) no-repeat center / 100% 100%;
}

.about-li .cont .about-li-nav {
    z-index: 2;
    margin-top: -2px;
    max-width: 100%;
    margin: -2px auto 0;
}

.about-zizhi .cont {
    position: relative;
}

.about-zizhi .about-zi-pag {
    width: 100%;
    bottom: -40px;
}

.about-zizhi .about-zi-pag span {
    margin: 0 4px;
}

.about-zizhi .about-zi-prev,
.about-zizhi .about-zi-next {
    width: 68px;
    height: 68px;
    background: none;
    outline: none;
    pointer-events: auto;
}

.about-zizhi .about-zi-next {
    right: -100px;
    background: url(../images/yuangt.png) no-repeat center / 100% 100%;
}

.about-zizhi .about-zi-prev {
    left: -100px;
    background: url(../images/yuanlt.png) no-repeat center / 100% 100%;
}

.about-zizhi .about-zi-prev:hover {
    background: url(../images/yuanlt1.png) no-repeat center / 100% 100%;
}

.about-zizhi .about-zi-next:hover {
    background: url(../images/yuangt1.png) no-repeat center / 100% 100%;
}

.about-zizhi .tit span {
    display: block;
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

.about-zizhi .tit {
    margin-bottom: 52px;
}

.about-zizhi .tit strong {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: inherit;
}

.about-zi-cnt {
    width: 100%;
}

.about-zi-cnt .item {
    width: 100%;
    padding-top: 20px;
    background-color: #f5f5f5;
    cursor: pointer;
}

.about-zi-cnt .item .img {
    position: relative;
    padding-bottom: 58%;
    overflow: hidden;
}

.about-zi-cnt .item .img img {
    height: 100%;
    float: left;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.about-zi-cnt .item .text {
    width: 100%;
    text-align: center;
    font-size: 20px;
    padding: 20px 0;
}

@media (max-width: 1199px) {
    .about-zizhi .tit {
        margin-bottom: 45px;
    }
}

@media (max-width: 767px) {
    .about-zizhi .tit {
        margin-bottom: 30px;
    }
    .about-zi-cnt .item .text {
        font-size: 16px;
    }
    .about-li .cont .about-li-nav {
        width: 100%;
    }
}

.about-li .cont .about-li-nav .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    margin-right: 10px;
}

.about-li .cont .about-li-nav a {
    display: inline-block;
    padding-top: 35px;
    border-top: 2px solid transparent;
    font-size: 16px;
    color: #333;
}

@media (max-width: 1199px) {
    .about-li .cont .about-li-nav a {
        padding-top: 26px;
    }
    .about-li .cont .about-li-cnt .about-li-next,
    .about-li .cont .about-li-cnt .about-li-prev {
        display: none;
    }
}

.about-li .cont .about-li-nav .on a {
    border-top-color: #0f4b81;
}


/* End */


/* 下拉 */

.menuhover {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    padding: 40px 0;
    z-index: 666;
    width: 100%;
    display: none;
    border-top: 1px solid #ddd;
}

.menuhover .basecont {
    display: flex;
    justify-content: space-between;
    justify-content: flex-end;
}

.menuhover .basecont .lt,
.menuhover .basecont .gt {
    width: 50%;
}

.menuhover .basecont .lt {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.menuhover .basecont .lt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.menuhover .basecont .gt {
    padding: 40px 58px;
    position: relative;
    z-index: 2;
    /* width: 100%; */
    background-color: rgba(15, 75, 129, .5);
}

@media (max-width: 1440px) {
    .menuhover .basecont .gt {
        padding: 26px 38px;
    }
}

.menuhover .basecont .gt .tit {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    display: block;
    margin-bottom: 56px;
}

@media (max-width: 1440px) {
    .menuhover .basecont .gt .tit {
        margin-bottom: 30px;
    }
}

.menuhover .basecont .gt .cont {
    display: flex;
    justify-content: space-between;
}

.menuhover .basecont .gt .cont .jut {
    width: 50%;
    border-right: 1px solid rgba(255, 255, 255, .5);
    margin-right: 40px;
}

.menuhover .basecont .gt .cont .jut:last-child {
    border-right: none;
    padding-left: 56px;
}

@media (max-width: 1440px) {
    .menuhover .basecont .gt .cont .jut:last-child {
        padding-left: 30px;
    }
}

.menuhover .basecont .gt .cont .jut .h1 {
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    margin-bottom: 26px;
}

.menuhover .basecont .gt .cont .jut .list {
    padding-bottom: 4px;
}

.menuhover .basecont .gt .cont .jut .list a {
    display: block;
    margin-bottom: 26px;
    line-height: 1;
    font-size: 16px;
    color: #fff;
    opacity: .7;
}

.menuhover .basecont .gt .cont .jut .list a:last-child {
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .menuhover {
        display: none!important;
    }
}


/* .menuhover .basecont .gt .cont .jut .h1:hover{
	color: #0f4b81;
} */

.menuhover .basecont .gt .cont .jut .list a:hover {
    opacity: 1;
}


/* End */

.basefixedimg {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    overflow: hidden;
}

.basefixedimg:after {
    content: "";
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-color: rgba(15, 75, 129, .2);
}

.basefixedimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1199px) {
    .basefixedimg img {
        width: 120vw;
        /* transform: translateX(-16%); */
    }
}

.basepo1 {
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.basepo2 {
    position: relative;
    z-index: 2;
}

.mobolebox {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 999;
    background-color: #0f4b81;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    padding: 0 20px;
}

.lefttran {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.mobolebox .nav1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    margin-bottom: 20px;
}

.mobolebox .nav1 .lt {
    width: 180px;
}

.mobolebox .nav1 .lt img {
    width: 100%;
}

.mobolebox .nav1 .gt {
    width: 20px;
}

.mobolebox .nav1 .gt img {
    width: 100%;
}

.phonemenu1 {
    width: 100%;
}

.phonemenu1 .basecont {
    padding: 0;
    max-width: 100%;
    width: 100%;
}

.phonemenu1 li {
    width: 100%;
    padding: 20px 0;
    font-size: 16px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.phonemenu1 li:last-child {
    border-bottom: none;
}

.phonemenu1 li .tit {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phonemenu1 li .tit.en {
    display: flex;
    align-items: center;
}

.phonemenu1 li .tit.en img {
    margin-right: 16px;
    width: 48px;
}

.phonemenu1 li.active i {
    -webkit-transform: translate(180deg);
    transform: translate(180deg);
}

.phonemenu1 li .tit a {
    color: #fff;
}

.phonemenu1 li .tit i {
    width: 16px;
    display: block;
}

.phonemenu1 li .tit i img {
    width: 100%;
    ]
}

.phonemenu1 li .cont {
    display: none;
}

.phonemenu1 li .cont .jut {
    width: 100%;
    margin-top: 20px;
}

.phonemenu1 li .cont .jut .h1 {
    text-indent: .8em;
    font-size: 16px;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 20px;
}

.phonemenu1 li .cont .jut .list {
    width: 100%;
    text-indent: 1.2em;
}

.phonemenu1 li .cont .jut .list a {
    font-size: 12px;
    color: #fff;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.phonemenu1 .font {
    color: #fff;
    margin-top: 30px;
}

.phonemenu1 .font strong {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 15px;
    display: block;
}

.phonemenu1 .font p {
    opacity: .5;
    font-size: 14px;
    line-height: 1;
}

@media (max-width: 575px) {
    .mobolebox .nav1 .lt {
        width: 140px;
    }
    .phonemenu1 li .tit.en img {
        margin-right: 10px;
    }
    .phonemenu1 li .tit.en img {
        width: 23px;
    }
}

.f_fixed {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}

.yinbot1 {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 30px;
    z-index: 16;
    -webkit-animation: xia 0.5s linear infinite alternate;
    animation: xia 0.5s linear infinite alternate;
}

.yinbot1 img {
    width: 100%;
}

@-webkit-keyframes xia {
    0% {
        -webkit-transform: translateY(-60%);
        transform: translateY(-60%);
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@keyframes xia {
    0% {
        -webkit-transform: translateY(-60%);
        transform: translateY(-60%);
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

.liubox {
    padding-top: 0;
}

.liubox .item .f_tit {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-top: 20px;
}

.liubox .swiper-slide {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: .6;
}

.liubox .swiper-slide-active {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.liubox .item .text {
    padding: 10px 20px;
    color: #666;
    padding-bottom: 30px;
    font-size: 16px;
}

@media (max-width: 767px) {
    .liubox-prev,
    .liubox-next {
        display: none;
    }
}