:root {
    --max: 1600px;
    --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;
    --top40: 40px;
    --top50: 50px;
    --top60: 60px;
    --top80: 80px;
    --top100: 100px;
    --top120: 120px;
}

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

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

body {
    font-family: "m";
    padding-top: 100px;
    background: rgb(249, 249, 249);
}

.Hertre {
    width: 100%;
    z-index: 990;
    height: 100px;
    position: fixed;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    background: #fff;
    box-shadow: 0px 0px 10px 5px #00000020;
}

.Hertre_cen {
    width: calc((100% - var(--max)) / 2 + var(--max));
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.Logo {
    width: 190px;
    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;
    gap: var(--top50);
}

.Nav ul li {
    font-size: var(--size16);
    color: rgb(51, 51, 51);
    text-align: center;
    line-height: 100px;
    position: relative;
}

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


.Nav ul li.Nav_cen {
    color: rgb(1, 122, 209)
}

.Nav ul li:hover {
    color: rgb(1, 122, 209);
}

.Nav ul li::after {
    content: "";
    width: 0%;
    height: 3px;
    background: rgb(1, 122, 209);
    border-radius: 3px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.Nav ul li.Nav_cen::after {
    width: 100%;
}

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

.nav_pc {
    width: 100%;
    padding: 0 20px;
    display: none;
    transition: auto;
    padding-bottom: 20px;
}

.nav_pc a {
    width: 100%;
    display: block;
    font-size: 12px;
    color: #000000;
    line-height: 3;
}

.Daohang {
    width: 180px;
    height: 100%;
    background: rgb(1, 122, 209);
    clip-path: polygon(25% 0%, 100% 0, 100% 100%, 0% 100%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
}

.Daohang p {
    font-size: var(--size18);
    color: rgb(255, 255, 255);
    line-height: 1;
}

.An {
    width: 30px;
    position: relative;
    z-index: 999;
}

.menu_button {
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.menu_button:focus {
    outline: none;
}

.menu_button .line {
    fill: none;
    stroke: #fff;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.menu_button .line1 {
    stroke-dasharray: 60 207;
}

.menu_button .line2 {
    stroke-dasharray: 30 60;
}

.menu_button .line3 {
    stroke-dasharray: 50 207;
}

.menu_button.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.menu_button.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
}

.menu_button.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.Navigation {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 990;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    backdrop-filter: blur(5px);
    background: rgba(25, 25, 26, 0.5);
    display: none;
    transition: auto;
}

.Navigation_bg {
    width: 1300px;
    max-width: 90%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 998;
    transition: all 0.5s;
}

.Navigation_bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 30% 100%, 0 30%);
    background: rgba(1, 122, 209, 0.6);
    left: -50px;
}

.Navigation_max {
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 30% 100%, 0 30%);
    position: relative;
    z-index: 5;
    padding: var(--top60);
    padding-left: 29%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.Navigation_max ul {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top30);
    position: relative;
}

.Navigation_max li {
    width: 100%;
    font-size: var(--size20);
    line-height: 1;
    color: rgb(51, 51, 51);
}

.nav_ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: var(--top20);
    gap: var(--top30);
}

.nav_ul a {
    font-size: var(--size16);
    color: rgb(102, 102, 102);
}

.Navigation_Logo {
    width: 190px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    right: 0;
}

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

.Navigation_add {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--top60);
    border-top: 1px solid rgb(1, 122, 209);
    margin-top: var(--top30);
    padding-top: 10px;
}

.Navigation_qq {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top20);
    margin-right: auto;
}
.Navigation_qq a{
    width: 45px;
    aspect-ratio: 4 / 4;
    border-radius: 50%;
    background: rgb(73, 72, 72);
    display: flex;
    justify-content: center;
    align-items: center;
}
.Navigation_qq a:hover{
    background: rgb(1, 122, 209);

}
.Navigation_qq a img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}

.Navigation_i {
    width: max-content;
}

.Navigation_i h2 {
    font-size: var(--size16);
    color: rgb(1, 122, 209);
}

.Navigation_i p {
    font-size: var(--size16);
    color: rgb(51, 51, 51);
    margin-top: 3px;
}


.Hide {
    width: 30px;
    height: 30px;
    position: absolute;
    top: var(--top40);
    right: var(--top40);
    z-index: 99;
    transform: scale(1.2)
}

.Hide .menu_button .line {
    stroke: #666666;
}

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

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

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

.Banner_text h2 {
    font-size: var(--size50);
    color: rgb(255, 255, 255);
    line-height: 1;
    font-family: 'bold';
}

.Banner_text p {
    font-size: var(--size16);
    color: rgb(255, 255, 255);
    line-height: 2;
    margin-top: var(--top20);
}

.Mianbao {
    width: var(--max);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: var(--top20);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: var(--size14);
    color: rgb(255, 255, 255);
}


#allmap {
    width: 100%;
    height: 800px;
}

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

.anchorBL {
    display: none;
}

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

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

.Lianxi ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top20);
}

.Lianxi ul li {
    width: 100%;
    overflow: hidden;
    background: rgb(255, 255, 255);
    padding: var(--top40)
}

.Lianxi ul li img {
    width: 90px;
    max-width: 30%;
}

.Lianxi ul li h2 {
    font-size: var(--size16);
    color: rgb(51, 51, 51);
    font-family: 'bold';
    margin-top: var(--top40);
}

.Lianxi ul li p {
    font-size: var(--size18);
    color: rgb(51, 51, 51);
    margin-top: 5px;
}

.Lianxi ul li:hover {
    box-shadow: 0px 10px 26px 0px rgba(164, 164, 164, 0.3);
}

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

.Ditu_form {
    width: 630px;
    max-width: 50%;
    overflow: hidden;
    background: rgb(255, 255, 255);
    padding: var(--top40) var(--top30);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc((100% - var(--max)) / 2);
    z-index: 9;
}

