:root {
    --max: 1400px;
    --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,
html {
    font-family: "m";
}

.Hertre {
    width: 100%;
    z-index: 999;
    height: 100px;
    position: relative;
    background: #fff;
    box-shadow: 0px 0px 10px 5px #00000010;
}

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

.Logo {
    width: 200px;
    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: #050505;
    text-align: center;
    line-height: 100px;
    position: relative;
    padding: 0 var(--top20);
    transition: all 0.1s;
}

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

.Nav ul li::after {
    content: "";
    width: 0%;
    height: 100%;
    background: rgb(12, 94, 189);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    transition: all 0.5s;
}

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

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

.Nav ul li.Nav_cen {
    color: rgb(255, 255, 255);
}

.Nav ul li:hover {
    color: rgb(255, 255, 255);
}


.Nav_ul {
    width: max-content;
    min-width: 220px;
    display: none;
    position: absolute;
    overflow: hidden;
    top: 100%;
    transition: auto;
    left: 0%;
    border-radius: 0px 0px 4px 4px;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.15);
    background: rgb(255, 255, 255);
}

.Nav_ul a {
    color: rgb(68, 68, 68);
    display: block;
    line-height: 50px;
    text-align: left;
    padding: 0 20px;
    font-size: var(--size14);
    border-bottom: 1px solid rgb(242, 242, 242);
}

.Nav_ul a:hover {
    background: rgb(12, 94, 189);
    color: #ffffff;
}

.Nav_ul a.Nav_ul_Nav {
    background: rgb(12, 94, 189);
    color: #ffffff;
}

.Tel {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: var(--top50);
    margin-right: auto;
    gap: 10px;
}

.Tel img {
    width: var(--top40);
    height: auto;
}

.Tel_text {
    width: max-content;
}

.Tel_text h2 {
    font-size: var(--size14);
    color: rgb(51, 51, 51);
    line-height: 1;
}

.Tel_text p {
    font-size: var(--size30);
    color: rgb(51, 51, 51);
    line-height: 1;
    margin-top: 5px;
}

.An {
    width: 30px;
    display: none;
}

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

.menu_button:focus {
    outline: none;
}

.menu_button .line {
    fill: none;
    stroke: #000;
    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: 60 60;
}

.menu_button .line3 {
    stroke-dasharray: 60 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;
}

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

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

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

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

.Banner_text p {
    font-size: var(--size24);
    color: rgb(255, 255, 255);
    text-align: center;
    line-height: 1;
    margin-top: var(--top20);
}

.Mianbao {
    width: var(--max);
    overflow: hidden;
    position: absolute;
    top: var(--top20);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--size16);
    color: rgb(255, 255, 255);
    gap: 8px;
}

.Lianxi {
    width: var(--max);
    margin: var(--top80) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
}

.Lianxi_left {
    width: 500px;
}

.Lianxi_left>h2 {
    font-size: var(--size36);
    color: rgb(34, 34, 34);
}

.Lianxi_left>h2::after {
    content: "";
    width: 25px;
    height: 2px;
    background: rgb(29, 32, 136);
    display: block;
    margin-top: 10px;
    margin-bottom: var(--top40);
}

.Lianxi_left>p {
    font-size: var(--size18);
    color: rgb(102, 102, 102);
    margin-top: var(--top20);
}

.Erweima {
    width: max-content;
    margin-top: var(--top100);
}

.Erweima img {
    width: 180px;
    height: auto;
    box-shadow: 0px 2px 10px 0px rgba(9, 35, 51, 0.1);
    background: url();
}

.Erweima p {
    text-align: center;
    font-size: var(--size16);
    color: rgb(68, 68, 68);
    margin-top: 15px;
}

#allmap {
    flex: 1;
}

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

.anchorBL {
    display: none;
}

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


.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_text {
    width: calc(100% - 290px);
    overflow: hidden;
}

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

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

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

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



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

