: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;
}


body {
    padding-top: 100px;
}

.Hertre {
    width: 100%;
    z-index: 999;
    height: 100px;
    position: fixed;
    top: 0;
    background: #fff;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.16);
}

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

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

.Nav ul li {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    line-height: 100px;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    position: relative;

}

.Nav ul li svg {
    width: 10px;
    height: auto;
    fill: #030000;
}


.Nav ul li.active,
.Nav ul li:hover {
    color: rgba(26, 60, 163, 1);
}

.Nav ul li.active svg,
.Nav ul li:hover svg {
    fill: rgba(26, 60, 163, 1);
}

.Nav_item_di {
    width: 100%;
    display: none;
    background: #ffffff;
    position: fixed;
    overflow: hidden;
    top: 100px;
    transition: auto;
    padding: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.Nav_item {
    width: max-content;
    display: none;
    background: #ffffff;
    position: absolute;
    overflow: hidden;
    top: 100px;
    transition: auto;
    left: 0;
}

.Nav_item_di a,
.Nav_item a {
    color: rgba(51, 51, 51, 1);
    display: block;
    line-height: 2.5;
    text-align: left;
    font-size: var(--size16);
}

.Nav_item_di a {
    visibility: hidden;
}

.Nav_item a:hover,
.Nav_item a.active {
    color: rgba(26, 60, 163, 1);
}


.Nav_item_zi {
    width: 100%;
    display: none;
    background: #ffffff;
    position: fixed;
    overflow: hidden;
    top: 100px;
    transition: auto;
    padding: 20px;
    left: 50%;
    transform: translateX(-50%);
}

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

.Nav_item_zi_content_item {
    flex: 1;
}

.Nav_item_zi_content_item h2 {
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    line-height: 1.2;
    font-weight: 700;
    border-bottom: 1px solid rgba(51, 51, 51, 1);
    padding-bottom: 10px;
}

.Nav_item_zi_content_item_list {
    width: 100%;
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.Nav_item_zi_content_item_list a {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    line-height: 1.2;
}

.Nav_item_zi_content_item_list a:hover {
    color: rgba(26, 60, 163, 1);
}

.Hertre_right {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top20);
}

.Hertre_right a {
    width: max-content;
    display: block;
    line-height: 40px;
    border: 1px solid rgba(26, 60, 163, 1);
    border-radius: 40px;
    padding: 0 var(--top30);
    font-size: var(--size14);
    color: rgba(26, 60, 163, 1);
}

.Hertre_right a:hover {
    background: rgba(26, 60, 163, 1);
    color: rgb(255, 255, 255);
    ;
}

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

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

.menu_button:focus {
    outline: none;
}

.menu_button .line {
    fill: none;
    stroke: #000000;
    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;
    background: rgba(26, 60, 163, 1);
}

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

.Banner_text {
    width: var(--max);
    margin: 160px auto;
    font-size: var(--size50);
    color: rgba(255, 255, 255, 1);
    text-align: center;
    font-weight: 600;
}


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

.Lianxi {
    width: 100%;
    overflow: hidden;
    background: rgba(1, 14, 55, 1);
}

.Lianxi_max {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top50);
}

.Lianxi_max_left {
    flex: 1;
}

.Lianxi_max_left h2 {
    font-size: var(--size40);
    color: rgba(255, 255, 255, 1);
    line-height: 1.2;
}

.Lianxi_max_left>p {
    font-size: var(--size16);
    color: rgba(90, 125, 232, 1);
    line-height: 1.5;
    margin-top: var(--top30);
}

.Lianxi_max_left a {
    width: max-content;
    display: block;
    line-height: 50px;
    background: rgba(26, 60, 163, 1);
    border-radius: 58px;
    font-size: var(--size20);
    color: rgb(255, 255, 255);
    padding: 0 20px;
    margin-top: var(--top50);
}

.Lianxi_max_left a:hover {
    background: rgb(255, 255, 255);
    color: rgba(26, 60, 163, 1);
}

.Lianxi_desc {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: var(--top30);
}

.Lianxi_desc p {
    width: 100%;
    background: url(../images/duihao.png) no-repeat left center / 20px auto;
    padding-left: 30px;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    min-height: 20px;
}

.Lianxi_max_right {
    width: 50%;
    border-radius: var(--top20);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16);
    position: relative;
}

.Lianxi_max_right>img {
    width: 180px;
    height: auto;
    position: absolute;
    bottom: -40px;
    right: -40px;
}