.Ditu_form h2 {
    font-size: var(--size24);
    color: rgb(51, 51, 51);
    line-height: 1;
    font-family: 'bold';
}

.Ditu_form form {
    width: 100%;
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.Ditu_form form input {
    width: 100%;
    height: 55px;
    border-radius: 5px;
    background: rgb(244, 244, 244);
    font-size: var(--size14);
    color: rgb(153, 153, 153);
    padding: 0 15px;
}

.Ditu_form form textarea {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    background: rgb(244, 244, 244);
    font-size: var(--size14);
    color: rgb(153, 153, 153);
    padding: 15px;
    font-family: 'm';
    resize: none;
    border: transparent;
}

.Ditu_form form input.submit {
    background: rgb(1, 122, 209);
    color: rgb(255, 255, 255);
    cursor: pointer;
}

.Daohangnav {
    width: 100%;
    overflow: hidden;
    background: rgb(255, 255, 255);
}

.Daohangnav ul {
    width: var(--max);
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top40);
}

.Daohangnav ul li {
    width: max-content;
    position: relative;
    font-size: var(--size18);
    color: rgb(51, 51, 51);
    line-height: 60px;
}

.Daohangnav ul li::after {
    content: "";
    width: 0%;
    height: 3px;
    background: rgb(1, 122, 209);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
}

.Daohangnav ul li.action,
.Daohangnav ul li:hover {
    color: rgb(1, 122, 209);
}

.Daohangnav ul li.action::after,
.Daohangnav ul li:hover::after {
    width: 100%;
}

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

.Zhanlou h2 {
    font-size: var(--size24);
    color: rgb(51, 51, 51);
    font-family: 'bold';
    line-height: 1.5;
}

.Zhanlou h2 span {
    color: rgb(1, 122, 209);
}

.Zhanlou_max {
    width: 100%;
    margin-top: var(--top60);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8vw;
}

.Zhanlou_max>img {
    width: 450px;
    object-fit: cover;
}

.Zhanlou_text {
    flex: 1;
    font-size: var(--size20);
    color: rgb(102, 102, 102);
    line-height: 2.5;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

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

.Zhanlou_text font {
    color: rgb(51, 51, 51);
    font-family: 'bold';
}

.Zhanlou_text span {
    color: rgb(51, 51, 51);
}

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

.Linian>h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgb(51, 51, 51);
    font-family: 'bold';
}

.Linian_max {
    width: 100%;
    overflow: hidden;
    background: rgb(255, 255, 255);
    padding: var(--top50);
    font-size: var(--size16);
    color: rgb(102, 102, 102);
    line-height: 2;
    margin-top: var(--top50);
}

.Linian_max span {
    font-size: var(--size20);
    color: rgb(51, 51, 51);
    font-family: 'bold';
    margin-bottom: 10px;
}

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

.Zhaopin {
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto;
    background: rgb(255, 255, 255);
    padding: var(--top50);
}

.Zhaopin ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top60);
}

.Zhaopin ul li {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid rgb(229, 229, 229);
    padding-bottom: var(--top60);
}

.Zhaopin ul li>h2 {
    font-size: var(--size24);
    font-family: 'bold';
    color: rgb(51, 51, 51);
}

.Zhaopin_text {
    width: 100%;
    margin: var(--top30) auto;
    font-size: var(--size16);
    color: rgb(102, 102, 102);
    line-height: 2;
}

.Zhaopin ul li>p {
    font-size: var(--size16);
    color: rgb(1, 122, 209);
    line-height: 1;
}

.Zhaopin ul li>p span {
    font-size: var(--size36);
    font-family: 'bold';
}

.Gonggao {
    width: var(--max);
    margin: var(--top60) auto;
    background: #ffffff;
    padding: var(--top50);
}

.Gonggao ul {
    width: 100%;
}

.Gonggao ul li {
    width: 100%;
    border-bottom: 1px solid rgb(217, 217, 217);
    padding: var(--top30) 0;
}

.Gonggao ul li:nth-child(1) {
    padding-top: 0px;
}

.Gonggao ul li a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top30);
}

.Gonggao ul li h2 {
    flex: 1;
    font-size: var(--size18);
    color: rgb(51, 51, 51);
    line-height: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Gonggao ul li p {
    font-size: var(--size14);
    color: rgb(153, 153, 153);
    line-height: 1;
}

.Gonggao ul li:hover h2 {
    color: rgb(1, 122, 209);
}

.Show {
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto;
    background: #ffffff;
    padding: var(--top50);
}

.Show>h2 {
    font-size: var(--size24);
    text-align: center;
    color: rgb(51, 51, 51);
}

.Show>p {
    font-size: var(--size14);
    color: rgb(153, 153, 153);
    text-align: center;
    margin-top: var(--top20);
}

.Show_text {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top30);
    font-size: var(--size14);
    color: rgb(102, 102, 102);
    line-height: 2;
}

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

.Prev {
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.Prev a {
    width: max-content;
    max-width: 48%;
    display: block;
    font-size: var(--size14);
    color: rgb(51, 51, 51);
}

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

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

.page .active {
    background: rgb(1, 122, 209);
    border: 1px solid rgb(1, 122, 209);
    color: #fff;
}

.page .active:nth-child(1),
.page .active:nth-child(2),
.page .total:nth-child(1),
.page .total:nth-child(2),
.page .active:last-child,
.page .total:last-child {
    color: #d9d9d9;
    border: 1px solid #d9d9d9;
    background: transparent;
}

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

.Dongtai_max {
    width: 100%;
    overflow: hidden;
    background: rgb(255, 255, 255);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top40);
}

.Dongtai_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Dongtai_list img {
    width: 50%;
    object-fit: cover;
}