.Show>h2 {
    font-size: var(--size40);
    color: #222222;
    font-family: 'bold';
}

.Show>p {
    font-size: var(--size14);
    color: #888888;
    margin-top: 10px;
}

.Show_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;
}

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

.Prev {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top30);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.Prev a {
    width: 100%;
    display: block;
    font-size: var(--size14);
    color: #000000;
}

.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: rgb(217, 217, 217);
    border: 1px solid rgb(217, 217, 217);
    line-height: 1;
    background: #fff;
}

.page .active {
    background: rgb(12, 94, 189);
    border: 1px solid rgb(12, 94, 189);
    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: rgb(217, 217, 217);
    border: 1px solid rgb(217, 217, 217);
    background: #fff;
}


.Mianbao_cen {
    width: var(--max);
    margin: var(--top20) auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--size16);
    color: rgb(102, 102, 102);
    gap: 8px;
}

.Mianbao_cen p {
    color: rgb(12, 94, 189);
}

.Topxu {
    width: var(--max);
    overflow: hidden;
    margin: 15px auto;
}

.Topxu ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-left: 1px solid rgb(34, 34, 34, 0.5);
}

.Topxu ul li {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgb(34, 34, 34, 0.5);
    color: rgb(51, 51, 51);
    font-size: var(--size18);
    line-height: 60px;
    position: relative;
}

.Topxu ul li::after {
    content: "";
    width: 0px;
    height: 2px;
    background: rgb(12, 94, 189);
    border-radius: 2px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.Topxu ul li.action {
    color: rgb(12, 94, 189);
}

.Topxu ul li.action::after {
    width: 70px;
}

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

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

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

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

.Xiangmu ul li h2 {
    text-align: center;
    font-size: var(--size16);
    color: rgb(68, 68, 68);
    padding: var(--top20);
}

.Xiangmu ul li:hover {
    background: rgb(12, 94, 189);
}

.Xiangmu ul li:hover h2 {
    color: #ffffff;
}

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

.Anli_show>h2 {
    text-align: center;
    font-size: var(--size36);
    color: rgb(0, 0, 0);
    line-height: 1;
}

.Anli_show>p {
    text-align: center;
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    line-height: 1;
    margin-top: 15px;
}

.Anli_show_max {
    width: 100%;
    margin-top: var(--top50);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 7vw;
}

.Anli_show_left {
    flex: 1;
    position: relative;
}

.Gq {
    width: max-content;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.Gq p {
    font-size: 15vw;
    color: rgb(247, 248, 251);
    font-family: 'bold';
    line-height: 1;
}

.Gq p:nth-child(2) {
    transform: translateY(100px);
}

.Anli_show_left h2 {
    font-size: var(--size30);
    color: rgb(0, 0, 0);
}

.Anli_show_left h2::after {
    content: "";
    width: 74px;
    height: 4px;
    background: #0c5ebd;
    display: block;
    margin-top: 10px;
}

.Anli_show_left>p {
    font-size: var(--size16);
    color: rgb(84, 84, 84);
    line-height: 2;
    margin-top: var(--top30);
}

.Swiper {
    width: 50%;
    border-radius: var(--top30)
}

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


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

.Zonghe>h2 {
    font-size: var(--size30);
    color: rgb(34, 34, 34);
    font-family: 'bold';
}

.Zonghe>span {
    display: block;
    font-size: var(--size24);
    color: rgb(255, 193, 36);
    text-transform: uppercase;
}

.Zonghe>p {
    font-size: var(--size16);
    color: rgb(34, 34, 34);
    margin-top: var(--top40);
}

.Zonghe_max {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top40);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.Zonghe_max ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}

.Zonghe_max ul li {
    width: 100%;
    position: relative;
}

.Zonghe_max ul li:nth-child(1) {
    grid-area: 1 / 1 / 3 / 2;
    aspect-ratio: 4 / 5;
}

.Zonghe_max ul li:nth-child(2) {
    grid-area: 1 / 2 / 2 / 4;
}

.Zonghe_max ul li:nth-child(3) {
    grid-area: 2 / 2 / 3 / 3;
}

.Zonghe_max ul li:nth-child(4) {
    grid-area: 2 / 3 / 3 / 4;
}

.Zonghe_max ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.Zonghe_max_text {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180.00deg, rgba(0, 0, 0, 0), rgb(0, 0, 0) 100%);
    padding: var(--top20);
    position: absolute;
    bottom: 0;
    left: 0;
}