.Lianxi_max_right form {
    width: 100%;
    padding: var(--top50) var(--top40);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top30);
}

.Lianxi_form_item {
    width: 100%;
}

.Lianxi_form_item p {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
}

.Lianxi_form_item input {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(204, 204, 204, 1);
    font-size: var(--size14);
    color: rgba(153, 153, 153, 1);
    padding: 0 var(--top20);
    margin-top: 10px;
}


.Lianxi_max_but button {
    width: 240px;
    height: 50px;
    border-radius: 5px;
    background: rgba(1, 14, 55, 1);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
}

.Lianxi_max_but button:hover {
    width: 260px;
}

.Lianxi_max_but p {
    font-size: var(--size14);
    color: rgba(1, 14, 55, 1);
    line-height: 1.5;
    margin-top: 10px;
    padding-right: 100px;
}

.Tuandui>h2 {
    text-align: center;
    font-size: var(--size16);
    color: rgba(26, 60, 163, 1);
}

.Tuandui>p {
    text-align: center;
    font-size: var(--size50);
    color: rgba(1, 14, 55, 1);
    line-height: 1;
    font-weight: 700;
    margin-top: 10px;
}


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

.Tuandui ul li {
    width: 100%;
}

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

.Tuandui ul li h3 {
    font-size: var(--size24);
    color: rgba(26, 60, 163, 1);
    font-weight: 700;
    margin-top: var(--top30);
}

.Tuandui ul li p {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
}

.Fangan {
    width: 100%;
    overflow: hidden;
    background: rgba(1, 14, 55, 1);
}

.Fangan_max {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top50);
}


.Fangan_left {
    width: 50%;
}

.Fangan_left h2 {
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
}

.Fangan_left p {
    font-size: var(--size50);
    color: rgba(255, 255, 255, 1);
    line-height: 1.2;
    font-weight: 700;
    margin-top: 10px;
}

.Fangan_left span {
    display: block;
    font-size: var(--size24);
    color: rgba(255, 255, 255, 1);
    margin-top: var(--top30);
}

.Fangan_left a {
    width: max-content;
    display: block;
    line-height: 50px;
    background: rgba(255, 255, 255, 1);
    border-radius: 58px;
    font-size: var(--size20);
    color: rgba(26, 60, 163, 1);
    padding: 0 20px;
    margin-top: 20px;
}

.Fangan_left a:hover {
    background: rgba(26, 60, 163, 1);
    color: rgba(255, 255, 255, 1);
}

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

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

.Fangan_right svg {
    width: 100px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.Fangan_right svg:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video_modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.video_modal.show {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 1;
}

.video_modal_content {
    position: relative;
    margin: auto;
    width: 80%;
    max-width: 800px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.8) translateY(-50px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
}

.video_modal.show .video_modal_content {
    transform: translate(-50%, -50%) scale(1);
}

.video_modal_close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.video_modal_close:hover {
    color: rgba(26, 60, 163, 1);
}

#modalVideo {
    width: 100%;
    height: auto;
    display: block;
}

.Wenda h2 {
    text-align: center;
    font-size: var(--size50);
    color: rgba(26, 60, 163, 1);
    font-weight: 700;
}

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

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

.group_image {
    width: 35%;
}

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

.group_content {
    flex: 1;
    border-radius: 3px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16);
}

.content_item {
    width: 100%;
    border-bottom: 1px solid rgba(245, 245, 245, 1);
    padding: var(--top30) var(--top40);
}

.content_item_title {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 4vw;
    margin-bottom: var(--top20);
    cursor: pointer;
}

.content_item_title h3 {
    flex: 1;
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    font-weight: 600;
}

.content_item_title svg {
    transform: rotate(180deg);
}

.content_item p {
    font-size: var(--size14);
    color: rgba(51, 51, 51, 1);
    line-height: 1.5;
    display: none;
    transition: auto;
}

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

.content_item:nth-child(1) .content_item_title svg {
    transform: rotate(0deg);
}


.Wenda_list:nth-child(2n) .wenda_group {
    flex-direction: row-reverse;
}

.Baojia>img {
    width: 250px;
    max-width: 50%;
    height: auto;
    margin: auto;
}

.Baojia>h2 {
    text-align: center;
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top30);
}

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

.Baojia_max_left {
    width: 100%;
    border-top: 1px solid rgba(221, 221, 221, 1);
    border-bottom: 1px solid rgba(221, 221, 221, 1);
    padding: var(--top20) 0;
}

.Baojia_max_left ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--top60);
}

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