.Dongtai_max_text {
    flex: 1;
    padding: var(--top60) var(--top50);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: flex-end;
}

.Dongtai_max_text h2 {
    width: 100%;
    font-size: var(--size20);
    color: rgb(51, 51, 51);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-family: 'bold';
}

.Dongtai_max_text p {
    width: 100%;
    font-size: var(--size14);
    color: rgb(102, 102, 102);
    margin-top: var(--top30);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.Dongtai_max_text>span {
    width: 100%;
    display: block;
    font-size: var(--size14);
    color: rgb(153, 153, 153);
    margin-top: var(--top20);
}

.Dongtai_max_text a {
    width: max-content;
    border: 1px solid rgb(1, 122, 209);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 50px;
    margin-top: var(--top120);
}

.Dongtai_max_text a span {
    font-size: var(--size16);
    color: rgb(1, 122, 209);
    padding: 0 30px;
}

.Dongtai_max_text a svg {
    width: 50px;
    height: auto;
}

.Dongtai ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top40) var(--top20);
    margin-top: var(--top40);
}

.Dongtai ul li {
    width: 100%;
    overflow: hidden;
    background: rgb(255, 255, 255);
}

.Dongtai ul li img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.Dongtai_text {
    width: 100%;
    overflow: hidden;
    padding: 25px;
}