.Zonghe_max_text h2 {
    font-size: var(--size20);
    color: rgb(255, 255, 255);
}

.Zonghe_max_text p {
    font-size: var(--size14);
    color: rgb(255, 255, 255);
    margin-top: 15px;
    max-height: 0px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.Zonghe_max ul li:hover .Zonghe_max_text p {
    max-height: 90px;
}

.Huanbao {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top40);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.Huanbao_listul {
    width: 100%;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(12, 1fr);
    gap: 15px;
}

.Huanbao_listul li {
    width: 100%;
    position: relative;
}

.Huanbao_listul li:nth-child(1) {
    grid-area: 1 / 1 / 3 / 4;
    aspect-ratio: 4 / 5;
}

.Huanbao_listul li:nth-child(2) {
    grid-area: 1 / 4 / 2 / 8;
}

.Huanbao_listul li:nth-child(3) {
    grid-area: 1 / 8 / 2 / 13;
}

.Huanbao_listul li:nth-child(4) {
    grid-area: 2 / 4 / 3 / 9;
}

.Huanbao_listul li:nth-child(5) {
    grid-area: 2 / 9 / 3 / 13;
}

.Huanbao_listul li:nth-child(6) {
    grid-area: 3 / 1 / 4 / 6;
}

.Huanbao_listul li:nth-child(7) {
    grid-area: 3 / 6 / 4 / 13;
}

.Huanbao_listul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.Zonghe_max_text {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180.00deg, rgba(0, 0, 0, 0), rgb(0, 0, 0) 100%);
    padding: var(--top20);
    position: absolute;
    bottom: 0;
    left: 0;
}

.Zonghe_max_text h2 {
    font-size: var(--size20);
    color: rgb(255, 255, 255);
}

.Zonghe_max_text p {
    font-size: var(--size14);
    color: rgb(255, 255, 255);
    margin-top: 15px;
    max-height: 0px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.Huanbao_listul li:hover .Zonghe_max_text p {
    max-height: 90px;
}

.Yunwei {
    width: 100%;
    margin-top: var(--top40);
}

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

.Yunwei ul li {
    width: 100%;
    overflow: hidden;
    position: relative;
}

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

.Yunwei ul li:hover .Zonghe_max_text p {
    max-height: 90px;
}

.Fuwu_show {
    width: var(--max);
    margin: var(--top80) auto;
    position: relative;
}

.Fuwu_show>h2 {
    font-size: var(--size36);
    color: rgb(0, 0, 0);
    line-height: 1;
}

.Fuwu_show>p {
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    line-height: 1;
    margin-top: 15px;
}

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

.Fuwu_show .Gq {
    left: 0;
    top: var(--top50);
    transform: translateX(0%);
}


.Fuwu h2 {
    font-size: var(--size30);
    color: rgb(0, 0, 0);
}

.Fuwu h2::after {
    content: "";
    width: 74px;
    height: 4px;
    background: #0c5ebd;
    display: block;
    margin-top: 10px;
}

.Fuwu>p {
    font-size: var(--size16);
    color: rgb(84, 84, 84);
    line-height: 2;
    margin-top: var(--top30);
}



.Huanbao_show {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top40);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.Huanbao_ul {
    width: 100%;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(12, 1fr);
    gap: 15px;
}

.Huanbao_ul li {
    width: 100%;
    position: relative;
}

.Huanbao_ul li:nth-child(1) {
    grid-area: 1 / 1 / 3 / 4;
    aspect-ratio: 4 / 5;
}

.Huanbao_ul li:nth-child(2) {
    grid-area: 1 / 4 / 2 / 8;
}

.Huanbao_ul li:nth-child(3) {
    grid-area: 1 / 8 / 2 / 13;
}

.Huanbao_ul li:nth-child(4) {
    grid-area: 2 / 4 / 3 / 9;
}

.Huanbao_ul li:nth-child(5) {
    grid-area: 2 / 9 / 3 / 13;
}

.Huanbao_ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.Guanyu h2 {
    text-align: left;
    font-size: var(--size40);
}

.Guanyu p {
    text-align: left;
    font-size: var(--size16);
}


.Jieshao {
    width: 100%;
    overflow: hidden;
    background: #f3f3f3;
}

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

.Jieshao_max h2 {
    font-size: var(--size30);
    color: rgb(46, 46, 46);
    text-align: center;
}

.Jieshao_max h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #0c5ebd;
    display: block;
    margin: auto;
    margin-top: var(--top20);
}