.N {
    width: 40px;
    height: 40px;
    background: rgba(204, 204, 204, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-size: 18px;
    font-weight: 700;
    color: rgba(51, 51, 51, 1);
    border-radius: 50%;
}


.Baojia_max_left ul li p {
    flex: 1;
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    font-weight: 600;
}

.Baojia_max_left ul li.active .N {
    background: rgba(26, 60, 163, 1);
    color: rgba(255, 255, 255, 1);
}

.Baojia_max_left ul li.active p {
    color: rgba(26, 60, 163, 1);
}

.Baojia_form {
    width: 100%;
    margin-top: var(--top30);
}

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

.Baojia_form_item {
    width: 100%;
}

.Baojia_form_item p {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    font-weight: 700;
}

.Baojia_form_item>input {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(204, 204, 204, 1);
    font-size: var(--size14);
    color: rgba(153, 153, 153, 1);
    padding: 0 var(--top20);
    margin-top: 10px;
}

.Baojia_form_item textarea {
    width: 100%;
    height: 120px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(204, 204, 204, 1);
    font-size: var(--size14);
    color: rgba(153, 153, 153, 1);
    padding: 10px var(--top20);
    margin-top: 10px;
    resize: none;
}

.Baojia_form_item>span {
    display: block;
    font-size: var(--size16);
    color: rgba(153, 153, 153, 1);
    margin-top: 10px;
}

.Baojia_form_wenjian {
    width: 100%;
    margin-top: 10px;
    position: relative;
    padding: var(--top20);
    border: 1px solid rgba(204, 204, 204, 1);
    border-radius: 5px;
    cursor: pointer;
}

.Baojia_form_wenjian svg {
    width: 40px;
    height: auto;
    display: block;
    margin: auto;
}

.Baojia_form_wenjian span {
    display: block;
    text-align: center;
    font-size: var(--size16);
    color: rgba(153, 153, 153, 1);
    margin-top: 10px;
}

.Baojia_form_wenjian input {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.uploaded_file_display {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    border: 1px solid rgba(26, 60, 163, 1);
    border-radius: 8px;
    background: #f6ffed;
    display: none;
}

#filePreview {
    display: none;
}

.uploaded_file_item {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.file_preview {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
}

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

.file_icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: 1px solid rgba(26, 60, 163, 1);
}

.file_icon svg {
    width: 32px;
    height: auto;
}

.file_info {
    flex: 1;
    min-width: 0;
}

.file_name {
    font-size: var(--size16);
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    word-break: break-all;
    line-height: 1.4;
}

.file_size {
    font-size: var(--size14);
    color: #666;
}

.delete_file_btn {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: none;
    background: #ff4d4f;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.delete_file_btn:hover {
    background: #ff7875;
    transform: scale(1.1);
}

.delete_file_btn svg {
    width: 16px;
    height: auto;
}

.But_yi,
.But_er {
    width: max-content;
    height: 50px;
    border-radius: 5px;
    background: rgba(26, 60, 163, 1);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    padding: 0 var(--top30);
}

.But_yi:hover,
.But_er:hover {
    padding: 0 var(--top50);
}

.Baojia_form_er {
    display: none;
}

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

.Boke ul li {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(221, 221, 221, 1);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16);
}

.Boke ul li img {
    width: 100%;
    aspect-ratio: 440 / 260;
    object-fit: cover;
}

.Boke_content {
    width: 100%;
    padding: var(--top30);
}

.Boke_content h2 {
    text-align: center;
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    font-weight: 700;
}

.Boke_content p {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    text-align: center;
    margin-top: 10px;
}

.Boke_content span {
    font-size: var(--size16);
    color: rgba(26, 60, 163, 1);
    font-weight: 700;
    text-align: center;
    display: block;
    margin-top: 15px;
}

.Boke ul li:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

.Boke ul li:hover .Boke_content h2 {
    color: rgba(26, 60, 163, 1);
}

.pagination {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    margin-top: var(--top60);
    gap: var(--top20);
}

.pagination .page-item {
    font-size: 18px;
    color: rgb(165, 165, 165);
    font-weight: 700;
    line-height: 1;
}

.pagination .page-item.active {
    color: rgba(26, 60, 163, 1);
    font-size: 26px;
    line-height: 1;
}

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

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

.Zhuanbei_max h2 {
    text-align: center;
    font-size: var(--size24);
    color: rgba(255, 255, 255, 1);
}

.Zhuanbei_max span {
    display: block;
    font-size: var(--size50);
    color: rgba(255, 255, 255, 1);
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
}