.Dongtai_text h2 {
    font-size: var(--size20);
    color: rgb(51, 51, 51);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.Dongtai_text p {
    font-size: var(--size14);
    color: rgb(102, 102, 102);
    margin-top: 10px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.Dongtai_text span {
    font-size: var(--size14);
    color: rgb(153, 153, 153);
    margin-top: var(--top20);
    display: block;
}

.Dongtai ul li:hover {
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.Jiangxin {
    width: 100%;
    margin: var(--top60) auto;
}

.Jiangxin_max {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.Jiangxin_swiper {
    width: var(--max);
}

.Jiangxin_swiper li {
    background: #ffffff;
}

.Jiangxin_swiper li img {
    width: 100%;
    aspect-ratio: 6 / 4;
    object-fit: cover;
}

.prev,
.next {
    width: 35px;
    height: auto;
    position: static;
    transform: translate(0%, 0%);
    margin: auto;
    background: transparent;
}

.prev svg,
.next svg {
    width: 100%;
    height: auto;
}

.prev svg:hover path,
.next svg:hover path {
    fill: rgb(1, 122, 209);
}

.pager3 {
    width: var(--max);
    position: static;
    transform: translate(0%, 0%);
    margin: var(--top60) auto;
}

.Jiangxin_max_Hide {
    opacity: 0;
}

.Jiangxin_swiper li:hover {
    background: rgb(1, 122, 209);
}

.Jiangxin_swiper li:hover .Dongtai_text * {
    color: #ffffff;
}

.Keji {
    width: var(--max);
    margin: var(--top60) auto;
    background: #ffffff;
    padding: var(--top50);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top80);
}

.Keji img {
    width: 40%;
    height: auto;
}

.Keji_text {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.Keji_text h2 {
    width: 100%;
    font-size: var(--size30);
    color: rgb(51, 51, 51);
    font-family: 'bold';
}

.Keji_text p {
    width: 100%;
    font-size: var(--size16);
    color: rgb(158, 158, 158);
    line-height: 2;
    margin-top: var(--top40);
}


.Footer {
    width: 100%;
    overflow: hidden;
    background: rgb(50, 48, 48) url(../images/beijing2.png) no-repeat center center / var(--max) auto;
}

.Footer_max {
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6vw;
}

.Footer_logo {
    width: 260px;
    overflow: hidden;
}

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

.Footer_logo ul {
    width: 100%;
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top20);
}

.Footer_logo ul li {
    width: 100%;
}

.Footer_logo ul li h2 {
    font-size: 14px;
    color: rgb(191, 191, 191);
}

.Footer_logo ul li p {
    font-size: var(--size16);
    color: rgb(255, 255, 255);
    margin-top: 10px;
}

.QQ {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top20);
    margin-top: var(--top30)
}

.QQ_liem {
    width: 45px;
    aspect-ratio: 4 / 4;
    border-radius: 50%;
    background: rgb(73, 72, 72);
}

.QQ_liem:hover {
    background: rgb(1, 122, 209);
}
.QQ_liem a{
    width: 100%;
    height: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.QQ_liem img {
    max-width: 50%;
    max-height: 60%;
    object-fit: contain;
}

.Footer_ul_max {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.Footer_ul_item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.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(--size18);
    color: rgb(255, 255, 255);
    font-family: 'bold';
}

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

.Footer_ul ul {
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
}

.Footer_ul ul li {
    font-size: var(--size14);
    color: rgb(204, 204, 204);
    line-height: 2.5;
}

.Footer_erweima {
    width: 140px;
    margin-top: var(--top20)
}

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

.Footer_erweima h2 {
    text-align: center;
    font-size: var(--size14);
    color: rgb(191, 191, 191);
    margin-top: 5px;
}

.Beian {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #ffffff20;
}

.Beian_max {
    width: var(--max);
    overflow: hidden;
    margin: var(--top20) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.Beian_max p {
    font-size: var(--size14);
    color: #ffffff;
    margin: 0 5px;
}

.Jianjie {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

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

.Jianjie_top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.Jianjie_top h2 {
    font-size: var(--size30);
    color: rgb(51, 51, 51);
    font-family: 'bold';
    line-height: 1;
}

.Jianjie_top img {
    width: 50px;
    height: auto;
    display: none;
}

.Jianjie_max>p {
    width: 100%;
    overflow: hidden;
    font-size: var(--size16);
    color: rgb(102, 102, 102);
    line-height: 2;
    padding-left: 15vw;
    margin-top: var(--top60);
}

.Jianjie ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: var(--top30);
    margin-top: var(--top60);
    padding-left: 15vw;
}

.Jianjie ul li {
    width: max-content;
}

.Jianjie ul li span {

    font-size: var(--size16);
    color: rgb(153, 153, 153);
    text-align: right;
    padding-right: 2vw;
    display: block;
}

.Jianjie ul li h2 {
    text-align: center;
    font-size: 5vw;
    color: rgb(1, 122, 209);
    line-height: 1;
}

.Jianjie ul li p {
    text-align: center;
    font-size: var(--size16);
    color: rgb(51, 51, 51);
    line-height: 1;
    margin-top: 5px;
}

.Jianjie_video {
    width: 100%;
    margin-top: var(--top60);
    position: relative;
}

.Jianjie_video video {
    width: 100%;
    height: auto;
}

.Jianjie_video svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: auto;
    cursor: pointer;
}

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

.Fazhan>h2 {
    font-size: var(--size36);
    color: rgb(51, 51, 51);
    font-family: 'bold';
    text-align: center;
}

.Fazhan_top {
    width: 100%;
    margin-top: var(--top60)
}

.Fazhan_top::after {
    content: "";
    width: 100%;
    height: 1px;
    background: rgb(204, 204, 204);
    position: absolute;
    bottom: 17px;
    left: 0;
    z-index: -1;
}

.Fazhan_top::before {
    content: "";
    width: 0px;
    height: 0px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid rgb(204, 204, 204);
    position: absolute;
    bottom: 9px;
    right: 0;
}

.Fazhan_top li {
    text-align: center;
    cursor: pointer;
    height: auto !important;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    align-content: flex-end;
}

.Fazhan_top li h2 {
    width: 100%;
    text-align: center;
    font-size: var(--size46);
    color: rgb(172, 172, 172);
    line-height: var(--top60);
}

.Fazhan_top li i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    position: relative;
    display: block;
    margin: auto;
    border: 4px solid transparent;
    margin-top: 10px;
    z-index: 99;
}

.Fazhan_top li i::after {
    content: "";
    width: 11px;
    height: 11px;
    background: rgb(172, 172, 172);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.Fazhan_top li.zhenshangyin-slide-active h2 {
    color: rgb(1, 122, 209);
    font-size: var(--size60)
}

.Fazhan_top li.zhenshangyin-slide-active i {
    background: #ffffff;
    border: 4px solid rgb(1, 122, 209);
}

.Fazhan_top li.zhenshangyin-slide-active i::after {
    background: rgb(1, 122, 209);
}

.Fazhan_bottom {
    width: 1200px;
    max-width: 100%;
    margin: auto;
    margin-top: var(--top80);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5vw;
}

.Fazhan_swiper {
    flex: 1;
}

.Fazhan_swiper li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top60);
}

.Fazhan_swiper li img {
    width: 60%;
    height: auto;
}

.Fazhan_text {
    flex: 1;
}

.Fazhan_text h2 {
    font-size: var(--top50);
    color: rgb(197, 197, 197);
    line-height: 1;
}

.Fazhan_text p {
    font-size: var(--size16);
    color: rgb(51, 51, 51);
    line-height: 1.7;
    margin-top: var(--top30);
}

.Jiagou {
    width: 100%;
    overflow: hidden;
    background: url(../images/beijing1.png) no-repeat center center / cover;
}

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

.Jiagou_max>h2 {
    font-size: var(--size36);
    color: rgb(255, 255, 255);
    font-family: 'bold';
    text-align: center;
}

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

.Zizhi {
    width: 100%;
    overflow: hidden;
    background: rgb(245, 251, 255);
}

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

.Zizhi_top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.Zizhi_top h2 {
    font-size: var(--size30);
    color: rgb(51, 51, 51);
    font-family: 'bold';
    line-height: 1;
}

.Zizhi_prev {
    width: 150px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.prev1,
.next1 {
    width: 35px;
    height: auto;
    position: static;
    transform: translate(0%, 0%);
    margin: auto;
    background: transparent;
}

.prev1 svg,
.next1 svg {
    width: 100%;
    height: auto;
}

.prev1 svg:hover path,
.next1 svg:hover path {
    fill: rgb(1, 122, 209);
}

.Zizhi_Swiper {
    width: 100%;
    margin-top: var(--top60);
}

.Zizhi_Swiper li {
    width: 25%;
    height: auto !important;
}

.Zizhi_Swiper li img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: contain;
}

.Zizhi_Swiper li h2 {
    text-align: center;
    font-size: var(--size18);
    color: rgb(51, 51, 51);
    margin-top: var(--top50);
    opacity: 0;
}

.Zizhi_Swiper li.zhenshangyin-slide-active h2 {
    opacity: 1;
}

.pager4 {
    width: 100%;
    position: static;
    transform: translate(0%, 0%);
    margin: var(--top60) auto;
}

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

.Jingsheng>h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgb(51, 51, 51);
    font-family: 'bold';
}

.Jingsheng_max {
    width: 100%;
    margin-top: var(--top60);
    position: relative;
    padding-left: var(--top60);
    padding-bottom: var(--top60);
}

.Jingsheng_max::after {
    content: "";
    width: 100%;
    height: calc(100% - 140px);
    background: #ffffff;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.Jingsheng_swiper {
    width: 100%;
}

.Jingsheng_swiper li {
    width: 100%;
    height: auto !important;
    display: flex;
    justify-content: space-between;
}

.Jingsheng_swiper li img {
    width: 40%;
    object-fit: cover;
}

.Jingsheng_text {
    width: 57%;
    position: relative;
}

.Jingsheng_top {
    width: 100%;
    height: 140px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top20);
}

.Jingsheng_top h2 {
    flex: 1;
    font-size: var(--size30);
    color: rgb(1, 122, 209);
    font-family: 'bold';
}

