: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 {
    font-family: "m";
    padding-top: 100px;
}

.Hertre {
    width: 100%;
    z-index: 999;
    height: 100px;
    position: fixed;
        top: 0px;
    background: #fff;
}

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

.Logo {
    width: 130px;
    overflow: hidden;

}

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

.Nav {
    width: max-content;
    margin-left: auto;
    margin-right: var(--top60);
}

.Nav ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--top60);
}

.Nav ul li {
    font-size: var(--size18);
    color: rgb(37, 37, 37);
    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(54, 141, 204)
}

.Nav ul li:hover {
    color: rgb(54, 141, 204);
}

.Nav ul li::after {
    content: "";
    width: 25px;
    height: 12px;
    background: rgb(54, 141, 204);
    background: url(../images/banyuan.png) no-repeat center center / 100% 100%;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
    opacity: 0;
}

.Nav ul li.Nav_cen::after {
    opacity: 1;
}

.Nav ul li:hover::after {
    opacity: 1;
}

.Nav_ul {
    width: max-content;
    display: none;
    background: #ffffff;
    position: absolute;
    overflow: hidden;
    top: 100%;
    transition: auto;
    padding: 20px 30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 0px 10px 5px #00000010;
    border-radius: 5px;
}

.Nav_ul a {
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    line-height: 2.5;
    font-size: var(--size14);
}
.Nav_ul a img{
    width: 14px;
    height: auto;
}
.Nav_ul a:hover {
    color: rgb(54, 141, 204);
}

.Nav_ul a.Nav_ul_Nav {
    color: rgb(54, 141, 204);
}

.Tel {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.Tel img {
    width: 30px;
    height: auto;
}

.Tel_text {
    width: max-content;
}

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

.Tel_text p {
    font-size: var(--size20);
    color: rgb(43, 43, 43);
    font-family: 'bold';
    line-height: 1;
}

.An {
    width: 60px;
    height: 60px;
    display: none;
    position: fixed;
    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);
}

.An .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%;
}

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

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

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

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

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

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

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

.Banner img {
    width: 100%;
    min-height: 150px;
    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(--size36);
    color: rgb(255, 255, 255);
    line-height: 1;
}

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

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

.Lianxi ul {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    gap: var(--top40);
}

.Lianxi ul li {
    flex: 1;
    overflow: hidden;
    background: rgb(243, 247, 250);
    padding: var(--top50) var(--top60);
}

.Lianxi ul li img {
    width: 40px;
    aspect-ratio: 4 / 4;
    object-fit: contain;
    margin: auto;
}

.Lianxi ul li h2 {
    text-align: center;
    font-size: var(--size20);
    color: rgb(51, 51, 51);
    margin-top: var(--top30);
}

.Lianxi ul li p {
    font-size: var(--size16);
    color: rgb(51, 51, 51);
    line-height: 1.5;
    margin-top: var(--top20);
    text-align: center;
}

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

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

.Lianxi_form form {
    width: 100%;
    margin-top: var(--top60);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px 0px;
}

.Lianxi_form form label {
    width: calc(50% - 20px);
    overflow: hidden;
    border: 1px solid rgb(229, 229, 229);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 8px;
}

.Lianxi_img {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Lianxi_img img {
    max-width: 40%;
    max-height: 40%;
}

.Lianxi_form form label input {
    flex: 1;
    height: 70px;
    border-left: 1px solid rgb(229, 229, 229);
    font-size: var(--size16);
    color: rgb(173, 173, 173);
    padding: 0 var(--top30);
}

.Lianxi_form form label:nth-child(7) {
    width: 100%;
}

.Lianxi_form form label textarea {
    flex: 1;
    height: 310px;
    font-family: 'm';
    border: transparent;
    font-size: var(--size16);
    color: rgb(173, 173, 173);
    padding: 22px var(--top30);
    resize: none;
}

.submit {
    width: 400px;
    max-width: 100%;
    height: 70px;
    background: rgb(54, 141, 204);
    border-radius: 8px;
    color: rgb(255, 255, 255);
    font-size: var(--size20);
    cursor: pointer;
    margin: auto;
}

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

.zixun ul {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top40);
}