.Zhuanbei_max p {
    text-align: center;
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    margin-top: var(--top30);
}

.Zhuanbei_max a {
    width: max-content;
    display: block;
    margin: auto;
    line-height: 50px;
    background: rgba(255, 255, 255, 1);
    border-radius: 58px;
    font-size: var(--size20);
    color: rgba(26, 60, 163, 1);
    padding: 0 var(--top60);
    margin-top: var(--top50);
}

.Zhuanbei_max a:hover {
    background: rgba(26, 60, 163, 1);
    color: rgba(255, 255, 255, 1);
}


.Xingji>h2 {
    text-align: center;
    font-size: var(--size16);
    color: rgba(26, 60, 163, 1);
}

.Xingji>p {
    text-align: center;
    font-size: var(--size50);
    color: rgba(1, 14, 55, 1);
    line-height: 1;
    font-weight: 700;
    margin-top: 10px;
}

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

.Xingji_swiper li {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(221, 221, 221, 1);
    padding: var(--top40) var(--top30);
}

.Xingji_swiper li>span {
    display: block;
    font-size: 20px;
}

.Xingji_swiper li>h2 {
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    font-weight: 600;
    margin-top: var(--top20);
}

.Xingji_swiper li>p {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top20);
}

.Xingji_item_content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: var(--top30);
}

.Xingji_item_content img {
    width: 60px;
    aspect-ratio: 4 / 4;
    object-fit: cover;
    border-radius: 50%;
}

.Xingji_item_content_text {
    flex: 1;
}

.Xingji_item_content_text h3 {
    font-size: var(--size20);
    color: rgba(26, 60, 163, 1);
    font-weight: 600;
}

.Xingji_item_content_text p {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
}

.pager1 {
    position: static;
    inset: 0;
    transform: translate(0, 0);
    margin-top: var(--top30);
}

.pager1 .zhenshangyin-pager-bullets-bullet {
    width: 15px;
    height: 15px;
    background: rgba(26, 60, 163, 0.3);
}

.pager1 .zhenshangyin-pager-bullets-bullet.active {
    background: rgba(26, 60, 163, 1);
}

.Show {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top40);
}

.Show_left {
    flex: 1;
}

.Show_left>h2 {
    font-size: var(--size36);
    color: rgba(51, 51, 51, 1);
    font-weight: 700;
}


.Show_text {
    width: 100%;
    margin-top: var(--top50);
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    line-height: 2;
    border-bottom: 1px solid rgba(221, 221, 221, 1);
    padding-bottom: var(--top50);
}

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

.Show_right {
    width: 460px;
}

.Show_form {
    width: 100%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16);
    padding: var(--top30);
}

.Show_form h2 {
    font-size: var(--size24);
    color: rgba(26, 60, 163, 1);
    font-weight: 700;
}

.Show_form_text {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: var(--top30);
}

.Show_form_text p {
    width: 100%;
    background: url(../images/landuihao.png) no-repeat left center / 20px auto;
    padding-left: 30px;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    min-height: 20px;
}

.Show_form form {
    width: 100%;
    margin-top: var(--top30);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top20);
}

.Show_form form input {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(204, 204, 204, 1);
    font-size: var(--size14);
    color: rgba(153, 153, 153, 1);
    padding: 0 var(--top20);
}

.Show_form form button {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    background: rgba(26, 60, 163, 1);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
}

.Show_last {
    width: 100%;
    border-top: 1px solid rgba(221, 221, 221, 1);
    padding-top: var(--top30);
    margin-top: var(--top50);
}

.Show_last h2 {
    font-size: var(--size30);
    color: rgba(26, 60, 163, 1);
    font-weight: 700;
}

.Show_last ul {
    width: 100%;
}


.Show_last ul li {
    width: 100%;
    margin-top: var(--top30);
}

.Show_last ul li img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.Show_last ul li h3 {
    font-size: var(--size20);
    color: rgba(26, 60, 163, 1);
    margin-top: var(--top20);
}

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

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

.Show_Guan h2 {
    font-size: var(--size30);
    color: rgba(26, 60, 163, 1);
    font-weight: 700;
}

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


.Show_Guan ul li {
    width: 100%;
    margin-top: var(--top30);
}

.Show_Guan ul li img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.Show_Guan ul li h3 {
    font-size: var(--size20);
    color: rgba(26, 60, 163, 1);
    margin-top: 10px;
}

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


.Hui {
    width: 100%;
    overflow: hidden;
    background: rgba(247, 247, 249, 1);
}