.Jingsheng_top p {
    width: max-content;
    font-size: var(--size50);
    color: rgb(1, 122, 209);
    line-height: 1;
}

.Jingsheng_nou {
    flex: 1;
    font-size: var(--size16);
    color: rgb(102, 102, 102);
    line-height: 1.8;
    margin-top: var(--top50);
    padding-bottom: 50px;
}

.Jingsheng_nou span {
    font-size: var(--size24);
    color: rgb(51, 51, 51);
    margin-bottom: 10px;
    display: inline-block;
}

.pager5 {
    bottom: 0;
    justify-content: flex-start;
    padding-left: 43%;
    transition: auto;
}

.pager5 .zhenshangyin-pager-bullets-bullet {
    width: 25px;
    height: 8px;
    background: rgb(216, 216, 216);
    border-radius: 0px;
}

.pager5 .zhenshangyin-pager-bullets-bullet.active {
    background: rgb(2, 58, 149);
}

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

.Nrihan ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--top20);
}

.Nrihan ul li {
    width: 100%;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.Nrihan_max {
    width: 100%;
    overflow: hidden;
    background: rgb(1, 122, 209);
    padding: var(--top50);
    transform: translateY(100%);
}

.Nrihan_max h2 {
    font-size: var(--size30);
    color: rgb(255, 255, 255);
    line-height: 1.4;
}

.Nrihan_max p {
    font-size: var(--size16);
    color: rgb(255, 255, 255);
    line-height: 2;
    position: relative;
    margin-top: var(--top20);
    padding-top: var(--top20);
}

.Nrihan_max p::after {
    content: "";
    width: 65%;
    height: 1px;
    background: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
}

.Nrihan ul li:hover .Nrihan_max {
    transform: translateY(0%);
}

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

.Youshij>h2 {
    font-size: var(--size36);
    color: rgb(51, 51, 51);
    font-family: 'bold';
    text-align: center;
}

.Youshij>p {
    width: 1200px;
    max-width: 100%;
    margin: auto;
    font-size: var(--size16);
    color: rgb(102, 102, 102);
    line-height: 2;
    margin-top: var(--top30);
}

.Youshij ul {
    width: 100%;
    margin-top: var(--top30);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.Youshij ul li {
    width: 100%;
    overflow: hidden;
    background: rgb(255, 255, 255);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Youshij ul li img {
    width: 50%;
    object-fit: cover;
}

.Youshij_text {
    flex: 1;
    padding: var(--top40);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.Youshij_text h2 {
    width: 100%;
    font-size: var(--size30);
    color: rgb(51, 51, 51);
}

.Youshij_text p {
    width: 100%;
    font-size: var(--size16);
    color: rgb(102, 102, 102);
    line-height: 2;
    margin-top: 10px;
}

.Youshij ul li:nth-child(1),
.Youshij ul li:nth-child(2) {
    width: calc(50% - 10px);
}

.Youshij ul li:nth-child(1) img,
.Youshij ul li:nth-child(2) img {
    width: 100%;
}

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

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

.Huodong>h2 {
    font-size: var(--size36);
    color: rgb(51, 51, 51);
    font-family: 'bold';
    text-align: center;
}

.Huodong_Swiper {
    width: 100%;
    margin-top: var(--top50);
}

.Huodong_Swiper li img {
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
}

.Huodong_Swiper li h2 {
    text-align: center;
    font-size: var(--size16);
    color: rgb(51, 51, 51);
    margin-top: 10px;
}

.pager6 {
    position: static;
    transform: translate(0%, 0%);
    margin-top: var(--top50);
}

.pager6 .zhenshangyin-pager-bullets-bullet {
    width: 56px;
    height: 3px;
    background: rgb(216, 216, 216);
    border-radius: 0px;
}

.pager6 .zhenshangyin-pager-bullets-bullet.active {
    background: rgb(2, 58, 149);
}

.Wenhua {
    width: 100%;
    overflow: hidden;
    background: rgb(255, 255, 255);
}

.Wenhua_max {
    width: var(--max);
    max-width: calc(100% - 80px);
    margin: var(--top100) auto;
}

.Wenhua_max>h2 {
    font-size: var(--size36);
    color: rgb(51, 51, 51);
    font-family: 'bold';
    text-align: center;
}

.Wenhua_item {
    width: 100%;
    margin-top: var(--top100);
    position: relative;
}

.Wenhua_nav {
    width: 100%;
    height: 100px;
    position: relative;
}

.progress_wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
}

.active_wave {
    transition: stroke-dashoffset 0.5s ease;
}

.nav_points {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.nav_point {
    position: absolute;
    cursor: pointer;
}

.point_text {
    position: absolute;
    font-size: var(--size16);
    color: rgb(51, 51, 51);
    transition: color 0.3s ease;
    white-space: nowrap;
}

.point_dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgb(204, 204, 204);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav_point.active .point_text {
    color: rgb(1, 122, 209);
    font-weight: bold;
}

.nav_point.active .point_dot {
    background: rgb(1, 122, 209);
    transform: translate(-50%, -50%) scale(1.2) !important;
}

.Wenhua_content {
    width: 100%;
    position: relative;
}

.content_item {
    width: 100%;
    display: none;
    transition: auto;
}

.content_item:nth-child(1) {
    display: block;
}

.content_item_max {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 15px 0;
    gap: var(--top60);
}

.content_item_max img {
    width: 33%;
    height: auto;
    object-fit: cover;
}

.content_text {
    flex: 1;
}

.content_text h3 {
    font-size: var(--size24);
    color: rgb(51, 51, 51);
}

.content_text p {
    font-size: var(--size16);
    color: rgb(102, 102, 102);
    line-height: 2;
    position: relative;
    margin-top: var(--top20);
    padding-top: var(--top20)
}

.content_text p::after {
    content: "";
    width: 230px;
    max-width: 50%;
    height: 1px;
    background: rgb(1, 122, 209);
    position: absolute;
    top: 0;
    left: 0;
}

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

.Aizai ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--top30) var(--top20);
}

.Aizai ul li {
    width: 100%;
}

.Aizai ul li:nth-child(1) {
    grid-column: span 6;
}

.Aizai ul li:nth-child(1):hover .Aizai_top_text h2 {
    color: rgb(1, 122, 209)
}

.Aizai ul li:nth-child(2),
.Aizai ul li:nth-child(3),
.Aizai ul li:nth-child(4) {
    grid-column: span 2;
}

.Aizai ul li:nth-child(2):hover .Aizai_cen img,
.Aizai ul li:nth-child(3):hover .Aizai_cen img,
.Aizai ul li:nth-child(4):hover .Aizai_cen img {
    box-shadow: 0px 0px 10px 5px #00000050;
    transform: translateY(-2px);
}

.Aizai ul li:nth-child(2):hover .Aizai_cen_text h2,
.Aizai ul li:nth-child(3):hover .Aizai_cen_text h2,
.Aizai ul li:nth-child(4):hover .Aizai_cen_text h2 {
    color: rgb(1, 122, 209);
}

.Aizai ul li:nth-child(n+5) {
    grid-column: span 3;
}

.Aizai_top {
    width: 100%;
    overflow: hidden;
    background: rgb(255, 255, 255);
}

.Aizai_top a {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Aizai_top img {
    width: 50%;
    object-fit: cover;
}

.Aizai_top_text {
    flex: 1;
    padding: var(--top60) var(--top50);
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.Aizai_top_text h2 {
    width: 100%;
    font-size: var(--size24);
    color: rgb(51, 51, 51);
    font-family: bold;
}

.Aizai_top_text p {
    width: 100%;
    font-size: var(--size16);
    color: rgb(102, 102, 102);
    line-height: 2;
    margin: 15px 0;
}

.Aizai_top_text_bottom {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.Aizai_top_text_bottom span {
    display: block;
    font-size: var(--size14);
    color: rgb(153, 153, 153);
}

.Aizai_top_text_bottom svg {
    width: var(--top50);
    height: auto;
    display: block;
}

.Aizai_cen {
    width: 100%;
}

.Aizai_cen img {
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
}

.Aizai_cen_text {
    width: 100%;
}

.Aizai_cen_text h2 {
    font-size: var(--size20);
    color: rgb(51, 51, 51);
    margin-top: var(--top20);
}

.Aizai_cen_text p {
    font-size: var(--size14);
    color: rgb(153, 153, 153);
    margin-top: var(--top20);
}

.Aizai_bottom {
    width: 100%;
    border-bottom: 1px solid rgb(217, 217, 217);
    padding: var(--top40) var(--top20);
}

.Aizai_bottom a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top20);
}

.Aizai_bottom a h2 {
    flex: 1;
    font-size: var(--size20);
    color: rgb(51, 51, 51);
    font-family: 'bold';
}

.Aizai ul li:nth-child(n+5):hover {
    background: rgb(237, 244, 255);
}

.Aizai_tem {
    width: max-content;
}

.Aizai_tem p {
    font-size: var(--size14);
    color: rgb(1, 122, 209);
}

.Aizai_tem span {
    font-size: var(--size36);
    color: rgb(1, 122, 209);
    font-family: 'bold';
    text-align: center;
    display: block;
}

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

.Yaoci_top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top40);
}

.Yaoci_Swiper {
    flex: 1;
}

.Yaoci_Swiper li {
    height: auto !important;
}

.Yaoci_Swiper li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Yaoci_Swiper li h2 {
    width: 100%;
    font-size: var(--size24);
    color: rgb(255, 255, 255);
    padding: var(--top30);
    position: absolute;
    bottom: 0;
    left: 0;
}

.Yaoci_top>ul {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.Yaoci_top>ul>li {
    width: 100%;
    border-bottom: 1px solid rgb(217, 217, 217);
    padding: 24px 0;
}

.Yaoci_top>ul>li a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top20);
}

