﻿: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";
}

.Hertre {
    width: 100%;
    z-index: 999;
    height: 100px;
    position: relative;
    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: 100px;
    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(--top80);
}

.Nav ul li {
    font-size: var(--size20);
    color: rgb(3, 45, 77);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: 100px;
    position: relative;
}

.Nav ul li svg {
    width: 12px;
    height: auto;
    fill: rgb(255, 96, 1);
    margin-left: 10px;
}


.Nav ul li.Nav_cen {
    color: rgb(255, 96, 1)
}

.Nav ul li:hover {
    color: rgb(255, 96, 1);
}

/* .Nav ul li::after {
    content: "";
    width: 0%;
    height: 3px;
    background: #ec078d;
    position: absolute;
    bottom: 0px;
    left: 0%;
    transition: all 0.3s;
}

.Nav ul li.Nav_cen::after {
    width: 100%;
}

.Nav ul li:hover::after {
    width: 100%;
} */

.Nav_ul {
    width: max-content;
    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: block;
    text-align: left;
    line-height: 2.5;
    font-size: var(--size14);
}

.Nav_ul a:hover {
    color: rgb(255, 96, 1);
}

.Nav_ul a.Nav_ul_Nav {
    color: rgb(255, 96, 1);
}

.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;
}

.Banner_text {
    width: var(--max);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.Banner_text h2 {
    font-size: var(--size60);
    color:rgb(255, 96, 1);
    line-height: 1;
    margin-bottom: var(--top30);
}

.Banner_text a {
    width: max-content;
    display: block;
    line-height: 3;
    background: rgb(255, 96, 1);
    border-radius: 60px;
    padding: 0 30px;
    font-size: var(--size20);
    color: rgb(255, 255, 255);
}

.Lianxi {
    width: var(--max);
    margin: var(--top100) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    gap: var(--top120);
}

.Lianxi_left {
    flex: 1;
}

.Lianxi_left h2 {
    font-size: var(--size50);
    color: rgb(255, 96, 1);
    line-height: 1.3;
}

.Lianxi_left form {
    width: 100%;
    margin-top: var(--top30);
}

.Lianxi_imet {
    width: 100%;
    margin-bottom: var(--top30);
}

.Lianxi_imet p {
    font-size: var(--size20);
    color: rgb(0, 0, 0);
}

.Lianxi_imet>input {
    width: 100%;
    height: 60px;
    border-radius: 4px;
    border: 1px solid rgb(153, 153, 153);
    font-size: var(--size14);
    color: #00000080;
    padding: 0 var(--top20);
    margin-top: 15px;
}

.Lianxi_imet label {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    font-size: var(--size16);
    color: rgb(18, 48, 64);
    margin-top: var(--top50);
    cursor: pointer;
}

.Lianxi_imet label a {
    color: rgb(255, 96, 1);
    margin-left: 10px;
}

.Lianxi_imet label h3 {
    flex: 1;
}

.Lianxi_imet label input {
    appearance: none;
    width: 25px;
    height: 25px;
    border: 1px solid rgb(18, 48, 64);
    border-radius: 3px;
    background-color: transparent;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.Lianxi_imet label input:before {
    content: "✔";
    color: rgb(18, 48, 64);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.2s;
}

.Lianxi_imet label input:checked:before {
    opacity: 1;
}

.Lianxi_imet button {
    width: max-content;
    height: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: rgb(255, 96, 1);
    border-radius: 60px;
    font-size: var(--size20);
    color: rgb(255, 255, 255);
    padding: 0 30px;
    gap: var(--top50);
    border: transparent;
    margin-top: var(--top60);
    cursor: pointer;
}


.Lianxi_imet button svg {
    width: 25px;
    height: auto;
}


.Lianxi_text {
    width: 400px;
}
.Lianxi_text>h2{
    font-size: var(--size36);
    color: rgb(255, 96, 1);
}
.Lianxi_text_contact {
    width: 100%;
    font-size: var(--size20);
    color: rgb(255, 96, 1);
    line-height: 1.8;
    margin-top: var(--top20);
}

.Dis {
    width: var(--max);
    margin: var(--top100) auto;
}

.Dis>h2 {
    text-align: center;
    font-size: var(--size56);
    color: rgb(255, 96, 1);
}

.Dis_text {
    width: 100%;
    margin-top: var(--top50);
    font-size: var(--size18);
    color: rgb(3, 45, 77);
}

.Wealth {
    width: 100%;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.Wealth_max {
    width: var(--max);
    margin: var(--top120) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top100);
}

.Wealth_left {
    flex: 1;
}

.Wealth_left h2 {
    font-size: var(--size50);
    color: rgb(255, 96, 1);
    line-height: 1.3;
}

.Wealth_text {
    font-size: var(--size18);
    color: rgb(255, 255, 255);
    line-height: 1.8;
    margin-top: var(--top60);
}

.Wealth_max ul {
    width: 55%;
}

.Wealth_max ul li {
    width: 100%;
    padding: var(--top30);
    overflow: hidden;
    background: rgb(8, 42, 72, 0.9);
}

.Wealth_max ul li h3 {
    font-size: var(--size30);
    color: rgb(255, 255, 255);
}

.Wealth_max ul li p {
    font-size: var(--size18);
    color: rgb(255, 255, 255);
    margin-top: var(--top20);
}

.Wealth_max ul li:nth-child(3n+2) {
    background: rgb(18, 52, 82, 0.9);
}

.Wealth_max ul li:nth-child(3n) {
    background: rgb(32, 64, 87, 0.9);
}

.Tab {
    width: var(--max);
    margin: var(--top120) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Tab h2 {
    font-size: var(--size50);
    color: rgb(255, 96, 1);
    line-height: 1.3;
}

.Tab_max {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top100);
    margin-top: var(--top50);
}

.Tab_left {
    flex: 1;
    font-size: var(--size18);
    color: rgb(3, 45, 77);
    line-height: 1.8;
}


.Tab_max>img {
    width: 50%;
    height: auto;
}

.Ret {
    width: 100%;
    overflow: hidden;
    background: rgb(28, 83, 124);
}

.Ret_max {
    width: var(--max);
    margin: var(--top120) auto;
}

.Ret_max>h2 {
    font-size: var(--size50);
    color: rgb(255, 96, 1);
    line-height: 1.3;
}

.Ret_text {
    width: 100%;
    margin-top: var(--top50);
    font-size: var(--size24);
    color: rgb(255, 255, 255);
    line-height: 1.7;
}

.Individuals {
    width: var(--max);
    margin: var(--top120) auto;
    font-size: var(--size18);
    color: rgb(0, 0, 0);
}

.Individuals_ic {
    width: 100%;
    overflow: hidden;
    background: rgb(242, 240, 237);
}

.Individuals_ic ul {
    width: var(--max);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top30);
    margin: var(--top80) auto;
}

.Individuals_ic ul li {
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    background: rgb(255, 255, 255);
    padding: var(--top50);
}

.Individuals_ic ul li img {
    width: 130px;
    aspect-ratio: 4 / 4;
    object-fit: contain;
    max-width: 30%;
    margin: auto;
}

.Individuals_ic ul li h3 {
    font-size: var(--size30);
    color: rgb(3, 45, 77);
    text-align: center;
    line-height: 1.3;
    margin-top: var(--top30);
}

.Individuals_ic ul li h3 span {
    font-size: var(--size16);
    line-height: 1.3;
    display: block;
}

/* .Individuals_ic ul li:last-child {
    background: transparent;
    box-shadow: none;
}

.Individuals_ic_text {
    width: 100%;
    height: 100%;
    font-size: var(--size16);
    color: rgb(3, 45, 77);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    line-height: 2;
} */

.Footer {
    width: 100%;
    overflow: hidden;
    background: rgb(3, 45, 77);
}

.Footer_max {
    width: var(--max);
    overflow: hidden;
    margin: var(--top80) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.Footer_ul {
    width: max-content;
    overflow: hidden;
}

.Footer_top {
    width: max-content;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.Footer_top h2 {
    font-size: var(--size24);
    color: rgb(255, 255, 255);
}

.Footer_top svg {
    width: 14px;
    height: auto;
    display: none;
}

.Footer_ul ul {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top20);
}

.Footer_ul ul li {
    font-size: var(--size16);
    color: rgb(255, 255, 255);
    line-height: 2;
}

.Beian {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgb(112, 112, 112);
    margin-top: var(--top50);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: var(--top30);
}

.Beian p {
    font-size: var(--size16);
    color: rgb(255, 255, 255);
    margin: 0 5px;
}