.zixun ul li {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    position: relative;
}

.zixun ul li img {
    width: 320px;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 50px 0ox 50px 0px;
}

.zixun_r {
    width: calc(100% - 360px);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.zixun_r h1 {
    font-size: var(--size20);
    color: rgb(37, 37, 37);
    font-family: 'bold';
    line-height: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    transition: all 0.3s;
}

.zixun_r span {
    display: block;
    font-size: var(--size14);
    color: #959595;
    line-height: 1;
    margin-top: var(--top20);
    transition: all 0.3s;
}

.zixun_r p {
    font-size: var(--size16);
    color: #666666;
    line-height: 1.8;
    margin-top: var(--top20);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: all 0.3s;
}

.zixun_r a {
    font-size: var(--size16);
    color: rgb(51, 51, 51);
    width: 120px;
    display: block;
    line-height: 40px;
    box-sizing: border-box;
    border: 1px solid rgb(51, 51, 51);
    margin-top: var(--top20);
    text-align: center;
    transition: all 0.3s;
}

.zixun ul li:hover .zixun_r h1 {
    color: rgb(54, 141, 204);
}

.zixun ul li:hover .zixun_r a {
    color: rgb(54, 141, 204);
    border: 1px solid rgb(54, 141, 204);
}

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

.miaobao {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size: var(--size16);
    color: rgb(51, 51, 51);
}

.miaobao img {
    width: 20px;
    height: auto;
}

.miaobao p {
    width: calc(100% - 30px);
}

.zixun_show>h2 {
    text-align: center;
    font-size: var(--size30);
    color: #333333;
    margin-top: var(--top50);
    line-height: 1.2;
}

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

.Shjina>p {
    width: max-content;
    font-size: var(--size16);
    color: #999999;
    background-image: url(../images/shijian.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 20px auto;
    padding-left: 25px;
}

.Shjina>p:nth-child(2) {
    background-image: url(../images/yanjing.png);
}

.zixun_text {
    width: 1080px;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    font-size: var(--size14);
    color: rgb(51, 51, 51);
    line-height: 1.8;
    margin-top: var(--top30);
}

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

.prev {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: var(--top30);
    border-top: 1px solid rgb(98, 98, 98, 0.1);
    border-bottom: 1px solid rgb(98, 98, 98, 0.1);
    padding: 15px 0;
}

.prev a {
    width: max-content;
    max-width: 48%;
    font-size: var(--size14);
    color: #333333;
    display: block;
}

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

.page .active,
.page .total {
    font-size: 12px;
    padding: 8px 12px;
    color: rgb(102, 102, 102);
    border: 1px solid #d9d9d9;
    line-height: 1;
    background: #fff;
}

.page .active {
    background: rgb(54, 141, 204);
    border: 1px solid rgb(54, 141, 204);
    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: rgb(102, 102, 102);
    border: 1px solid #d9d9d9;
    background: #fff;
}

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

.Fuwu ul {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top40);
}

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

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

.Fuwu ul li img {
    width: 48%;
    height: auto;
}

.Fuwu_text {
    width: 45%;
    overflow: hidden;
}

.Fuwu_text span {
    font-size: 150px;
    color: rgb(145, 162, 176, 0.1);
    font-family: 'bold';
    line-height: 1;
}

.Fuwu_text h2 {
    font-size: var(--size24);
    color: rgb(37, 37, 37);
    line-height: 1;
    font-family: 'bold';
    margin-top: -25px;
    position: relative;
    z-index: 5;
}

.Fuwu_text p {
    font-size: var(--size18);
    color: rgb(37, 37, 37);
    line-height: 2;
    margin-top: var(--top40);

}

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

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

.zizhi_max>h1 {
    text-align: center;
    font-size: var(--size30);
    color: #333333;
    line-height: 1;
    font-family: 'bold';
}

.zizhi_max>p {
    font-size: var(--size18);
    color: rgb(207, 207, 207);
    line-height: 1;
    text-align: center;
    margin-top: 10px;
}

.zizhi_tui {
    width: 100%;
    overflow: hidden;
    background-image: url(../images/lujing.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 90% auto;
    padding-bottom: 20px;
    margin-top: var(--top50);
}

.zizhi_tui ul {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.zizhi_tui ul li {
    width: 25%;
    overflow: hidden;
    margin: 0 10px;
}

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

.zizhi_tui ul li p {
    text-align: center;
    font-size: var(--size16);
    color: rgb(98, 98, 98);
    margin-top: 20px;
}

.zizhi_bot {
    width: 100%;
    overflow: hidden;
    background-image: url(../images/lujing.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding-bottom: 20px;
    margin-top: var(--top50);
}

.zizhi_bot ul {
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

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

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

.zizhi_bot ul li p {
    text-align: center;
    font-size: var(--size16);
    color: rgb(98, 98, 98);
    margin-top: 20px;
}

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

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

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

.Guanyu_top_left video {
    width: 400px;
    max-width: 100%;
    height: auto;
    border-radius: var(--top20) var(--top20) 0px var(--top20);
}

.Guanyu_top_right {
    width: 50%;
    overflow: hidden;
    padding-left: var(--top60);
    padding-bottom: var(--top40);
}

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

.Guanyu_top_right h2 span {
    font-size: var(--size18);
    color: rgb(207, 207, 207);
    margin-left: 10px;
}

.Guanyu_top_right p {
    font-size: var(--size18);
    color: rgb(37, 37, 37);
    line-height: 1.8;
    margin-top: var(--top30);
}

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

.Guanyu_bottom_left {
    width: 50%;
    overflow: hidden;
    font-size: var(--size18);
    color: rgb(37, 37, 37);
    line-height: 1.8;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: var(--top30) 0;
    padding-right: var(--top60);
}

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

.Guanyu_bottom_right img {
    width: 100%;
    height: auto;
    border-radius: 0px var(--top20) var(--top20) var(--top20);
}

.Fanwei {
    width: var(--max);
    margin: var(--top100) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top40);
}

.Fanwei_left {
    width: 200px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 6px 16px 0px rgba(222, 230, 239, 0.3);
    background: rgb(255, 255, 255);
        position: sticky;
    top: 15px;
}

.Fanwei_left>h2 {
    border-radius: 10px 10px 0px 0px;
    background: linear-gradient(228.98deg, rgb(125, 178, 255) 0%, rgb(49, 109, 197) 98.729%);
    font-size: var(--size20);
    color: rgb(255, 255, 255);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
}

.Fanwei_left h2 img {
    width: 20px;
    height: auto;
}

.Fanwei_ul {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.Fanwei_List {
    width: 100%;
    overflow: hidden;
    /*padding: 0 20px;*/
    transition: auto;
}
.Fanwei_top_er:hover{
        background: rgb(54, 141, 204);
}
.Fanwei_top_er:hover *{
    color: rgb(254, 254, 254);
}
.Fanwei_yi {
    border-top: 1px dashed rgb(206, 215, 228);
}

.Fanwei_List:nth-child(1) {
    border: transparent;
}

.Fanwei_top {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    cursor: pointer;
}

.Fanwei_top_er {
    padding: 10px 20px;
}

.Fanwei_top svg {
    width: 16px;
    height: auto;
    display: block;
    transform: rotate(-90deg);
    display: none;
}

.Fanwei_top h2 {
    flex: 1;
    font-size: var(--size16);
    color: rgb(37, 37, 37);
    line-height: 1.2;
        text-align: center;
}

.Fanwei_a {
    width: 100%;
    overflow: hidden;
    padding-left: 28px;
    display: none;
    transition: auto;
}

.Fanwei_a a {
    width: 100%;
    overflow: hidden;
    font-size: var(--size14);
    color: rgb(120, 120, 120);
    display: block;
    margin: 10px 0;
}

.Fanwei_er {
    width: 100%;
    overflow: hidden;
    transition: auto;
}

.Fanwei_right {
    flex: 1;
}

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

.Huanbao ul li {
    width: 100%;
    overflow: hidden;
    border-radius: 0px 0px 8px 8px;
    box-shadow: 0px 4px 10px 0px rgba(180, 209, 236, 0.1);
    background: rgb(255, 255, 255);
}

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

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

.Fanwei_text h2 {
    font-size: var(--size20);
    color: rgb(37, 37, 37);
    text-align: center;
    line-height: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Fanwei_text p {
    font-size: var(--size10);
    color: rgb(120, 120, 120);
    text-align: center;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Fanwei_textp {
    widows: 100%;
    overflow: hidden;
    font-size: 12px;
    color: rgb(120, 120, 120);
    line-height: 1.5;
    text-align: center;
}

.Fanwei_text a {
    width: max-content;
    max-width: 100%;
    text-align: center;
    line-height: 40px;
    background: rgb(54, 141, 204);
    font-size: var(--size14);
    color: rgb(254, 254, 254);
    padding: 0 var(--top30);
    display: block;
    margin: var(--top20) auto;
}

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

.fanwei ul li {
    width: 100%;
    overflow: hidden;
    border-radius: 0px 0px 8px 8px;
    box-shadow: 0px 4px 10px 0px rgba(180, 209, 236, 0.1);
    background: rgb(255, 255, 255);
}

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

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

.fanweiaa_text h2 {
    font-size: var(--size20);
    color: rgb(37, 37, 37);
    text-align: center;
    line-height: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.fanweiaa_text a {
    font-size: var(--size14);
    color: rgb(54, 141, 204);
    display: block;
    text-align: center;
    margin-top: 15px;
}
.er_av{
    background: rgb(54, 141, 204);
    color: rgb(254, 254, 254);
}
.er_av svg,
.yi_quan>.Fanwei_top_yi>svg,
.yi_av>.Fanwei_top_yi>svg {
    transform: rotate(0deg)
}

.Fanwei_a a.article,
.er_av h2,
.yi_av>.Fanwei_top_yi>h2 {
   color: rgb(254, 254, 254);
}

.yi_quan .Fanwei_er,
.yi_av>.Fanwei_er,
.yi_quan .er_av .Fanwei_a {
    display: block;
}

.Fanwei_right .zixun_show {
    width: 100%;
    margin: 0;
}

.Fanwei_right .zixun_show .zixun_text {
    width: 100%;
}

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

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

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

.Banner_index_max span {
    display: block;
    text-align: center;
    font-size: var(--size24);
    color: rgb(255, 255, 255);
    margin-top: var(--top20);
}

.Banner_index_text {
    width: max-content;
    max-width: 100%;
    margin: auto;
    margin-top: 20px;
    background: rgb(54, 141, 204);
    padding: 15px var(--top50);
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5vw 10px;
}

.Banner_index_text p {
    font-size: var(--size20);
    color: rgb(246, 246, 246);
    letter-spacing: 10px;
}


.Footer {
    width: 100%;
    overflow: hidden;
    background: #282C38;
}

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

.Footer_l {
    width: 35%;
    overflow: hidden;
}

.Footer_logo {
    width: 120px;
    max-width: 100%;
    overflow: hidden;
}

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

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

.Footer_l ul li {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.Footer_img {
    width: 20px;
    height: 20px;
    background: #242933;
    border-radius: 50%;
    display: flex;
    border-radius: 50%;
}

.Footer_img img {
    max-width: 80%;
    max-height: 80%;
    margin: auto;
}

.Footer_l ul li p {
    width: calc(100% - 30px);
    font-size: var(--size14);
    color: #ABACAD;
}

.Footer_c {
    width: max-content;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
}

.Footer_c ul {
    width: max-content;
    margin-right: 4vw;
}

.Footer_c ul h2 {
    font-size: var(--size18);
    color: #FFFFFF;
    font-family: 'bold';
}

.Footer_c ul li {
    font-size: var(--size14);
    color: #707070;
    text-align: center;
    margin-top: 15px;
}

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

.Footer_r img {
    width: 120px;
    height: auto;
}

.Footer_r p {
    font-size: var(--size14);
    color: #ABACAD;
    text-align: center;
    margin-top: 15px;
}

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

.beian_max {
    width: var(--max);
    overflow: hidden;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.beian_max p {
    font-size: var(--size16);
    color: #ABACAD;
    margin: 0 5px;
}

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

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

.Fuwuin>p {
    text-align: center;
    font-size: var(--size18);
    color: rgb(207, 207, 207);
    margin-top: 10px;
    line-height: 1;
}

.Fuwuin ul {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top60);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

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

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

.Fuwuin ul li h3 {
    font-size: var(--size30);
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.Fuwuin_text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(54, 141, 204, 0.8);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    opacity: 0;
}

.Fuwuin_text h2 {
    width: 100%;
    text-align: center;
    font-size: var(--size30);
    color: rgb(250, 250, 250);
}

.Fuwuin_text a {
    font-size: var(--size16);
    color: rgb(255, 255, 255);
    width: 100%;
    text-align: center;
    margin-top: var(--top20);
}

.Fuwuin ul li:hover h3 {
    opacity: 0;
}

.Fuwuin ul li:hover .Fuwuin_text {
    opacity: 1;
}

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

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

.Youshi>p {
    text-align: center;
    font-size: var(--size18);
    color: rgb(207, 207, 207);
    margin-top: 10px;
    line-height: 1;
}


.Youshi ul {
    width: var(--max);
    overflow: hidden;
    margin: auto;
    position: relative;
    margin-top: var(--top60);
}

.Youshi ul>img {
    width: 520px;
    height: auto;
    margin: auto;
}

.Youshi ul li {
    width: 38%;
    overflow: hidden;
    padding: var(--top30);
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: var(--top20);
}

.Youshi_left {
    width: 52px;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.Youshi_img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    display: flex;
    position: relative;
    z-index: 9;
}

.Youshi_img img {
    max-width: 70%;
    max-height: 70%;
    margin: auto;
}

.Youshi_left p {
    font-size: 20px;
    color: #ffffff;
    margin-top: var(--top30);
}

.Youshi_right {
    flex: 1;
    position: relative;
    z-index: 5;
}

.Youshi_right h2 {
    font-size: var(--size20);
    color: rgb(51, 51, 51);
    font-family: 'bold';
    line-height: 1;
    position: relative;
    z-index: 2;
}

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


.Youshi ul li:nth-child(4n+1) .Youshi_left p {
    color: rgb(72, 109, 229);
}

.Youshi ul li:nth-child(4n+2) .Youshi_left p {
    color: #89e2e1;
}

.Youshi ul li:nth-child(4n+3) .Youshi_left p {
    color: #f17f68;
}

.Youshi ul li:nth-child(4n) .Youshi_left p {
    color: rgb(55, 201, 116);
}


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

.Youshi ul li:nth-child(2n+1) h2,
.Youshi ul li:nth-child(2n+1) p {
    text-align: right;
}

.Youshi ul li:nth-child(4n+1) {
    background: linear-gradient(to right, #ffffff 4%, #6c8aea 96%);

}

.Youshi ul li:nth-child(4n+1)::after {
    content: "";
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background: linear-gradient(to right, #ffffff 4%, #dae2f9 96%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 20px;
}

.Youshi ul li:nth-child(4n+1) .Youshi_img {
    background: rgb(72, 109, 229);
}


.Youshi ul li:nth-child(4n+2) {
    background: linear-gradient(to left, #ffffff 4%, #89e2e1 96%);

}

.Youshi ul li:nth-child(4n+2)::after {
    content: "";
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background: linear-gradient(to left, #ffffff 4%, #e8f9f9 96%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 20px;
}

.Youshi ul li:nth-child(4n+2) .Youshi_img {
    background: #89e2e1;
}

.Youshi ul li:nth-child(4n+2) .Youshi_l p {
    color: #89e2e1;
}


.Youshi ul li:nth-child(4n+3) {
    background: linear-gradient(to right, #ffffff 4%, #f17f68 96%);

}

.Youshi ul li:nth-child(4n+3)::after {
    content: "";
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background: linear-gradient(to right, #ffffff 4%, #fde7e2 96%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 20px;
}

.Youshi ul li:nth-child(4n+3) .Youshi_img {
    background: #f17f68;
}

.Youshi ul li:nth-child(4n+3) .Youshi_l p {
    color: #f17f68;
}


.Youshi ul li:nth-child(4n) {
    background: linear-gradient(to right, #37c974 4%, #ffffff 96%);

}

.Youshi ul li:nth-child(4n)::after {
    content: "";
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background: linear-gradient(to right, #d8f4e4 4%, #ffffff 96%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 20px;
}

.Youshi ul li:nth-child(4n) .Youshi_img {
    background: rgb(55, 201, 116);
}

.Youshi ul li:nth-child(4n) .Youshi_l p {
    color: rgb(55, 201, 116);
}


.Youshi ul li {
    position: absolute;
}

.Youshi ul li:nth-child(4n+1) {
    top: 3%;
    left: 20px;
}

.Youshi ul li:nth-child(4n+2) {
    right: 20px;
    top: 5%;
}

.Youshi ul li:nth-child(4n+3) {
    top: 42%;
    left: 0;
}

.Youshi ul li:nth-child(4n) {
    top: 45%;
    right: 0;
}

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

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

.Xinwenin>p {
    text-align: center;
    font-size: var(--size18);
    color: rgb(207, 207, 207);
    margin-top: 10px;
    line-height: 1;
}

.Xinwenin_max {
    width: 1660px;
    max-width: calc(100% - 30px);
    overflow: hidden;
    margin-top: var(--top60);
    float: right;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--top40);
}

.Xinwenin_max ul {
    width: 50%;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    gap: var(--top40);
}

.Xinwenin_max ul li {
    flex: 1;
}

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

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

.Xinwenin_img h2 {
    width: max-content;
    background: #368DCC;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: var(--size14);
    color: #FEFEFE;
    padding: 5px 10px;
}

.Xinwenin_max ul li>h2 {
    font-size: var(--size16);
    color: #070707;
    line-height: 1;
    margin-top: var(--top20);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Xinwenin_max ul li p {
    font-size: var(--size14);
    color: #787878;
    line-height: 1.8;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.Xinwenin_max ul li a {
    width: max-content;
    line-height: 50px;
    background: #368DCC;
    padding: 0 var(--top40);
    font-size: var(--size14);
    color: #FEFEFE;
    margin-top: var(--top20);
    display: block;
}

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

.Xintui img {
    width: 100%;
    aspect-ratio: 6 / 4;
}

.Xintui_text {
    width: 55%;
    overflow: hidden;
    background: #FEFEFE;
    position: absolute;
    bottom: 0;
    right: 0;
}

.Xintui_max {
    width: 100%;
    overflow: hidden;
    padding: var(--top30) var(--top40);
}

.Xintui_max h2 {
    font-size: var(--size30);
    color: #368DCC;
    line-height: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Xintui_max p {
    font-size: var(--size14);
    color: #787878;
    line-height: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin-top: var(--top20);
}

.Xintui_text a {
    display: block;
    width: 100%;
    overflow: hidden;
    background: #368DCC;
    font-size: var(--size14);
    color: #FEFEFE;
    padding: 10px var(--top40);
}


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

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

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

.Anli_max>p {
    text-align: center;
    font-size: var(--size18);
    color: rgb(207, 207, 207);
    margin-top: 10px;
    line-height: 1;
}

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

.Anli_max ul li {
    width: 100%;
    border-radius: 0px 0px 8px 8px;
    overflow: hidden;
    box-shadow: 0px 2px 10px 0px rgba(14, 60, 105, 0.1);
    background: rgb(255, 255, 255);
}

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

.Anli_text{
    width: 100%;
    overflow: hidden;
    padding: var(--top30) var(--top20);
}
.Anli_text h2 {
    font-size: var(--size20);
    color: #333333;
    line-height: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Anli_text p {
    font-size: var(--size14);
    color: #787878;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: var(--top20);
}
.Anli_text a{
    width: max-content;
    display: block;
    max-width: 100%;
    line-height: 40px;
    padding: 0 var(--top40);
    color: #368DCC;
    font-size: var(--size14);
    border-radius: 40px;
    display: block;
    margin-top: var(--top20);
}
.Anli_text a:hover{
    background: #368DCC;
    color: #ffffff;
}
.Xianqing{
    width: var(--max);
    overflow: hidden;
    margin: var(--top30) auto var(--top100);
}
.Xianqing_top{
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top80);
    margin-top: var(--top50);
}
.Xianqing_top_l{
    width: 470px;
}
.Xianqing_top_l img{
    width: 100%;
    height: auto;
}

.Xianqing_top_r{
    flex: 1;
}
.Xianqing_top_h{
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.Xianqing_top_h h2{
    flex: 1;
    font-size: var(--size24);
    color: #252525;
}
.Xianqing_top_h p{
    width: max-content;
    font-size: var(--size16);
    color: #787878;
    text-align: center;
}
.Xianqing_top_h p span{
    display: block;
    color: #FF7200;
}
.Xianqing_top_r>p{
    font-size: var(--size16);
    color: #787878;
    margin-top: var(--top30);
}
.Xianqing_top_r a{
    width: 130px;
    line-height: 40px;
    background: #368DCC;
    display: block;
    font-size: var(--size16);
    color: #fff;
    margin-top: var(--top100);
    text-align: center;
}
.Erweima{
    width: 300px;
    max-width: 95%;
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
    padding: var(--top30);
    box-shadow: 0px 0px 10px 5px #00000020;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
}
.Erweima h2{
    font-size: var(--size18);
    color: #000000;
    text-align: center;
}
.Erweima img{
    width: 100%;
    max-width: 100%;
    margin: auto;
    margin-top: 15px;
}
.Xianqing_cen{
    width: 100%;
    overflow: hidden;
    margin-top: var(--top50);
}
.Xianqing_cen>h2{
    font-size: var(--size24);
    color: #252525;
    font-family: 'bold';
    line-height: 1;
    border-left: 3px solid #368DCC;
    padding-left:10px;
}
.Xianqing_text{
    width: 100%;
    overflow: hidden;
    margin-top: var(--top30);
    font-size: var(--size14);
    color: #252525;
    line-height: 2;
    transition: auto;
}
.Xianqing_text table{
    max-width: 100%;
    border: transparent;
}
.Xianqing_text table td{
    padding: 10px 5px;
}
.Xianqing_cen ul{
    width: 100%;
    margin-top: var(--top30);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--top60);
    border-bottom: 1px solid #D4D4D4;
}
.Xianqing_cen ul li{
    font-size: var(--size18);
    color: #252525;
    cursor: pointer;
    padding-bottom: 15px;
    position: relative;
}
.Xianqing_cen ul li::after{
    content: "";
    width: 0%;
    height: 2px;
    background: #368DCC;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 2;
}
.Xianqing_cen ul li.Xianqing_nav{
    color: #368DCC;
}
.Xianqing_cen ul li.Xianqing_nav::after{
    width: 100%;
}
.jianjiea .Xianqing_text{
    display: none;
}
.jianjiea .Xianqing_text:nth-child(1){
    display: block;
}
.ceshi .Xianqing_text{
    display: none;
}
.ceshi .Xianqing_text:nth-child(1){
    display: block;
}
.Wentu{
    width: 100%;
    overflow: hidden;
    margin-top: var(--top30);
}
.Wentu_list{
    width: 100%;
    overflow: hidden;
}

.Wentu_list h3{
    width: 100%;
    overflow: hidden;
    background: #EEF3F7;
    font-size: var(--size16);
    color: #252525;
    padding: 15px 20px;
}
.Wentu_list p{
    font-size: var(--size16);
    color: #252525;
    line-height: 2;
    padding: var(--top30) 20px;
}