.Yaoci_top>ul>li h2 {
    flex: 1;
    font-size: var(--size20);
    color: rgb(51, 51, 51);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Yaoci_top>ul>li p {
    width: max-content;
    font-size: var(--size14);
    color: rgb(153, 153, 153);
}
.Yaoci_top>ul>li:hover h2{
    color: rgb(1, 122, 209);
}
.Yaoci_bottom{
    width: 100%;
    margin-top: var(--top30);
}
.Yaoci_bottom ul{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top30) var(--top20);
}
.Yaoci_bottom ul li{
    width: 100%;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
}
.Yaoci_bottom ul li:hover{
    box-shadow: 0px 0px 10px 5px #00000020;
    transform: translateY(-2px);
}
.Yaoci_bottom ul li img{
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
}
.Yaoci_text{
    width: 100%;
    overflow: hidden;
    padding: 25px var(--top30)
}
.Yaoci_text h2{
    font-size: var(--size20);
    color: rgb(51, 51, 51);
    line-height: 1.6;
    margin-bottom: 10px;
}
.Yaoci_bottom ul li:hover .Yaoci_text h2{
    color: rgb(1, 122, 209);
}
.Yaoci_text p{
    font-size: var(--size14);
    color: rgb(153, 153, 153);
    margin-top: var(--top20);
}

.Banner_Swiper{
    width: 100%;
}
.Banner_Swiper img{
    width: 100%;
    min-height: 500px;
    object-fit: cover;
}