.Jieshao_max p {
    font-size: var(--size16);
    color: rgb(84, 84, 84);
    line-height: 2;
    margin-top: var(--top50);
}

.Jieshao_max p span {
    font-family: 'bold';
    color: rgb(12, 94, 189);
}

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

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

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

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

.Fazhan>p {
    font-size: var(--size36);
    color: rgb(41, 111, 196);
    text-align: center;
}

.Fazhan>h2 {
    text-align: center;
    font-size: var(--size24);
    color: rgb(51, 51, 51);
    margin-top: 10px;
}

.Fazhan_max {
    width: 100%;
    margin: auto;
    margin-top: var(--top80);
    position: relative;
}

.Fazhan_max::after {
    content: "";
    width: 100%;
    height: 9px;
    background: url(../images/xian.png) no-repeat bottom center / 100% auto;
    position: absolute;
    bottom: 30px;
    left: 0;
}

.Fazhan_Swiper {
    width: 1200px;
    max-width: 100%;
    margin: auto;
}

.Fazhan_Swiper .zhenshangyin-wrap {
    align-items: flex-end;
}

.Fazhan_Swiper ul li {
    width: 100%;
}

.Fazhan_Swiper ul li h2 {
    width: 100%;
    font-size: var(--size18);
    color: rgb(51, 51, 51);
    text-align: center;
    line-height: 1;
}

.Fazhan_Swiper ul li p {
    width: 100%;
    font-size: var(--size16);
    color: rgb(51, 51, 51);
    text-align: center;
    margin-top: 10px;
}

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

.Xian {
    width: 18px;
    overflow: hidden;
    margin: auto;
    margin-bottom: 30px;
}

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

.Banner_in h2 {
    text-align: left;
    font-size: var(--size30);
    font-family: 'm';
}

.Banner_in>span {
    display: block;
    text-align: left;
    font-size: var(--size36);
    color: #ffffff;
    font-family: 'bold';
}

.Banner_in p {
    width: 500px;
    max-width: 100%;
    text-align: left;
    font-size: var(--size14);
    line-height: 1.5;
}

.Guanyuin {
    width: 100%;
    overflow: hidden;
    background: #f3f3f3 url(../images/bejjing1.png) no-repeat bottom center / 1000px auto;
}

.Guanyuin_max {
    width: var(--max);
    margin: 9vw auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 5vw;
}

.Guanyuin_left {
    flex: 1;
}

.Guanyuin_left h2 {
    font-size: var(--size30);
    color: rgb(46, 46, 46);
}

.Guanyuin_left h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #0c5ebd;
    display: block;
    margin-top: var(--top20);
}

.Guanyuin_left p {
    font-size: var(--size16);
    color: rgb(84, 84, 84);
    line-height: 2;
    margin-top: var(--top50);
}