.Show_Wenda>h2 {
    font-size: var(--size50);
    color: rgba(1, 14, 55, 1);
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
}

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

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

.Chanpin_text_left {
    flex: 1;
}

.Chanpin_text_left h2 {
    font-size: var(--size50);
    color: rgba(255, 255, 255, 1);
    line-height: 1.2;
    font-weight: 700;
}

.Chanpin_text_left a {
    width: max-content;
    display: block;
    line-height: 50px;
    background: rgba(255, 255, 255, 1);
    border-radius: 58px;
    font-size: var(--size20);
    color: rgba(26, 60, 163, 1);
    padding: 0 20px;
    margin-top: 20px;
}

.Chanpin_text_left a:hover {
    background: rgba(26, 60, 163, 1);
    color: rgba(255, 255, 255, 1);
}

.Chanpin_text img {
    width: 40%;
}

.Chanpin {
    width: 100%;
    overflow: hidden;
    background: url(../images/beijing.png) repeat top center / 100% auto;
}

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

.Chanpin ul li {
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgba(153, 153, 153, 1);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16);
}

.Chanpin_img {
    width: 100%;
    aspect-ratio: 4 / 4;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.Chanpin_img img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.Chanpin ul li h2 {
    text-align: center;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    padding: var(--top20);
}

.Xingji>a {
    width: max-content;
    display: block;
    margin: auto;
    line-height: 50px;
    background: rgba(26, 60, 163, 1);
    border-radius: 58px;
    font-size: var(--size20);
    color: rgb(255, 255, 255);
    padding: 0 30px;
    margin-top: var(--top50);
}

.Fangan_index {
    background: rgba(26, 60, 163, 1);
}

.Fangan_index_text {
    width: 100%;
    margin-top: var(--top60);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--top50);
}

.Fangan_index_text p {
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
}

.Liyu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top50);
}

.Liyu_img {
    width: 40%;
    position: relative;
}

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

.Liyu_img::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(26, 60, 163, 0.15);
    position: absolute;
    top: var(--top50);
    right: var(--top30);
}

.Liyu_text {
    flex: 1;
}

.Liyu_text>h2 {
    font-size: var(--size50);
    color: rgba(26, 60, 163, 1);
    font-weight: 700;
    line-height: 1.1;
}


.Liyu_text>p {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top30);
}

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

.Liyu_text ul li {
    width: 100%;
}

.Liyu_text ul li h3 {
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    font-weight: 700;
}

.Liyu_text_list {
    width: 100%;
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.Liyu_text_list p {
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    background: url(../images/cha.png) no-repeat left center / 20px auto;
    padding-left: 30px;
}

.Liyu_text ul li:nth-child(2) .Liyu_text_list p {
    background: url(../images/dui.png) no-repeat left center / 20px auto;
}

.Liyu_text>a {
    width: max-content;
    display: block;
    margin: auto;
    line-height: 50px;
    background: rgba(26, 60, 163, 1);
    border-radius: 58px;
    font-size: var(--size20);
    color: rgb(255, 255, 255);
    padding: 0 30px;
    margin-top: var(--top50);
}

.Liyu_text_text {
    width: 100%;
    margin-top: var(--top30);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--top40);
}

.Liyu_text_text p {
    font-size: var(--size14);
    color: rgba(26, 60, 163, 1);
}

.Hei {
    width: 100%;
    overflow: hidden;
    background: rgba(1, 14, 55, 1);
}

.Youque {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 6vw;
}

.Youque_text {
    width: max-content;
}

.Youque_text h2 {
    font-size: var(--size20);
    color: rgba(90, 125, 232, 1);
}

.Youque_text p {
    font-size: var(--size40);
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
}

.Youque ul {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top50);
}

.Youque ul li {
    width: max-content;
    max-width: 200px;
}

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

.Youque ul li p {
    text-align: center;
    font-size: var(--size40);
    color: rgba(255, 255, 255, 1);
    font-weight: 900;
}

.Youque ul li h2 {
    text-align: center;
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
}

.Fuwu>span {
    font-size: var(--size20);
    color: rgba(26, 60, 163, 1);
    text-align: center;
    display: block;
    font-weight: 700;
}

.Fuwu>h2 {
    font-size: var(--size50);
    color: rgba(1, 14, 55, 1);
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
    margin-top: 10px;
}

.Fuwu>p {
    font-size: var(--size16);
    color: rgba(1, 14, 55, 1);
    text-align: center;
    margin-top: var(--top30);
}

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