.Banner_Swiper_text{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.Banner_Swiper_text h2{
    font-size: 4.5vw;
    color: rgb(255, 255, 255);
    font-family: 'bold';
    text-align: center;
    line-height: 1.1;
}

.Banner_Swiper_text p{
    font-size: var(--size24);
    color: rgb(255, 255, 255);
    text-align: center;
    margin-top: 10px;
    line-height: 1.6;
}
.pager55{
    width: max-content;
    bottom: var(--top60);
    left: calc((100% - var(--max)) / 2);
    transform: translate(0%,0%);
    font-size: var(--size40);
    color: rgb(255, 255, 255);
}
.pager55 .current{
    transform: translateY(-15px);
    font-family: 'bold';
    font-size: var(--size60);
    color: rgb(255, 255, 255);
    line-height: 1;
}
.pager55 .total{
    transform: translateY(15px);
    color: rgb(255, 255, 255);
    font-size: var(--top30);
    line-height: 1;
}

.pager44{
    width: 20px;
    height: 100%;
    left: auto;
    top: 50%;
    right: var(--top40);
    transform: translate(0%,-50%);
    flex-wrap: wrap;
    align-content: center;
    gap: 50px;
}
.pager44 .zhenshangyin-pager-bullets-bullet{
    width: 100%;
   height: 20px;
    border: 2px solid rgb(255, 255, 255);
    background: transparent;
    position: relative;
    display: block;
}
.pager44 .zhenshangyin-pager-bullets-bullet.active{
    border: 2px solid rgb(1, 122, 209);
}


.pager44 .zhenshangyin-pager-bullets-bullet::after{
    content: "";
    width: 2px;
    height: 40px;
    position: absolute;
    top: calc(18px + 5px);
    left: 50%;
    z-index: 4;
    transform: translateX(-50%);
    background: rgba(255, 255, 255);
}
.pager44 .zhenshangyin-pager-bullets-bullet::before{
    content: "";
    width: 2px;
    height: 40px;
    position: absolute;
    top: calc(18px + 5px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    background: rgb(1, 122, 209);
    transform-origin: top center;
    transform: translateX(-50%) scaleY(0);
    transition: transform 0.8s linear;
}

.pager44 .zhenshangyin-pager-bullets-bullet.active::before {
    animation: scaleAnimation 5s linear forwards;
}

@keyframes scaleAnimation {
    from {
        transform: translateX(-50%) scaleY(0);
    }
    to {
        transform: translateX(-50%) scaleY(1);
    }
}
.pager44 .zhenshangyin-pager-bullets-bullet:last-child::after,
.pager44 .zhenshangyin-pager-bullets-bullet:last-child::before{
    display: none;
}

.Zuojin{
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.Zuojin_max{
    width: calc((100% - var(--max))  / 2 + var(--max));
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5vw;
}

.Zuojin_left{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    padding: var(--top100) 0
}
.Zuojin_left>h2{
    width: 100%;
    font-size: var(--size36);
    color: rgb(51, 51, 51);
    font-family: 'bold';
    line-height: 1;
}
.Zuojin_left>span{
    display: block;
    width: 100%;
    font-size: var(--size16);
    color: rgb(222, 222, 222);
    margin-top: 5px;
}
.Zuojin_left>p{
    width: 100%;
    font-size: var(--size16);
    color: rgb(102, 102, 102);
    line-height: 2;
    margin-top: 20px;
}
.Zuojin_left a {
    width: max-content;
    border: 1px solid rgb(1, 122, 209);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 50px;
    margin-top: var(--top60);
}

.Zuojin_left a span {
    font-size: var(--size16);
    color: rgb(1, 122, 209);
    padding: 0 30px;
}

.Zuojin_left a svg {
    width: 50px;
    height: auto;
}

.Zuojin_left ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-top: var(--top60);
}

.Zuojin_left ul li {
    width: max-content;
}

.Zuojin_left ul li h2 {
    text-align: center;
    font-size: 3vw;
    color: rgb(1, 122, 209);
    line-height: 1;
}

.Zuojin_left ul li p {
    text-align: center;
    font-size: var(--size14);
    color:rgb(102, 102, 102);
    line-height: 1;
    margin-top: 5px;
}

.Zuojin_max img{
    width: 50%;
    object-fit: cover;
}


.title_h span{
    color: rgb(1, 122, 209);
}
.Zuojin_video{
    width: 100%;
    overflow: hidden;
    position: relative;
}
.Zuojin_video ul{
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0;
    z-index: 5;
}
.Zuojin_video ul li{
    flex: 1;
    background: rgba(255, 255, 255, 0.2);
    line-height: 90px;
    font-size: var(--size24);
    color: rgb(255, 255, 255);
    font-family: 'bold';
    text-align: center;
    cursor: pointer;
}
.Zuojin_video_max{
    width: 100%;
}
.Zuojin_video_max .Jianjie_video{
    margin-top: 0px;
}
.Zuojin_video ul li.active{
    background: rgb(1, 122, 209);
}
.Zuojin_video_max .Jianjie_video{
    display: none;
}
.Zuojin_video_max .Jianjie_video:nth-child(1){
    display: block;
}
.Lingyu{
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}
.Lingyu_maxa{
    width: var(--max);
    margin: var(--top100) auto;
}
.Lingyu_maxa>h2{
    width: 100%;
    font-size: var(--size36);
    color: rgb(51, 51, 51);
    font-family: 'bold';
    line-height: 1;
    text-align: center;
}
.Lingyu_maxa>span{
    display: block;
    width: 100%;
    font-size: var(--size16);
    color: rgb(222, 222, 222);
    margin-top: 5px;
    text-align: center;
}
.Lingyu ul{
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: var(--top50);
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}
.Lingyu ul li{
    width: 100%;
    aspect-ratio: 4 / 4;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    line-height: var(--size30);
}
.Lingyu ul li::after{
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(1, 122, 209, 0.5);
    transition: top 0.3s linear;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    
}
.Lingyu ul li a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    padding: var(--top30) var(--top50);
    position: relative;
    z-index: 2;
}
.Lingyu ul li:nth-child(1){
    border-left: transparent;
}
.Lingyu_max{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.Lingyu_max h2{
    font-size: var(--size20);
    color: rgb(255, 255, 255);
}
.Lingyu_max h2::after{
    content: "";
    width: 30px;
    height: 2px;
    background: rgb(255, 255, 255);
    display: block;
    margin-top: 10px;
    opacity: 0;
}
.Lingyu_max svg{
    width: 40px;
    height: auto;
    display: block;
    opacity: 0;
}
.Lingyu ul li:hover .Lingyu_max h2{
    font-size: var(--size30);
    color: rgb(255, 255, 255);
}
.Lingyu ul li:hover .Lingyu_max h2::after{
    opacity: 1;
}
.Lingyu ul li:hover .Lingyu_max svg{
    opacity: 1;
}
.Lingyu ul li:hover::after{
    top: 0;
}

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

.Dangzai_max{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top20);
}

.Dangzai_left{
    width: max-content;
}

.Dangzai_left>h2{
    width: 100%;
    font-size: var(--size36);
    color: rgb(1, 122, 209);
    font-family: 'bold';
    line-height: 1;
}
.Dangzai_left>span{
    display: block;
    width: 100%;
    font-size: var(--size16);
    color: rgb(222, 222, 222);
    margin-top: 5px;
}
.Dangzai_left>h2 span{
    color: rgb(51, 51, 51);
}
.Dangzai_max a {
    width: max-content;
    border: 1px solid rgb(1, 122, 209);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 50px;
}

.Dangzai_max a span {
    font-size: var(--size16);
    color: rgb(1, 122, 209);
    padding: 0 30px;
}

.Dangzai_max a svg {
    width: 50px;
    height: auto;
}

.Dangzai_Swiper{
    width: 100%;
    margin-top: var(--top50);
}
.Dangzai_Swiper li{
    width: 40%;
    height: auto !important;
}
.Dangzai_Swiper li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Dangzai_max_btn{
    width: 100%;
    margin-top: var(--top50);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--top20);
}
.Dangzai_max_btn .prev11,
.Dangzai_max_btn .next22{
    width: 50px;
    height: 50px;
    border: 1px solid rgb(1, 122, 209);
    position: static;
    transform: translate(0%, 0%);
    inset: 0;
    background: transparent;
}
.Dangzai_max_btn .prev11 svg,
.Dangzai_max_btn .next22 svg{
    max-width: 40%;
    height: auto;
}
.Dangzai_max_btn .prev11:hover,
.Dangzai_max_btn .next22:hover{
    background: rgb(1, 122, 209);
}
.Dangzai_max_btn .prev11:hover svg path,
.Dangzai_max_btn .next22:hover svg path{
    fill: #ffffff;
}
.pades6{
    flex: 1;
    height: 2px;
    position: static;
    transform: translate(0%, 0%);
    inset: 0;
}
.Xinwea{
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}
.Xinwea_max{
    width: var(--max);
    margin: var(--top100) auto;
}
.Dangzai_max ul{
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--top50);
}
.Dangzai_max ul li{
    width: max-content;
    font-size: var(--size16);
    color: rgb(51, 51, 51);
    position: relative;
    padding-bottom: 10px;
    cursor: pointer;
}
.Dangzai_max ul li::after{
    content: "";
    width: 0%;
    height: 2px;
    background: rgb(1, 122, 209);
    position: absolute;
    bottom: 0;
    transition: all 0.5s;
    left: 50%;
    transform: translateX(-50%);
}
.Dangzai_max ul li.active{
    color: rgb(1, 122, 209);
}
.Dangzai_max ul li.active::after{
    width: 100%;
}

