:root {
    --max: 1350px;
    --size14: 14px;
    --size16: 16px;
    --size18: 18px;
    --size20: 20px;
    --size24: 24px;
    --size30: 30px;
    --size36: 36px;
    --size40: 40px;
    --size46: 46px;
    --size50: 50px;
    --size56: 56px;
    --size60: 60px;

    --top20: 20px;
    --top30: 30px;
    --top50: 50px;
    --top60: 60px;
    --top100: 100px;
    --top120: 120px;
}

@font-face {
    font-family: "siyuanheiti";
    src: url("../fonts/siyuanheiti.otf") format("truetype");
}

@font-face {
    font-family: "bold";
    src: url("../fonts/Bold.otf") format("truetype");
}

body {
    font-family: "siyuanheiti";
    padding-top: 110px;
}

.index{
    padding-top: 0px;
}
.hertre {
    width: 100%;
    z-index: 999;
    height: 110px;
    position: fixed;
    background: #fff;
    top: 0;
    box-shadow: 0px 0px 15px 5px #00000020;
}

.hertre_cen {
    width: calc(100% - 150px);
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.logo {
    width: 400px;
    overflow: hidden;

}

.logo img {
    width: 100%;
    height: auto;
}

.nav {
    width: max-content;
}

.nav ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.nav ul li {
    font-size: var(--size18);
    color: #222222;
    text-align: center;
    position: relative;
    margin-left: 30px;
    line-height: 110px;
}

.nav ul li svg {
    width: 16px;
    height: 16px;
    fill: #030000;
    display: none;
}


.nav ul li.nav_cen {
    color: #1d2088
}

.nav ul li:hover {
    color: #1d2088;
}

.nav ul li::after {
    content: "";
    width: 0%;
    height: 3px;
    background: #1d2088;
    position: absolute;
    bottom: 30px;
    left: 0%;
    transition: all 0.3s;
}

.nav ul li.nav_cen::after {
    width: 100%;
}

.nav ul li:hover::after {
    width: 100%;
}

.nav_ul {
    width: max-content;
    min-width: 130px;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 10px;  
    padding: 10px 20px;  
    filter: drop-shadow(0px 0px 5px #00000020);
    display: none;
    transition: auto;
    z-index: 999;
}
.nav_ul::after{
    content: "";
    width: 0px;
    height: 0px;
    border-bottom: 10px solid #ffffff;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.nav_ul a{
    display: block;
    font-size: var(--size16);
    color: #000000;
    line-height: 2.5;
    text-align: left;
}
.nav_ul a:hover{
    color: #132a87;
}
.nav_ul a.nav_nax{
    color: #132a87;
}
.an {
    width: 60px;
    height: 60px;
    display: none;
    position: absolute;
    right: 0%;
    top: 0;
    transition: all 0.5s;
    z-index: 99;
}

.container {
    cursor: pointer;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.5s;
}

.container svg {
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.active svg {
    transform: rotate(90deg);
}

.container path {
    stroke: #000000;
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dasharray 500ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.container path:nth-child(1) {
    transform-origin: 36% 40%;
}

.container path:nth-child(2) {
    stroke-dasharray: 29 299;
}

.container path:nth-child(3) {
    transform-origin: 35% 63%;
}

.container path:nth-child(4) {
    stroke-dasharray: 29 299;
}

.container path:nth-child(5) {
    transform-origin: 61% 52%;
}

.container path:nth-child(6) {
    transform-origin: 62% 52%;
}

.active path:nth-child(1) {
    transform: translateX(9px) translateY(1px) rotate(45deg);
}

.active path:nth-child(2) {
    stroke-dasharray: 225 299;
    stroke-dashoffset: -72px;
}

.active path:nth-child(3) {
    transform: translateX(9px) translateY(1px) rotate(-45deg);
}

.active path:nth-child(4) {
    stroke-dasharray: 225 299;
    stroke-dashoffset: -72px;
}

.active path:nth-child(5) {
    transform: translateX(9px) translateY(1px) rotate(-45deg);
}

.active path:nth-child(6) {
    transform: translateX(9px) translateY(1px) rotate(45deg);
}

.banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 200px;
}


.banner_text {
    width: var(--max);
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner_text span {
    font-size: var(--size30);
    color: rgb(255, 255, 255, 0.6);
    text-align: center;
    display: block;
    text-transform: uppercase;
    line-height: 1;
}

.banner_text p {
    text-align: center;
    font-size: var(--size60);
    color: #ffffff;
    font-family: 'bold';
    line-height: 1;
    margin-top: 15px;
}

.banner_text h1 {
    text-align: center;
    margin-top: var(--top50);
    font-size: var(--size36);
    color: #ffffff;
    line-height: 1;
}

.max {
    width: var(--max);
    margin: var(--top60) auto;
}

.gg {
    width: 100%;
    overflow: hidden;
}

.gg p {
    font-size: var(--size20);
    color: #1d2088;
    line-height: 1;
    text-transform: uppercase;
}

.gg h2 {
    font-size: var(--size36);
    color: #393939;
    line-height: 1;
    margin-top: 10px;
}

.gg_cen {
    width: 100%;
    overflow: hidden;
}

.gg_cen h2 {
    font-size: var(--size36);
    color: #1d2088;
    line-height: 1;
    text-align: center;
}

.gg_cen p {
    font-size: var(--size20);
    color: #909090;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    margin-top: var(--top20);
}

.lianxi {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--top50);
}

.lianxi_lift {
    width: 440px;
    overflow: hidden;
}

.lianxi_lift h2 {
    font-size: var(--size24);
    color: #222222;
    font-family: 'bold';
}

.lianxi_lift h2::after {
    content: "";
    width: 26px;
    height: 2px;
    background: #1d2088;
    display: block;
    margin-top: var(--top20);
}

.lianxi_text {
    width: 100%;
    overflow: hidden;
    font-size: var(--size16);
    color: #222222;
    line-height: 2;
    margin-top: var(--top20);
}

.lianxi_lift ul {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    margin-top: 8vw;
}

.lianxi_lift ul li {
    width: 30%;
    overflow: hidden;
    margin-left: 2vw;
}

.lianxi_lift ul li img {
    width: 100%;
    height: auto;
}

.lianxi_lift ul li p {
    text-align: center;
    font-size: var(--size16);
    color: #444444;
    margin-top: 10px;
}

#allmap {
    width: calc(100% - 440px);
    height: 600px;
}

#allmap div,
#allmap img {
    transition: auto;
}

.BMap_bubble_content p {
    font-size: 12px;
    line-height: 22px;
}

.about {
    width: var(--max);
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0px 0px 20px -5px #00000030;
    margin: auto;
    position: relative;
    z-index: 2;
    margin-top: -40px;
}

.about_ding {
    position: sticky;
    top: 110px;
    z-index: 99;
}

.about ul {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about ul li {
    font-size: var(--size18);
    color: #333333;
    line-height: 80px;
    position: relative;
    font-family: 'bold';
    margin-left: 3vw;
    cursor: pointer;
}

.about ul li.nav_cen {
    color: #122a89
}

.about ul li:hover {
    color: #122a89;
}

.about ul li::after {
    content: "";
    width: 0%;
    height: 2px;
    background: #122a89;
    position: absolute;
    bottom: 0px;
    left: 0%;
    transition: all 0.3s;
}

.about ul li.nav_cen::after {
    width: 100%;
}

.about ul li:hover::after {
    width: 100%;
}

.xunhuan {
    width: 100%;
    overflow: hidden;
}

.xunhuan_list {
    width: 100%;
    margin: var(--top120) auto;
}

.fuwushang {
    width: var(--max);
    overflow: hidden;
    margin: auto;
}

.fuwushang_top {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}

.fuwushang_l {
    width: max-content;
}

.fuwushang_l h2 {
    font-size: var(--size40);
    color: #1d2088;
    line-height: 1;

}

.fuwushang_l p {
    font-size: var(--size20);
    color: #909090;
    line-height: 1;
    text-transform: uppercase;
    margin-top: var(--top20);
}

.fuwushang_top ul {
    width: max-content;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.fuwushang_top ul li {
    width: max-content;
    overflow: hidden;
    margin-left: 3.5vw;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.fuwushang_top ul li p {
    font-size: var(--size60);
    color: #1d2088;
    font-family: 'bold';
    line-height: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.fuwushang_top ul li p span {
    font-size: 20px;
}

.fuwushang_top ul li h2 {
    font-size: var(--size18);
    color: #180636;
    margin-left: 5px;
}

.fuwushang_text {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top120);
    border-top: 1px solid #e7e7e7;
    padding-top: var(--top120);
    font-size: var(--size16);
    color: #333333;
    line-height: 2;
}

.fuwushang>img {
    width: 100%;
    height: auto;
    margin-top: var(--top60)
}

.wenhua {
    width: var(--max);
    overflow: hidden;
    margin: auto;
}

.wenhua_max {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top60);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.wenhua_max img {
    width: 42%;
    height: auto;
}

.wenhua_max ul {
    width: 42%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top60);
}

.wenhua_max ul li {
    width: 100%;
    overflow: hidden;
}

.wenhua_max ul li h2 {
    font-size: var(--size24);
    color: #2c4ddc;
}

.wenhua_text {
    font-size: var(--size14);
    color: #444444;
    line-height: 1.5;
    margin-top: var(--top20);
}

.zizhi {
    width: 100%;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.zizhi_max {
    width: 100%;
    overflow: hidden;
    margin: var(--top100) auto;
}

.zizhi_swiper {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top100);
}

.zizhi_swiper .swiper-slide {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zizhi_swiper .swiper-slide img {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    box-shadow: 0px 0px 15px 5px #00000010;
}

.next {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top30);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.next .swiper-button-next,
.next .swiper-button-prev {
    position: static;
    inset: 0;
    margin: 0;
    width: 56px;
    height: auto;
}

.next .swiper-button-next img,
.next .swiper-button-prev img {
    width: 100%;
    height: auto;
}

.next .swiper-button-next:after,
.next .swiper-button-prev:after {
    display: none;

}

.rencai {
    width: var(--max);
    overflow: hidden;
    margin: auto;
}

.rencai ul {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top60);
    display: flex;
    flex-wrap: wrap;
    gap: var(--top60);
}

.rencai ul li {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.rencai ul li img {
    width: 40%;
    height: auto;
}

.rencai ul li:nth-child(2n+1) {
    flex-direction: row-reverse;
}

.rencai_r {
    width: 50%;
    overflow: hidden;
}

.rencai_r h2 {
    font-size: var(--size30);
    color: #132a87;
    font-family: 'bold';
}

.remcai_text {
    font-size: var(--size18);
    color: #444444;
    line-height: 2;
    margin-top: var(--top30);
}

.fazhan {
    width: var(--max);
    margin: auto;
}

.fazhan_max {
    width: 100%;
    background-image: url(../images/neijing_03.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: var(--top120);
    position: relative;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fazhan_max>img {
    width: 100%;
    height: auto;
}

.fazhan_max ul {
    width: 100%;
}

.fazhan_max ul li {
    width: 160px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    position: absolute;
}

.fazhan_max ul li:nth-child(2n) {
    flex-direction: column-reverse;
}

.fazhan_max ul li h2 {
    width: 100%;
    font-size: var(--size24);
    color: #393939;
    font-family: 'bold';
    text-align: center;
}

.fazhan_text {
    width: 100%;
    font-size: var(--size14);
    color: #888888;
    line-height: 1.3;
    margin: 5px 0;
    text-align: center;
}

.fazhan_text img {
    width: 100%;
    height: auto;
}

.fazhan_max ul li:nth-child(1) {
    bottom: -8%;
    left: 3%;
}

.fazhan_max ul li:nth-child(2) {
    top: 11%;
    left: 11.5%;
}

.fazhan_max ul li:nth-child(3) {
    bottom: 6%;
    left: 23%;
}

.fazhan_max ul li:nth-child(4) {
    top: 5%;
    left: 34%;
}

.fazhan_max ul li:nth-child(5) {
    bottom: -2%;
    left: 44%;
}

.fazhan_max ul li:nth-child(6) {
    top: -14%;
    left: 53%;
}

.fazhan_max ul li:nth-child(7) {
    bottom: 33%;
    left: 64%;
}

.fazhan_max ul li:nth-child(8) {
    top: 6%;
    left: 75%;
}

.fazhan_max ul li:nth-child(9) {
    bottom: 31%;
    right: 4%;
}

.zhaopin {
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto;
}

.zhaopin ul {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top60);
}

.zhaopin ul li {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
    padding: var(--top20);
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.zhaopin_l {
    width: 76px;
    height: 76px;
    background: #fafafa;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.zhaopin_l h2 {
    font-size: var(--size24);
    color: #666666;
    font-family: 'bold';
    line-height: 1;
    width: 100%;
    text-align: center;
}

.zhaopin_l p {
    width: 100%;
    font-size: var(--size14);
    color: #666666;
    text-align: center;
    margin-top: 10px;
}

.zhaopin_c {
    width: calc(100% - 200px);
    overflow: hidden;
}

.zhaopin_c h2 {
    font-size: var(--size20);
    color: #020202;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.zhaopin_c p {
    font-size: var(--size16);
    color: #666666;
    line-height: 1.5;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.zhaopin ul li a {
    width: 96px;
    line-height: 36px;
    background: #1d2088;
    display: block;
    text-align: center;
    color: #ffffff;
    font-size: var(--size14);
}

.hezuo {
    width: var(--max);
    margin: var(--top60) auto;
}

.hezuo ul {
    width: 100%;
    margin-top: var(--top60);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top30);
}

.hezuo ul li {
    width: 100%;
    overflow: hidden;
    padding: var(--top30) var(--top50);
    border-radius: 10px;
    box-shadow: 0px 0px 15px 2px #00000020;
}

.hezuo ul li img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hezuo ul li h2 {
    font-size: var(--size24);
    color: #222222;
    font-family: 'bold';
    text-align: center;
    margin-top: var(--top30);
}

.xinwen {
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto;
}

.xinwen ul {
    width: 100%;
    overflow: hidden;
}

.xinwen ul li {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eeeeee;
}

.xinwen ul li:hover {
    padding-left: 20px;
}

.xinwen ul li img {
    width: 270px;
    height: auto;
}

.xinwen_r {
    width: calc(100% - 290px);
    overflow: hidden;
}

.xinwen_r h2 {
    font-size: var(--size20);
    color: #020202;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.xinwen_r span {
    display: block;
    font-size: 12px;
    color: #375efb;
    margin-top: 15px;
}

.xinwen_r p {
    font-size: var(--size18);
    color: #666666;
    line-height: 1.5;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.xinwen_r a {
    display: block;
    font-size: var(--size14);
    color: #375efb;
    margin-top: 15px;
}

.chanpin {
    width: var(--max);
    margin: var(--top60) auto;
}

.chanpin ul {
    width: 100%;
    margin-top: var(--top60);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top30);
}

.chanpin ul li {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 3px #00000010;
}

.chanpin ul li img {
    width: 100%;
    height: auto;
}

.chanpin_c {
    width: 100%;
    overflow: hidden;
    padding: var(--top20);
}

.chanpin_c>h2 {
    text-align: center;
    font-size: var(--size24);
    color: #222222;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-family: 'bold';
}

.chanpin_c>p {
    text-align: center;
    font-size: var(--size14);
    color: #666666;
    line-height: 1.5;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.chanpin ul li:hover {
    box-shadow: 0px 0px 15px 3px #00000050;
}
.chanpin ul li:hover .chanpin_c>h2{
    color: #1d2088;
}

.shwo {
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto;
}

.shwo>h2 {
    font-size: var(--size24);
    color: #222222;
}

.shwo>p {
    font-size: 12px;
    color: #888888;
    text-align: right;
    margin-top: var(--top20);
}

.shwo_text {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: var(--top30) 0;
    margin-top: var(--top30);
    font-size: var(--size14);
    color: #222222;
    line-height: 2;
}

.shwo_text img {
    max-width: 100%;
    height: auto;
    margin: auto;
}

.prev {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top30);
}

.prev a {
    display: block;
    width: 100%;
    overflow: hidden;
    font-size: var(--size14);
    color: #222222;
    line-height: 2;
}

.page {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--top30);
}

.page .active,
.page .total {
    font-size: 12px;
    padding: 6px 8px;
    color: #000000;
    border: 1px solid #d9d9d9;
    margin: 0px 3px;
    line-height: 1;
}

.page .active {
    background: #132a87;
    border: 1px solid #132a87;
    color: #fff;
}

.page .active:nth-child(1),
.page .active:nth-child(2),
.page .active:nth-child(3),
.page .total:nth-child(1),
.page .total:nth-child(2),
.page .total:nth-child(3),
.page .total:nth-last-child(2),
.page .active:nth-last-child(2),
.page .active:last-child,
.page .total:last-child {
    color: #000000;
    border: 1px solid #d9d9d9;
    background: #fff;
}
.pageSwier {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding-top: 110px;
    position: relative;
}
.pageSwier .swiper-slide {
    height: 100%;
}
.foot-out {
    height: auto !important;
}
.fenyeqi {
    right: 30px !important;
}
.fenyeqi  .swiper-pagination-bullet{
    width: 14px;
    height: 14px;
    background: #b6b6b6;
    border-radius: 14px;
    opacity: 1;
    margin: 10px 0 !important;
    position: relative;
}

.fenyeqi .swiper-pagination-bullet font{
    position: absolute;
    width: max-content;
    display: block;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 0px 15px 2px #00000020;
    padding: 0 10px;
    line-height: 24px;
    font-size: 12px;
    color: #000000;
    transform-origin: right center;
}
.fenyeqi .swiper-pagination-bullet:hover font{
    transform: translateY(-50%) scale(1);
}
.fenyeqi .swiper-pagination-bullet-active{
    height: 40px;
    background: #1d2088;
}
.banner_swiper{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.banner_swiper svg{
    width: 40px;
    height: auto;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateY(-50%) rotate(-90deg);
    z-index: 99;
}
.banner_swiper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.guanyui{
    width: 1740px;
    max-width: calc(100% - 15px);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.guanyui>img{
    width: 50%;
    height: auto;
}
.guanyui_r{
    width: 50%;
    margin-top: var(--top100);
    padding-left: 5vw;
}
.guanyui_r>span{
    text-align: right;
    display: block;
    font-size: var(--size24);
    color: #444444;
    text-transform: uppercase;
}
.guanyui_r.span font{
    color: #1d2088;
    margin-right: 10px;
}
.guanyui_r>p{
    font-size: var(--size30);
    color: #1d2088;
    line-height: 1;
    margin-top: var(--top60);
    line-height: 1;
    text-transform: uppercase;
    text-align: right;
}

.guanyui_r>h1{
    font-size: var(--size50);
    color: #000000;
    line-height: 1;
    margin-top: var(--top20);
    line-height: 1;
    text-align: right;
}
.guanyui_text{
    width: 100%;
    overflow: hidden;
    margin-top: var(--top60);
    font-size: var(--size20);
    color: #180636;
    line-height: 1.5;
}
.guanyui_r ul {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: var(--top60);
}

.guanyui_r ul li {
    width: max-content;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.guanyui_r ul li p {
    font-size: var(--size60);
    color: #1d2088;
    font-family: 'bold';
    line-height: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.guanyui_r ul li p span {
    font-size: 20px;
}

.guanyui_r ul li h2 {
    font-size: var(--size18);
    color: #180636;
    margin-left: 5px;
}
.chanpimi{
    width: 100%;
    height: 100%;
    position: relative;
}
.chanpimi ul{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.chanpimi ul li{
    width: 25%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.chanpimi ul li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.chanpimi ul li::after{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,#00000090,#00000010);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.chanpimi_max{
    width: 100%;
    overflow: hidden;
    position: absolute;
    min-height: 300px;
    bottom: 0;
    padding: 0 20px;
    z-index: 3;
}
.chanpimi_max h1{
    font-size: var(--size20);
    color: #ffffff;
    line-height: 1;
}
.chanpimi_max p{
    font-size: var(--size30);
    color: #ffffff;
    font-family: 'bold';
    line-height: 1;
    margin-top: var(--top20);
}
.chanpimi_max span{
    display: block;
    font-size: var(--size20);
    color: #ffffff;
    text-transform: uppercase;
    margin-top: var(--top20);
    line-height: 1;
}
.chanpimi_texi{
    width: 100%;
    overflow: hidden;
    position: absolute;
    bottom: 8vw;
    padding: 0 20px;
    z-index: 3;
    display: none;
}

.chanpimi_texi span{
    display: block;
    font-size: var(--size20);
    color: #ededed;
    text-transform: uppercase;
    line-height: 1;
}
.chanpimi_texi h2{
    font-size: var(--size30);
    color: #ffffff;
    line-height: 1;
    margin-top: var(--top20)
}
.chanpimi_texi p{
    font-size: var(--size20);
    color: #ffffff;
    line-height: 2;
    margin-top: var(--top50);
}
.chanpimi>span{
    text-align: right;
    display: block;
    font-size: var(--size24);
    color: #fff;
    text-transform: uppercase;
    position: absolute;
    top: var(--top60);
    right: var(--top60);
    z-index: 99;
}
.youshi{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: center;
}
.youshi_max{
    width: 1750px;
    max-width: calc(100% - 15px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.youshi_max>p{
    text-align: right;
    width: 100%;
    margin-bottom: 30px;
    font-size: var(--size24);
    color: #000000;
    text-transform: uppercase;
    padding-right: var(--top60);
}
.youshi_l{
    width: 500px;
    overflow: hidden;
}
.youshi_l span{
    font-size: var(--size30);
    color: #1d2088;
    text-transform: uppercase;
    line-height: 1;
}
.youshi_l h2{
    font-size: var(--size50);
    color: #000000;
    line-height: 1;
    margin-top: var(--top20);
}
.youshi_l p{
    font-size: var(--size20);
    color: #180636;
    line-height: 2;
    margin-top: var(--top60);
}
.youshi_Swiper{
    width: calc(100% - 600px);
    overflow: hidden;
    margin: 0 !important;
}
.youshi_Swiper .swiper-slide{
    width: 40%;
    overflow: hidden;
    border-radius: 5px;
    border: 8px solid #ffffff;
    position: relative;
    transition: all 0.3s;
}
.youshi_Swiper .swiper-slide-active{
    border: 8px solid #1d2088;
}
.youshi_Swiper .swiper-slide img{
    width: 100%;
    height: auto;
}
.youshi_text{
    width: 100%;
    overflow: hidden;
    padding:  0 var(--top20);
    position: absolute;
    left: 0;
    bottom: var(--top60);
}
.youshi_text h2{
    font-size: var(--size30);
    color: #ffffff;
    line-height: 1;
}
.youshi_text p{
    font-size: var(--size18);
    color: #ffffff;
    margin-top: 10px;
    text-transform: uppercase;
}
.hezuoim{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    position: relative;
}
.hezuoim>span{
    text-align: right;
    display: block;
    font-size: var(--size24);
    color: #000;
    text-transform: uppercase;
    position: absolute;
    top: var(--top60);
    right: var(--top60);
    z-index: 99;
}


.hezuoim_nax{
    width: 100%;
    overflow: hidden;
}
.hezuoim_nax h2{
    text-align: center;
    font-size: var(--size56);
    color: #000000;
    font-family: 'bold';
    line-height: 1;
    margin-top: var(--top20);
}
.hezuoim_nax p{
    text-align: center;
    font-size: var(--size30);
    color: #1d2088;
    font-family: 'bold';
    text-transform: uppercase;
    line-height: 1;
    
}
.hezuo_Swiper{
    width: 100%;
    overflow: hidden;
    margin-top: var(--top50);
}
.hezuo_Swiper .swiper-slide{
    width: 100%;
    overflow: hidden;
}
.hezuo_Swiper .swiper-slide img{
    width: 100%;
    height: auto;
}
.hezuo_Swiper .swiper-slide h2{
    font-size: var(--size30);
    color: #333333;
    font-family: 'bold';
    margin-top: var(--top50);
}
.hezuo_Swiper .swiper-slide p{
    font-size: var(--size16);
    color: #888888;
    margin-top: 10px;
    display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
overflow: hidden;
}
.fenlei{
    width: var(--max);
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--top60);
}
.fenlei .swiper-scrollbar{
    width: calc(100% - 100px) !important;
    position: static !important;
    margin: 0 !important;
    inset: 0 !important;
    background: #e8e8f3;
}
.fenlei  .swiper-scrollbar-drag{
    background: #1d2088 !important;
}
.fenlei .swiper-pagination{
    width: 100px;
    position: static;
    margin: 0;
    inset: 0;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    font-size: var(--size20);
    color: #888888;
    line-height: 1;
}
.fenlei .swiper-pagination .swiper-pagination-current{
    color: #1d2088;
    font-family: 'bold';
}
.xinwenim{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    position: relative;
}
.xinwenim_max{
    width: var(--max);
    overflow: hidden;
    position: relative;
}
.xinwenim>span{
    text-align: right;
    display: block;
    font-size: var(--size24);
    color: #000;
    text-transform: uppercase;
    position: absolute;
    top: var(--top60);
    right: var(--top60);
    z-index: 99;
}
.xinwenim .hezuoim_nax p,
.xinwenim .hezuoim_nax h2{
    text-align: left;
}
.xinwena_max{
    width: 100%;
    margin-top: var(--top60);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top30);
}
.xinwena_text{
    width: 100%;
    overflow: hidden;
    border: 1px solid #e2e2e2;
    background: #ffffff;
    border-radius: 10px;
    padding: var(--top30);
}
.xinwen_ppom{
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 2px solid #e7e8e9;
    padding-bottom: 15px;
}
.xinwen_ppom img{
    width: 30px;
    height: auto;
}
.xinwen_ppom h2{
    font-size: var(--size24);
    color: #132a87;
    font-family: 'bold';
    margin-left: 20px;
}
.xinwena_text ul{
    width: 100%;
    overflow: hidden;
}
.xinwena_text ul li{
    width: 100%;
    overflow: hidden;
    font-size: var(--size18);
    color: #444444;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin-top: var(--top30);
}
.xinwena_text>a{
    font-size: var(--size18);
    color: #132a87;
    margin-top: var(--top30);
    display: block;
    text-align: center;
}
.rexian{
    width: 100%;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.rexian_max{
    width: var(--max);
    overflow: hidden;
    margin: var(--top100) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.rexian_l{
    width: max-content;
    overflow: hidden;
}
.rexian_l h2{
    font-size: var(--size46);
    color: #ffffff;
    line-height: 1;
}
.rexian_l p{
    font-size: var(--size20);
    color: #ffffff;
    margin-top: var(--top20);
}
.rexian_l p span{
    color: #ff0000;
}
.rexian_r{
    width: max-content;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.rexian_r svg{
    width: 50px;
    height: auto;
}
.rexian_text{
    width: max-content;
    margin-left: 10px;
}
.rexian_text h2{
    font-size: var(--size30);
    color: #ffffff;
}
.rexian_text p{
    font-size: var(--size40);
    color: #ffffff;
    font-family: 'bold';
    line-height: 1;
}
.footer {
    width: 100%;
    overflow: hidden;
}
.footer_topa{
    width: var(--max);
    margin: var(--top20) auto;
}
.footer_topa img{
    width: 400px;
    height: auto;
}
.footer_cenyn{
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}
.footer_max {
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer_ul {
    width: max-content;
    overflow: hidden;
}

.footer_top {
    width: max-content;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer_top h2 {
    font-size: var(--size20);
    color: #222222;
    font-family: 'bold';
}

.footer_top svg {
    width: 14px;
    height: auto;
    display: none;
}

.footer_ul ul {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top20);
}

.footer_ul ul li {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: 10px;
}


.laixnia{
    width: max-content;
    overflow: hidden;
}
.MDN  ul{
    width: 100%;
}
.laixnia ul h2{
    font-size: var(--size20);
    color: #000000;
    font-family: 'bold';
}
.laixnia ul li{
    font-size: var(--size16);
    color: #222222;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.laixnia ul li img{
    width: 18px;
    height: auto;
}
.laixnia ul li p{
    width: calc(100% - 25px);
}
.laixnia ul li:nth-child(2) p{
    font-size: var(--size30);
    color: #222222;
    font-family: 'bold';
}
.laixnia ul li:nth-child(6) img{
    display: none;
}
.erweima ul {
    width: max-content;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.erweima ul li {
    width: 140px;
    overflow: hidden;
    margin-left: 2vw;
}

.erweima ul li img {
    width: 100%;
    height: auto;
}

.erweima ul li p {
    text-align: center;
    font-size: var(--size16);
    color: #444444;
    margin-top: 10px;
}





.beian {
    width: 100%;
    overflow: hidden;
}

.beian_max {
    width: var(--max);
    overflow: hidden;
    margin: var(--top20) auto;
}

.beian_max p {
    width: 100%;
    font-size: var(--size14);
    color: rgba(51, 51, 51, 1);
    margin: 5px 0;
    text-align: center;
}


.video{
    width: 100%;
    height: 100%;
}
.video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}




