.Fuwu ul li {
    width: 100%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(221, 221, 221, 1);
    padding: var(--top30);
}

.Fuwu ul li img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin: auto;
}

.Fuwu ul li h3 {
    font-size: var(--size20);
    color: rgba(1, 14, 55, 1);
    text-align: center;
    font-weight: 700;
    margin-top: 10px;
}

.Fuwu ul li p {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    text-align: center;
    margin-top: var(--top20);
}

.Fuwu ul li a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: var(--top50);
    font-size: var(--size16);
    line-height: 1;
    color: rgba(1, 14, 55, 1);
    font-weight: 700;
    gap: 15px;
}

.Fuwu ul li a svg {
    width: 15px;
    height: auto;
    display: block;
}

.Fuwu ul li:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

.Fuwu ul li:hover h3 {
    color: rgba(26, 60, 163, 1);
}

.Fuwu ul li a:hover {
    gap: 25px;
    color: rgba(26, 60, 163, 1);
}

.Guanyu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top60);
}

.Guanyu_left {
    width: 40%;
}

.Guanyu_left h2 {
    font-size: var(--size16);
    color: rgba(26, 60, 163, 1);
    font-weight: 700;
}

.Guanyu_left p {
    font-size: var(--size40);
    color: rgba(1, 14, 55, 1);
    line-height: 1.2;
    font-weight: 700;
    margin-top: var(--top30);
}

.Guanyu_left span {
    display: block;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top40);
}

.Guanyu_left a {
    width: max-content;
    display: block;
    line-height: 50px;
    background: rgba(26, 60, 163, 1);
    border-radius: 58px;
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    padding: 0 20px;
    margin-top: var(--top40);
}


.Guanyu_index_text {
    width: 100%;
    margin-top: var(--top30);
    font-size: var(--size16);
    color: rgba(26, 60, 163, 1);
}

.Guanyu_right {
    flex: 1;
}

.Guanyu_right ul {
    width: 100%;
}

.Guanyu_right ul li {
    width: 100%;
    border-bottom: 1px solid rgba(221, 221, 221, 1);
    padding: var(--top40) 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top30);
}

.circular_progress {
    position: relative;
    width: 120px;
    height: 120px;
}

.progress_ring {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.progress_ring_circle_bg {
    stroke: #e0e0e0;
    stroke-width: 8;
    fill: transparent;
}

.progress_ring_circle {
    stroke: #1a3ca3;
    stroke-width: 8;
    fill: transparent;
    stroke-linecap: round;
    stroke-dasharray: 314.16;
    stroke-dashoffset: 314.16;
    transition: stroke-dashoffset 2s linear;
}

.progress_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: 700;
    font-size: 36px;
    color: #1a3ca3;
    line-height: 1;
}

.Guanyu_right_item {
    flex: 1;
}

.Guanyu_right_item h2 {
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    font-weight: 700;
}

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

.Liucheng>span {
    font-size: var(--size20);
    color: rgba(26, 60, 163, 1);
    text-align: center;
    display: block;
    font-weight: 700;
}

.Liucheng>h2 {
    font-size: var(--size50);
    color: rgba(1, 14, 55, 1);
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
    margin-top: 10px;
}

.Liucheng>a {
    width: max-content;
    display: block;
    margin: auto;
    line-height: 50px;
    background: rgba(26, 60, 163, 1);
    border-radius: 58px;
    font-size: var(--size20);
    color: rgb(255, 255, 255);
    padding: 0 30px;
    margin-top: var(--top50);
}

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

.Liucheng ul li {
    width: 100%;
    padding: var(--top40) var(--top30);
}

.Liucheng ul li span {
    display: block;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(204, 204, 204, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: var(--size24);
    color: rgba(26, 60, 163, 1);
    line-height: 1;
    font-weight: 700;
    border-radius: 50%;
}

.Liucheng ul li h3 {
    text-align: center;
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    font-weight: 700;
    margin-top: var(--top20);
}

.Liucheng ul li p {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top20);
    text-align: center;
}

.Liucheng ul li:hover {
    border-radius: 5px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
}

.Liucheng ul li:hover span {
    background: rgba(26, 60, 163, 1);
    color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(26, 60, 163, 1);
}

.Tuandui_in {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10vw;
}

.Tuandui_in_left {
    width: 40%;
}

.Tuandui_in_left h2 {
    font-size: var(--size16);
    color: rgba(26, 60, 163, 1);
    font-weight: 700;
}