.Guanyuin_left p span {
    font-family: 'bold';
    color: rgb(12, 94, 189);
}

.Guanyuin_left a {
    width: 120px;
    line-height: 40px;
    background: #d70000;
    display: block;
    margin-top: var(--top30);
    font-size: var(--size14);
    color: #ffffff;
    text-align: center;
    ;
}

.Guanyuin_max img {
    width: 50%;
}

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

.Anliin_max {
    width: var(--max);
    overflow: hidden;
    margin: 6vw auto;
}

.Anliin_title {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--top50);
}

.Anliin_title img {
    width: 150px;
    height: auto;
}

.Anliin_title h2 {
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--size30);
    color: rgb(51, 51, 51);
    gap: 10px;

}

.Anliin_max>p {
    text-align: center;
    font-size: var(--size14);
    color: rgb(68, 68, 68);
    margin-top: 15px;
}

.Anliin_Swiper {
    width: 100%;
    margin-top: 5vw;
}

.Anliin_Swiper ul li {
    position: relative;
    overflow: hidden;
}

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

.Anliin_text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid rgb(168, 219, 243);
    background: rgb(255, 255, 255);
    top: 100%;
}

.Anliin_Swiper ul li:hover .Anliin_text {
    top: 0
}

.Anliin_text a {
    width: 100%;
    height: 100%;
    padding: var(--top60) var(--top50);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.Anliin_text h2 {
    width: 100%;
    font-size: var(--size24);
    color: rgb(67, 67, 67);
}

.Anliin_text span {
    width: 100%;
    display: block;
    font-size: var(--size14);
    color: rgb(46, 46, 46);
    margin-top: 15px;
    position: relative;
    padding-bottom: var(--top20);
}

.Anliin_text span::before {
    content: "";
    width: 40px;
    height: 4px;
    border-radius: 4px;
    background: rgb(255, 186, 0);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.Anliin_text span:after {
    content: "";
    width: 80px;
    border-radius: 4px;
    height: 4px;
    background: rgb(39, 112, 195);
    position: absolute;
    bottom: 0;
    left: 0;
}

.Anliin_text p {
    width: 100%;
    font-size: var(--size18);
    color: rgb(46, 46, 46);
    line-height: 2;
    margin-top: var(--top40);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

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

.Pages .zhenshangyin-pager-bullets-bullet {
    width: 14px;
    height: 14px;
    background: #2770c3;
    opacity: 1;
}

.Pages .zhenshangyin-pager-bullets-bullet.active {
    background: #ffba00;
}

.Xinwenin {
    width: var(--max);
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top30);
}

.Xinwenin_left {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    padding: 20px 0;
}

.Xinwenin_left span {
    width: 100%;
    font-size: var(--size50);
    color: rgb(51, 51, 51);
}

.Xinwenin_left h2 {
    width: 100%;
    font-size: var(--size30);
    color: rgb(51, 51, 51);
    margin: 15px 0;
}

.Xinwenin_left p {
    width: 100%;
    font-size: var(--size16);
    color: rgb(51, 51, 51);
}

.Xinwenin_max {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: var(--top60) 0;
}

.Xinwenin_max i {
    width: 2px;
    height: 20px;
    background: #c1c1c1;
    display: block;
}

.Xinwenin_max .prev,
.Xinwenin_max .next {
    width: max-content;
    height: max-content;
    background: transparent;
    position: static;
    inset: 0;
    transform: translate(0%, 0%);
}

.Xinwenin_left a {
    width: 120px;
    line-height: 40px;
    background: #d70000;
    display: block;
    font-size: var(--size14);
    color: #ffffff;
    text-align: center;
    ;
}

.Xinwenin_Swiper {
    width: 60%;
    border-right: 2px solid rgb(234, 234, 234);
    border-left: 2px solid rgb(234, 234, 234);
}

.Xinwenin_Swiper li {
    width: 100%;
    border-right: 2px solid rgb(234, 234, 234);
    box-sizing: border-box;
}

.Xinwenin_Swiper a {
    width: 100%;
    height: 100%;
    display: block;
    padding: var(--top80) 15px;
}

.Tame span {
    font-size: var(--size50);
    color: rgb(224, 224, 224);
    line-height: 1;
}

.Tame p {
    font-size: var(--size16);
    color: rgb(68, 68, 68);
    margin-top: var(--top60);
}

.Xinwenin_Swiper li h2 {
    font-size: var(--size16);
    color: rgb(68, 68, 68);
    margin-top: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.Xinwenin_Swiper li a>img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin: 20px auto;
}

.Xinwenin_Swiper li a>p {
    font-size: var(--size14);
    color: rgb(150, 150, 150);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.Cilicl {
    width: 50px;
    max-width: 60%;
    margin-top: var(--top50);
}

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


.Footer {
    width: 100%;
    overflow: hidden;
    background: #333333 url(../images/qiu.png) no-repeat bottom right 20vw / 15vw 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: var(--top50);
}

.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(--size16);
    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: var(--top30);
}

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

.Fooetr_lianxi {
    width: max-content;
    margin-left: auto;
}

.Fooetr_lianxi a {
    width: 150px;
    height: 50px;
    background: rgb(12, 94, 189);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: var(--size14);
    color: rgb(255, 255, 255);
}

.Fooetr_lianxi a img {
    width: 18px;
    height: auto;
}

.Fooetr_lianxi p {
    font-size: var(--size14);
    color: rgb(255, 255, 255);
    ;
    line-height: 2;
    margin-top: var(--top30);
}

.Footer_erwe {
    width: 150px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    padding: 10px;
}

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

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

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

.Beian_max p {
    font-size: var(--size14);
    color: rgb(160, 160, 160);
    margin: 0 5px;
}

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

.Chanpinin_top {
    width: 100%;
    overflow: hidden;
    background: url(../images/chanpin.png) no-repeat left center / auto 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.Chanpinin_text {
    width: 50%;
    background: rgb(41, 111, 196);
    padding: var(--top30);
}

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

.Chanpinin_text p {
    font-size: var(--size24);
    color: rgb(255, 193, 36);
    margin-top: 5px;
}

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

.Chanpinin_cen ul {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.Chanpinin_cen ul li {
    flex: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 650px;
    position: relative;
}

.Chanpinin_icon {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    gap: 15px;
}

.Chanpinin_img {
    width: 90px;
    aspect-ratio: 4 / 4;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.Chanpinin_img img {
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
}

.Chanpinin_icon h2 {
    width: 100%;
    text-align: center;
    font-size: var(--size20);
    color: rgb(255, 255, 255);
}

.Chanpinin_pos {
    width: 100%;
    height: 100%;
    background: rgb(41, 111, 196, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    padding: var(--top50);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    opacity: 0;
    transition: all 0.5s;
}

.Chanpinin_cen ul li:hover {
    flex: 3;
}

.Chanpinin_cen ul li:hover .Chanpinin_icon {
    opacity: 0;
}

.Chanpinin_cen ul li:hover .Chanpinin_pos {
    opacity: 1;
}

.Chanpinin_pos>h2 {
    width: 100%;
    font-size: var(--size20);
    color: rgb(255, 255, 255);
}

.Chanpinin_pos img {
    width: 44px;
    height: auto;
    margin-top: 15px;
}

.Chanpinin_pos>p {
    width: 100%;
    font-size: var(--size16);
    color: rgb(255, 255, 255);
    margin-top: var(--top30);
    border-bottom: 1px solid #8dc4fa;
    padding-bottom: var(--top30);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

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

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

.Chanpinin_textas h2 {
    font-size: var(--size16);
    color: rgb(255, 255, 255);
}

.Chanpinin_textas p {
    font-size: var(--size16);
    color: rgb(255, 255, 255);
    margin-top: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}