.Xinwea_cen{
    width: 100%;
    overflow: hidden;
    margin-top: var(--top50);
}
.Xinwea_list{
    width: 100%;
    display: none;
    transition: auto;
}
.Xinwea_list:nth-child(1){
    display: block;
}
.Xinwea_list ul{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top20);
}

.Xinwea_list ul li{
    width: 100%;
    overflow: hidden;
}
.Xinwea_list ul li img{
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.Xinwea_list_text{
    width: 100%;
    overflow: hidden;
    background: rgb(250, 250, 250);
    padding: var(--top20)
}

.Xinwea_list_text p{
    font-size: var(--size14);
    color: rgb(102, 102, 102);
}
.Xinwea_list_text h2{
    font-size: var(--size20);
    color: rgb(51, 51, 51);
    line-height: 1.5;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.pager4  .zhenshangyin-pager-bullets-bullet{
    background: #00000050 !important;
}
.pager4  .zhenshangyin-pager-bullets-bullet.active{
    background: #000000 !important;
}
.Jinag_show{
    width: var(--max);
    overflow: hidden;
    margin: auto;
    background: #ffffff;
    padding: var(--top20);
}
.Jinag_showSwiper{
    width: 100%;
}

.Jinag_showSwiper ul li img{
    width: auto;
    margin: auto;
    height: 600px;
}

.page5 .zhenshangyin-pager-bullets-bullet{
    width: 25px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0px;
}
.page5 .zhenshangyin-pager-bullets-bullet.active{
    background: #fff;
}

.Jinag_show h2{
    font-size: var(--size30);
    color: rgb(51, 51, 51);
    font-family: 'bold';
    margin-top: var(--top40);
    margin-bottom: 25px;
}

.Jinag_show p{
    width: 100%;
    margin-top: 5px;
    font-size: var(--size16);
    color: rgb(102, 102, 102);
    line-height: 1.6;
}

.Jinag_show p span{
    font-family: 'bold';
    color: rgb(51, 51, 51);
}