.Tuandui_in_left>p {
    font-size: var(--size40);
    color: rgba(1, 14, 55, 1);
    line-height: 1.2;
    font-weight: 700;
    margin-top: var(--top30);
}

.Tuandui_in_left span {
    display: block;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top40);
}

.Tuandui_in_left_text {
    width: 100%;
    margin-top: var(--top40);
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.Tuandui_in_left_text p {
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    background: url(../images/dui.png) no-repeat left center / 20px auto;
    padding-left: 30px;
}

.Tuandui_in_left a {
    width: max-content;
    display: block;
    line-height: 50px;
    background: rgba(26, 60, 163, 1);
    border-radius: 58px;
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    padding: 0 20px;
    margin-top: var(--top40);
}

.Tuandui_in ul {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top40) 4vw;
}

.Tuandui_in ul li {
    width: 100%;
}

.Tuandui_in ul li img {
    width: 100%;
    aspect-ratio: 4 / 4;
    object-fit: cover;
    border-radius: 50%;
}

.Tuandui_in ul li h3 {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    font-weight: 700;
    margin-top: var(--top20);
    text-align: center;
}

.Tuandui_in ul li p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    text-align: center;
}

.Hezuo>span {
    font-size: var(--size20);
    color: rgba(26, 60, 163, 1);
    text-align: center;
    display: block;
    font-weight: 700;
}

.Hezuo>h2 {
    font-size: var(--size50);
    color: rgba(1, 14, 55, 1);
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
    margin-top: 10px;
}

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

.Hezuo ul li {
    width: 100%;
    padding: var(--top60) var(--top30);
}


.Hezuo ul li h3 {
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    font-weight: 700;
    margin-top: var(--top20);
}

.Hezuo ul li p {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top20);
}

.Hezuo ul li a {
    width: 100%;
    display: block;
    margin: auto;
    line-height: 50px;
    border: 1px solid rgba(26, 60, 163, 1);
    border-radius: 58px;
    font-size: var(--size20);
    color: rgba(26, 60, 163, 1);
    margin-top: var(--top50);
    text-align: center;
}

.Hezuo ul li:hover,
.Hezuo ul li:nth-child(2n) {
    border-radius: 5px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
}

.Hezuo ul li a:hover,
.Hezuo ul li:nth-child(2n) a {
    background: rgba(26, 60, 163, 1);
    color: rgba(255, 255, 255, 1);
}

.Xinxi {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 7.5vw;
}

.Xinxi ul {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top20);
}

.Xinxi ul li {
    width: 100%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(221, 221, 221, 1);
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
    padding: var(--top30) var(--top40);
}

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

.Xinxi_item_title h3 {
    flex: 1;
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    font-weight: 700;
}

.Xinxi_item_title svg {
    width: 16px;
    height: auto;
    transition: transform 0.3s ease;
}

.Xinxi ul li p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    margin-top: 15px;
    display: none;
    transition: auto;
}

.Xinxi ul li:nth-child(1) p {
    display: block;
}


.Zuixin>h2 {
    text-align: center;
    font-size: var(--size16);
    color: rgba(26, 60, 163, 1);
}

.Zuixin>p {
    text-align: center;
    font-size: var(--size50);
    color: rgba(1, 14, 55, 1);
    line-height: 1;
    font-weight: 700;
    margin-top: 10px;
}


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

.Zuixin ul li {
    width: 100%;
    padding: var(--top30);
    border: 1px solid rgba(221, 221, 221, 1);
    border-radius: 10px;
}

.Zuixin ul li img {
    width: 100%;
    aspect-ratio: 380 / 210;
    object-fit: cover;
}

.Zuixin ul li h3 {
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    font-weight: 700;
    margin-top: var(--top20);
}

.Zuixin ul li p {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top20);
}

.Zuixin ul li:hover {
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(26, 60, 163, 1);
    transform: translateY(-5px);
}

.Zuixin ul li:hover h3 {
    color: rgba(26, 60, 163, 1);
}

.Footer {
    width: 100%;
    overflow: hidden;
    background: rgba(26, 60, 163, 1);
}

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

.Footer_left {
    width: 420px;
}

.Footer_left img {
    width: 100px;
    height: auto;
}

.Footer_left p {
    font-size: var(--size16);
    color: rgba(238, 238, 238, 1);
    margin-top: var(--top20);
}

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

.Footer_left ul li {
    width: 45px;
}

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

.Footer_left ul li:hover {
    transform: scale(1.1);
}

.Footer_cen {
    width: max-content;
}

.Footer_cen h2 {
    font-size: var(--size24);
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
}

.Footer_cen ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: var(--top30);
}

.Footer_cen ul li {
    font-size: var(--size16);
    color: rgba(238, 238, 238, 1);
    line-height: 1.5;
}

.Footer_right {
    width: 260px;
}

.Footer_right>h2 {
    font-size: var(--size24);
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
}

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

.Footer_right ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.Footer_right ul li img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.Footer_right_text {
    flex: 1;
}

.Footer_right_text h2 {
    font-size: var(--size16);
    color: rgba(238, 238, 238, 1);
    line-height: 1.5;
}

.Footer_right_text p {
    font-size: var(--size16);
    color: rgba(238, 238, 238, 1);
    margin-top: 5px;
    line-height: 1.5;
}

.Footer_right>p {
    font-size: var(--size16);
    color: rgba(238, 238, 238, 1);
    line-height: 1.7;
    margin-top: 5px;
}


.Beian {
    width: var(--max);
    margin: auto;
    border-top: 1px solid rgba(238, 238, 238, 1);
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.Beian p {
    font-size: var(--size14);
    color: rgba(204, 204, 204, 1);
}

.Bankuaiyi {
    width: 100%;
    overflow: hidden;
    background: rgba(26, 60, 163, 1);
}

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


.Bankuaiyi_left {
    width: 55%;
}

.Bankuaiyi_left h2 {
    font-size: var(--size14);
    color: rgba(255, 255, 255, 1);
}

.Bankuaiyi_left p {
    font-size: var(--size50);
    color: rgba(255, 255, 255, 1);
    line-height: 1.2;
    font-weight: 700;
    margin-top: 10px;
}

.Bankuaiyi_left span {
    display: block;
    font-size: var(--size24);
    color: rgba(255, 255, 255, 1);
    margin-top: var(--top30);
}

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

.Bankuaiyi_btn a {
    width: max-content;
    display: block;
    line-height: 50px;
    background: rgba(18, 104, 251, 1);
    border-radius: 5px;
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    padding: 0 20px;
}

.Bankuaiyi_btn a:nth-child(2) {
    color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    background: transparent;
}

.Bankuaiyi_btn a:hover {
    background: rgba(26, 60, 163, 1);
    color: rgba(255, 255, 255, 1);
}

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

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

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

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

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

.Bankaier ul li img {
    width: 48%;
    height: auto;
    border-radius: 10px;
}

.Bankaier_content {
    flex: 1;
}

.Bankaier_content h2 {
    font-size: var(--size16);
    color: rgba(26, 60, 163, 1);
    font-weight: 700;
}

.Bankaier_content p {
    font-size: var(--size50);
    color: rgba(1, 14, 55, 1);
    line-height: 1.1;
    font-weight: 700;
    margin-top: var(--top30);
}

.Bankaier_content span {
    display: block;
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top40);
}

.Bankaier_content a {
    width: max-content;
    display: block;
    line-height: 50px;
    background: rgba(26, 60, 163, 1);
    border-radius: 58px;
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    padding: 0 20px;
    margin-top: var(--top40);
}

.Pinpai {
    width: 100%;
    overflow: hidden;
    background: rgba(1, 14, 55, 1);
}

.Pinpai_max>h2 {
    font-size: var(--size50);
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    text-align: center;
}

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

.Pinpai_max ul li {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    padding: var(--top30);
}

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

.Pinpai_max ul li img {
    width: 50px;
    height: auto;

}

.Pinpai_max ul li p {
    flex: 1;
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    line-height: 1.6;
}

.Pinpai_max>a {
    width: max-content;
    display: block;
    margin: auto;
    line-height: 50px;
    background: rgba(26, 60, 163, 1);
    border-radius: 58px;
    font-size: var(--size20);
    color: rgb(255, 255, 255);
    padding: 0 30px;
    margin-top: var(--top50);
}


.Pingjiamx>span {
    font-size: var(--size20);
    color: rgba(26, 60, 163, 1);
    text-align: center;
    display: block;
    font-weight: 700;
}

.Pingjiamx>h2 {
    font-size: var(--size50);
    color: rgba(1, 14, 55, 1);
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
    margin-top: 10px;
}

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

.Pingjiamx ul li {
    width: 100%;
    padding: var(--top30);
    border-radius: 3px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16);
}

.Pingjiamx ul li img{
    width: 70px;
    height: auto;
}

.Pingjiamx li>h2 {
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    font-weight: 600;
    margin-top: 10px;
}

.Pingjiamx li>p {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top20);
}