:root {
    --max: 1500px;
    --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;
    --top25: 25px;
    --top30: 30px;
    --top40: 40px;
    --top50: 50px;
    --top60: 60px;
    --top80: 80px;
    --top100: 100px;
    --top120: 120px;
}

body {
    background: url(../images/beijing.png) repeat top center / auto auto;
}

.Hertre {
    width: 100%;
    z-index: 999;
    position: relative;
    background: #fff;
}

.Fixed {
    position: fixed;
    top: 0;
}

.Hertre_cen {
    width: var(--max);
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.Logo {
    width: 400px;
    overflow: hidden;

}

.Logo img {
    width: 100%;
    height: auto;
}

.Nav {
    width: max-content;
}

.Nav ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--top50);
}

.Nav ul li {
    font-size: var(--size16);
    color: rgba(55, 65, 81, 1);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    position: relative;
}

.Nav ul li>a {
    line-height: 100px;
}

.Nav ul li svg {
    width: 12px;
    height: auto;
    transform: rotate(90deg);
}

.Nav ul li svg path {
    fill: rgba(55, 65, 81, 1);
}

.Nav ul li.active,
.Nav ul li:hover {
    color: rgba(6, 78, 150, 1);
}

.Nav ul li.active path,
.Nav ul li:hover path {
    fill: rgba(6, 78, 150, 1);
}


.Ditu {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--top60);
}

.En {
    width: max-content;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    line-height: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.En a.active {
    font-weight: 900;
}

.Ditu img {
    width: 100px;
    height: auto;
}

/* .Nav ul li::after {
    content: "";
    width: 0%;
    height: 3px;
    background: #ec078d;
    position: absolute;
    bottom: 0px;
    left: 0%;
    transition: all 0.3s;
}

.Nav ul li.active::after,
.Nav ul li:hover::after {
    width: 100%;
} */

.Nav_item {
    width: max-content;
    min-width: 140px;
    display: none;
    background: rgba(6, 78, 150, 1);
    position: absolute;
    overflow: hidden;
    top: 100%;
    transition: auto;
    left: 50%;
    transform: translateX(-50%);
}

.Nav_item a {
    color: rgba(255, 255, 255, 1);
    display: block;
    text-align: center;
    line-height: 40px;
    font-size: var(--size14);
    border-top: 1px solid #ffffff;
}

.Nav_item a:nth-child(1) {
    border: transparent;
}


.Fixed {
    background: #002e5a;
}

.Fixed * {
    color: #ffffff;
}

.Fixed .Nav ul li svg path {
    fill: #ffffff !important;
}

.Fixed .Logo img {
    filter: brightness(0) invert(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: rgba(6, 78, 150, 1);
    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);
}

.Fixed .menu_button .line {
    stroke: #ffffff;
}

.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;
}

.Top {
    width: 48px;
    aspect-ratio: 4 / 4;
    background: rgba(6, 78, 150, 1);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.Top.show {
    opacity: 1;
    visibility: visible;
}

.Top svg {
    width: 15px;
    height: auto;
}

.Banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.Banner img {
    width: 100%;
    height: auto;
}

.Main_click {
    width: max-content;
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 999;
    background: #fff;
    padding: 20px 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 5px 2px #00000010;
}

.Main_click ul {
    width: max-content;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top20);
}

.Main_click ul li {
    width: 100%;
    font-size: var(--size14);
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    cursor: pointer;
    padding-right: 20px;
    position: relative;
}

.Main_click ul li svg {
    width: 7px;
    height: auto;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    opacity: 0;
}

.Main_click ul li.active {
    color: rgba(6, 78, 150, 1);
}

.Main_click ul li.active svg {
    opacity: 1;
}

.Tongyong {
    width: 100%;
}

.Tongyong span {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    display: block;
}

.Tongyong h2 {
    font-size: var(--size40);
    color: rgba(31, 41, 55, 1);
    line-height: 1;
    margin-top: 10px;
    font-weight: 400;
}

.Tongyong h2::after {
    content: "";
    width: 210px;
    height: 1px;
    background: rgba(6, 78, 150, 1);
    display: block;
    margin-top: 10px;
}

.Tongyong p {
    font-size: var(--size16);
    color: rgba(75, 85, 99, 1);
    margin-top: 5px;
}

.Jiaru {
    width: var(--max);
    margin: var(--top80) auto;
}

.Zhiwei {
    width: 100%;
    margin-top: var(--top80);
}

.Zhiwei>h2 {
    font-size: var(--size30);
    color: rgba(31, 41, 55, 1);
    line-height: 1;
    text-align: center;
}

.Zhiwei>h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: rgba(6, 78, 150, 1);
    display: block;
    margin: var(--top20) auto;
}

.Zhiwei>p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    text-align: center;
}

.Zhiwei_filter {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--top50);
    gap: 15px;
}

.Zhiwei_filter a {
    width: max-content;
    line-height: 40px;
    border-radius: 40px;
    background: rgba(245, 247, 250, 1);
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    padding: 0 var(--top25);
}

.Zhiwei_filter a.active {
    background: rgba(6, 78, 150, 1);
    color: #fff;
}

.Zhiwei ul {
    width: 100%;
    margin-top: var(--top40);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top30);
}

.Zhiwei ul li {
    width: 100%;
    padding: var(--top25);
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(243, 244, 246, 1);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
}

.Zhiwei ul li:hover {
    transform: translateY(-3px);
}

.Zhiwei_title {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.Zhiwei_title h2 {
    flex: 1;
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
}

.Zhiwei_title p {
    width: max-content;
    line-height: 24px;
    background: rgba(219, 234, 254, 1);
    border-radius: 24px;
    font-size: 12px;
    color: rgba(6, 78, 150, 1);
    padding: 0 12px;
}

.Zhiwei_icon {
    width: 100%;
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.Zhiwei_icon_item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.Zhiwei_icon_item img {
    width: 16px;
    aspect-ratio: 4 / 4;
    object-fit: contain;
}

.Zhiwei_icon_item p {
    flex: 1;
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
}

.Zhiwei ul li>p {
    width: 100%;
    margin-top: 15px;
    font-size: var(--size16);
    color: rgba(75, 85, 99, 1);
}

.Zhiwei_button {
    width: 100%;
    margin-top: var(--top25);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.Zhiwei_button span {
    flex: 1;
    font-size: var(--size14);
    color: rgba(107, 114, 128, 1);
    line-height: 1;
}

.Zhiwei_button p {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: var(--size16);
    color: rgba(6, 78, 150, 1);
    line-height: 1;
}

.Zhiwei_button p svg {
    width: 14px;
    height: auto;
    display: block;
}

.Load {
    text-align: center;
    grid-column: 1 / -1;
    font-size: var(--size20);
    color: rgba(6, 78, 150, 1);
    text-align: center;
}

.Load_data {
    width: max-content;
    line-height: 50px;
    border: 2px solid rgba(6, 78, 150, 1);
    border-radius: 8px;
    font-size: var(--size16);
    color: rgba(6, 78, 150, 1);
    padding: 0 var(--top30);
    margin: auto;
    margin-top: var(--top60);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.Load_data img {
    width: 20px;
    height: auto;
    transition: transform 0.3s ease;
}

#loadMoreImg.loading {
    animation: rotate 1s linear infinite;
}

#VideoLoadMoreImg.loading {
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.Show_zizhi {
    width: var(--max);
    margin: var(--top80) auto;
}

.Show_zizhi_max {
    width: 100%;
    margin-top: var(--top30);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top30);
}

.Show_zizhi_left {
    flex: 1;
}

.Show_zizhi_title {
    width: 100%;
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    padding: var(--top25);
}

.Show_zizhi_title h2 {
    font-size: var(--size24);
    color: rgba(31, 41, 51, 1);
}

.Show_shai {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.Show_shai span {
    display: block;
    width: max-content;
    font-size: var(--size20);
    color: rgba(6, 78, 150, 1);
    line-height: 1;
}

.Show_shai_item {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.Show_shai_item img {
    width: 14px;
    aspect-ratio: 4 / 4;
    object-fit: contain;
}

.Show_shai_item p {
    flex: 1;
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
}

.Show_zizhi_biao {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.Show_zizhi_biao p {
    width: max-content;
    line-height: 28px;
    background: rgba(245, 247, 250, 1);
    border-radius: 28px;
    font-size: var(--size14);
    color: rgba(82, 96, 109, 1);
    padding: 0 15px;
}

.Show_content {
    width: 100%;
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    padding: var(--top25);
    margin-top: var(--top30);
}

.Show_content>h2 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--size20);
    color: rgba(62, 76, 89, 1);
    gap: 10px;
}

.Show_content>h2 img {
    width: 15px;
    height: auto;
}

.Content {
    width: 100%;
    margin-top: var(--top30);
    font-size: var(--size14);
    color: rgba(82, 96, 109, 1);
    line-height: 2;
}


.Show_zizhi_right {
    width: 33%;
}

.Shenqing {
    width: 100%;
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    padding: var(--top25);
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.Shenqing a {
    width: 100%;
    line-height: 50px;
    border: 1px solid rgba(6, 78, 150, 1);
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: var(--size16);
    color: rgba(6, 78, 150, 1);
}

.Shenqing a:nth-child(1) {
    background: rgba(6, 78, 150, 1);
    color: #ffffff;
}

.Dizhi {
    width: 100%;
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    padding: var(--top25);
    margin-top: var(--top30);
}

.Dizhi h2 {
    font-size: var(--size20);
    color: rgba(62, 76, 89, 1);
}

.Dizhi img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px auto;
}

.Dizhi p {
    width: 100%;
    font-size: var(--size16);
    color: rgba(82, 96, 109, 1);
}

.Zhi_zixin {
    width: 100%;
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    padding: var(--top25);
    margin-top: var(--top30);
}

.Zhi_zixin h2 {
    font-size: var(--size20);
    color: rgba(62, 76, 89, 1);
}

.Zhi_zixin ul {
    width: 100%;
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.Zhi_zixin ul li {
    width: 100%;
}

.Zhi_zixin ul li h3 {
    font-size: var(--size16);
    color: rgba(62, 76, 89, 1);
}

.Zhi_zixin ul li p {
    font-size: var(--size14);
    color: rgba(123, 135, 148, 1);
    margin-top: 5px;
}

.Show {
    width: var(--max);
    margin: var(--top80) auto;
}

.Show>h2 {
    font-size: var(--size30);
    color: rgba(29, 33, 41, 1);
    text-align: center;
    margin-top: var(--top60);
}

.Show_tame {
    width: 100%;
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--top40);
}

.Show_tame>p {
    font-size: var(--size14);
    color: rgba(78, 89, 105, 1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.Show_tame svg {
    width: 14px;
    aspect-ratio: 4 / 4;
    object-fit: contain;
}

.Show_text {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: var(--top30) 0;
    margin-top: var(--top30);
    font-size: var(--size14);
    color: #222222;
    line-height: 2;
}

.Show_text * {
    max-width: 100%;
}
.Show_text img{
    display: block; 
    margin: auto;
}
.Prev {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top30);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.Prev a {
    width: 100%;
    display: block;
    font-size: var(--size14);
    color: #000000;
}

.Zhanlv {
    width: var(--max);
    margin: auto;
    background: rgba(245, 247, 250, 1);
    border-radius: 15px;
    padding: var(--top60) var(--top50);
}

.Zhanlv>h2 {
    font-size: var(--size30);
    color: rgba(31, 41, 55, 1);
    line-height: 1;
    text-align: center;
}

.Zhanlv>h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: rgba(6, 78, 150, 1);
    display: block;
    margin: var(--top20) auto 0;
}

.Zhanlv_max {
    width: 100%;
    margin-top: var(--top60);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top80);
}


.Zhanlv_max>img {
    width: 45%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
}

.Zhanlv_right {
    flex: 1;
}

.Zhanlv_right>p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
}

.Zhanlv_right ul {
    width: 100%;
    margin-top: var(--top30);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top25);
}


.Zhanlv_right ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.Zhanlv_img {
    width: 48px;
    aspect-ratio: 4 / 4;
    background: rgba(10, 78, 147, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Zhanlv_img img {
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
}

.Zhanlv_text {
    flex: 1;
}

.Zhanlv_text h3 {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
}

.Zhanlv_text p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    margin-top: 5px;
}


.Lujing {
    width: var(--max);
    margin: var(--top80) auto;
}

.Lujing>h2 {
    font-size: var(--size30);
    color: rgba(31, 41, 55, 1);
    line-height: 1;
    text-align: center;
}

.Lujing>h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: rgba(6, 78, 150, 1);
    display: block;
    margin: var(--top20) auto;
}

.Lujing>p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    text-align: center;
}

.Lujing ul {
    width: 100%;
    margin-top: var(--top60);
    display: flex;
    justify-content: space-between;
}

.Lujing ul li {
    flex: 1;
    cursor: pointer;
}

.Lujing ul li img {
    width: 100%;
    aspect-ratio: 10 / 6;
    object-fit: cover;
}

.Lujing ul li h3 {
    text-align: center;
    background: rgba(191, 191, 191, 1);
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    padding: 15px;
}

.Lujing ul li.active h3 {
    background: rgba(6, 78, 150, 1);
    color: rgba(255, 255, 255, 1);
}

.Lujing_max {
    width: 100%;
    margin-top: var(--top30);
}

.Lujing_item {
    width: 100%;
    display: none;
    transition: auto;
}

.Lujing_item:nth-child(1) {
    display: block;
}

.Lujing_item h3 {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
}

.Lujing_list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: var(--top20);
}

.Lujing_list_item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.Lujing_list_item img {
    width: 16px;
    height: auto;
}

.Lujing_list_item p {
    flex: 1;
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
}

.Chengzhang {
    width: 100%;
    overflow: hidden;
    background: rgba(245, 247, 250, 1);
}

.Chengzhang_max {
    width: var(--max);
    margin: var(--top80) auto;
}

.Chengzhang_max>h2 {
    font-size: var(--size30);
    color: rgba(31, 41, 55, 1);
    line-height: 1;
    text-align: center;
}

.Chengzhang_max>h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: rgba(6, 78, 150, 1);
    display: block;
    margin: var(--top20) auto;
}

.Chengzhang_max>p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    text-align: center;
}

.Chengzhang_ul {
    width: 100%;
    margin-top: var(--top60);
}

.Chengzhang_ul ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--top30);
}

.Chengzhang_ul ul li {
    width: 100%;
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    padding: var(--top25);
}


.Chengzhang_ul_img {
    width: 55px;
    aspect-ratio: 4 / 4;
    background: rgba(10, 78, 147, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Chengzhang_ul_img img {
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
}

.Chengzhang_ul ul li h3 {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top20);
}

.Chengzhang_ul_jian {
    width: 100%;
    margin-top: var(--top20);
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}

.Chengzhang_ul_item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.Chengzhang_ul_item img {
    width: 10px;
    height: auto;
}

.Chengzhang_ul_item p {
    flex: 1;
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
}

.Xinsheng {
    width: 100%;
    margin-top: var(--top60);
}

.Xinsheng>h2 {
    text-align: center;
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
}

.Xinsheng ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top30);
    margin-top: var(--top40);
}

.Xinsheng ul li {
    width: 100%;
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    padding: var(--top25);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
}

.Xinsheng ul li>p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
}

.Xinsheng_button {
    width: 100%;
    margin-top: var(--top25);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.Xinsheng_img {
    width: 50px;
}

.Xinsheng_img img {
    width: 100%;
    aspect-ratio: 4 / 4;
    object-fit: cover;
    border-radius: 50%;
}

.Xinsheng_text {
    flex: 1;
}

.Xinsheng_text h3 {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
}

.Xinsheng_text p {
    font-size: var(--size14);
    color: rgba(107, 114, 128, 1);
}

.Lianxi {
    width: var(--max);
    margin: var(--top80) auto;
}

.Lianxi>h2 {
    font-size: var(--size30);
    color: rgba(31, 41, 55, 1);
    line-height: 1;
    text-align: center;
}

.Lianxi>h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: rgba(6, 78, 150, 1);
    display: block;
    margin: var(--top20) auto;
}

.Lianxi>p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    text-align: center;
}

.Lianxi form {
    width: 700px;
    max-width: 100%;
    margin: auto;
    margin-top: var(--top50);
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    padding: var(--top30);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}

.Lianxi_input {
    width: 100%;
}

.Lianxi_input:nth-child(1),
.Lianxi_input:nth-child(2) {
    width: calc(50% - 12px);
}

.Lianxi_input p {
    font-size: var(--size14);
    color: rgba(55, 65, 81, 1);
}

.Lianxi_input input {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(209, 213, 219, 1);
    font-size: var(--size14);
    color: rgba(156, 163, 175, 1);
    padding: 0 15px;
    margin-top: 5px;
}

.Lianxi_input textarea {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(209, 213, 219, 1);
    font-size: var(--size14);
    color: rgba(156, 163, 175, 1);
    padding: 10px 15px;
    resize: none;
    margin-top: 5px;
}

.Lianxi form button {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    background: rgba(6, 78, 150, 1);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
}

.Lianxi form button img {
    width: 16px;
    height: auto;
}

.Lianxi_max {
    width: 100%;
    margin-top: var(--top50);
    border-radius: 22px;
    background: rgba(245, 247, 250, 1);
    padding: var(--top30);
}

.Lianxi_max>h3 {
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
}

.Lianxi_max ul {
    width: 100%;
    margin-top: var(--top20);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top30);
}

.Lianxi_max ul li {
    width: max-content;
    max-width: 23%;
}

.Lianxi_title {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.Lianxi_title img {
    width: 16px;
    aspect-ratio: 4 / 4;
    object-fit: contain;
}

.Lianxi_title h4 {
    flex: 1;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    line-height: 1;
}

.Lianxi_max ul li p {
    font-size: var(--size14);
    color: rgba(102, 102, 102, 1);
    margin-top: var(--top25);
    line-height: 2;
}

.Footer {
    width: 100%;
    overflow: hidden;
    background: rgba(6, 78, 150, 1);
}

.Footer_max {
    width: var(--max);
    margin: var(--top60) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.Footer_left {
    width: max-content;
    max-width: 350px;
}

.Footer_left>h2 {
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    line-height: 1;
}

.Footer_left>h2 span {
    font-weight: 700;
    font-size: var(--size24);
}

.Erweima {
    width: 150px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 1);
    padding: 10px;
    margin-top: var(--top30);
}

.Footer_left p {
    font-size: var(--size14);
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--top20);
}

.Erweima img {
    width: 100%;
    height: auto;
}

.Footer_left ul {
    width: 100%;
    margin-top: var(--top30);
    display: flex;
    flex-wrap: wrap;
    gap: var(--top20);
}

.Footer_left ul li {
    width: 40px;
    aspect-ratio: 4 / 4;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    overflow: hidden;
}

.Footer_left ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Footer_left ul li img {
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
}

.Footer_cen {
    width: max-content;
}

.Footer_cen>h2 {
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    line-height: 1;
}

.Footer_cen>h2 span {
    font-weight: 700;
    font-size: var(--size24);
}

.Footer_cen ul {
    width: 100%;
    margin-top: var(--top30);
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.Footer_cen ul li {
    font-size: var(--size16);
    color: rgba(255, 255, 255, 0.8);
}

.Footer_right {
    width: max-content;
}

.Footer_right>h2 {
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    line-height: 1;
}

.Footer_right>h2 span {
    font-weight: 700;
    font-size: var(--size24);
}

.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: 10px;
}

.Footer_right ul li img {
    width: 18px;
    aspect-ratio: 4 / 4;
    object-fit: contain;
}

.Footer_right ul li p {
    flex: 1;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 0.8);
}

.Beian {
    width: 100%;
}

.Beian_max {
    width: var(--max);
    overflow: hidden;
    margin: var(--top20) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.Beian_max a,
.Beian_max p {
    font-size: var(--size14);
    color: rgba(255, 255, 255, 0.6);
}

.Jieshao {
    width: 100%;
    margin-top: var(--top80);
}

.Jieshao>h2 {
    font-size: var(--size30);
    color: rgba(31, 41, 55, 1);
    line-height: 1;
    text-align: center;
}

.Jieshao_max {
    width: 100%;
    margin-top: var(--top60);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top40);
}

.Jieshao_max img {
    width: 50%;
    height: auto;
}

.Jieshao_max p {
    flex: 1;
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    line-height: 2;
    text-indent: 2em;
}

.Quanqiu {
    width: 100%;
    overflow: hidden;
    background: rgba(245, 247, 250, 1);
}

.Quanqiu_max {
    width: var(--max);
    margin: var(--top80) auto;
}

.Quanqiu_max>h2 {
    font-size: var(--size30);
    color: rgba(31, 41, 55, 1);
    line-height: 1;
    text-align: center;
}

.Quanqiu_max>p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    text-align: center;
    margin-top: var(--top20);
}

.Quanqiu_cen {
    width: 1100px;
    max-width: 100%;
    margin: auto;
    margin-top: var(--top60);
    border-radius: 8px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.18), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    overflow: hidden;
}

.Quanqiu_top {
    width: 100%;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.Quanqiu_top ul {
    width: 100%;
    margin: 7vw auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--top25);
}

.Quanqiu_top ul li {
    min-width: 160px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    backdrop-filter: blur(4px);
    padding: 15px;
}

.Quanqiu_top ul li p {
    text-align: center;
    font-size: var(--size30);
    color: rgba(6, 78, 150, 1);
    line-height: 1;
    font-weight: 700;
}

.Quanqiu_top ul li h3 {
    text-align: center;
    font-size: var(--size16);
    color: rgba(55, 65, 81, 1);
    margin-top: 5px;
}

.JIguo {
    width: 100%;
    padding: var(--top30);
}

.JIguo h2 {
    font-size: var(--size20);
    color: rgba(31, 41, 55, 1);
}

.JIguo ul {
    width: 100%;
    margin-top: var(--top25);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top25);
}

.JIguo ul li {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(243, 244, 246, 1);
    overflow: hidden;
}

.JIguo ul li>img {
    width: 100%;
    aspect-ratio: 320 / 160;
    object-fit: cover;
}

.JIguo_title {
    width: 100%;
    padding: var(--top20);
}

.JIguo_title h3 {
    font-size: var(--size16);
    color: rgba(31, 41, 55, 1);
}

.JIguo_title p {
    font-size: var(--size14);
    color: rgba(75, 85, 99, 1);
    margin-top: 5px;
}

.JIguo_dizhi {
    width: 100%;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.JIguo_dizhi img {
    width: 12px;
    height: auto;
}

.JIguo_dizhi span {
    flex: 1;
    font-size: var(--size14);
    color: rgba(107, 114, 128, 1);
}


.Rongyu {
    width: var(--max);
    margin: var(--top80) auto;
}

.Rongyu>h2 {
    font-size: var(--size30);
    color: rgba(31, 41, 55, 1);
    line-height: 1;
    text-align: center;
}

.Rongyu>p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    text-align: center;
    margin-top: var(--top20);
}

.Rongyu_max {
    width: 1000px;
    max-width: 100%;
    margin: auto;
    margin-top: var(--top60);
    position: relative;
}

.Rongyu_swiper {
    width: 100%;
}


.Rongyu_swiper li {
    width: 100%;
}

.Rongyu_swiper li img {
    width: 100%;
    /*aspect-ratio: 260 / 350;*/
    object-fit: cover;
}

.Rongyu_swiper li h3 {
    text-align: center;
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top20);
}

.prev,
.next {
    width: max-content;
    height: max-content;
    background: transparent;
}

.prev svg,
.next svg {
    width: 16px;
    height: auto;
}

.prev {
    left: -30px;
}

.next {
    right: -30px;
}

.Shipin {
    width: 1000px;
    max-width: 100%;
    margin: auto;
    margin-top: var(--top60);
    position: relative;
}

.Shipin>h2 {
    font-size: var(--size30);
    color: rgba(31, 41, 55, 1);
    line-height: 1;
    text-align: center;
}

.Shipin>p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    text-align: center;
    margin-top: var(--top20);
}

.Shipin ul {
    width: 100%;
    margin-top: var(--top30);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--top25);
}

.Shipin ul li {
    width: 100%;
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 12px rgba(7, 81, 148, 0.15);
    overflow: hidden;
}

.Shipin_img {
    width: 100%;
    position: relative;
}

.Shipin_img img {
    width: 100%;
    aspect-ratio: 540 / 280;
    object-fit: cover;
}

.Shipin_img p {
    width: max-content;
    line-height: 24px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 0 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 1);
}

.Shipin_img svg {
    width: var(--top40);
    height: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.Shipin_img svg:hover {
    width: var(--size30);
}

.Video_Modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.Video_Modal.Is_Show {
    display: block;
}

.Video_Modal_Overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.Video_Modal_Panel {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(920px, calc(100vw - 32px));
    display: block;
}

.Video_Modal_Close {
    position: absolute;
    top: -50px;
    right: 0;
    z-index: 1;
    color: #fff;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
}

.Video_Player {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
}

.Shipin_title {
    width: 100%;
    padding: var(--top20);
}

.Shipin_title h3 {
    font-size: var(--size16);
    color: rgba(31, 41, 55, 1);
}

.Shipin_title p {
    font-size: var(--size14);
    color: rgba(75, 85, 99, 1);
    margin-top: 5px;
}

.Shipin_load {
    width: max-content;
    line-height: 50px;
    border: 2px solid rgba(6, 78, 150, 1);
    border-radius: 8px;
    font-size: var(--size16);
    color: rgba(6, 78, 150, 1);
    padding: 0 var(--top30);
    margin: auto;
    margin-top: var(--top60);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.Shipin_load img {
    width: 20px;
    height: auto;
    transition: transform 0.3s ease;
}

.Cuangxin {
    width: 100%;
    overflow: hidden;
    background: rgba(245, 247, 250, 1);
}

.Cuangxin_max {
    width: var(--max);
    margin: var(--top80) auto;
}

.Cuangxin_max>h2 {
    font-size: var(--size30);
    color: rgba(31, 41, 55, 1);
    line-height: 1;
    text-align: center;
}

.Cuangxin_max>p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    text-align: center;
    margin-top: var(--top20);
}

.Cuangxin_max ul {
    width: 100%;
    margin-top: var(--top60);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.Cuangxin_max ul li {
    width: 100%;
    padding: 0 var(--top40);
    position: relative;
}

.Cuangxin_max ul li::after {
    content: "";
    width: 1px;
    height: 80%;
    border-left: 1px dashed rgba(195, 195, 195, 1);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.Cuangxin_max ul li:nth-child(3n+1)::after {
    display: none;
}

.Cuangxin_max ul li img {
    width: 120px;
    aspect-ratio: 120 / 110;
    object-fit: contain;
    margin: auto;
}

.Cuangxin_max ul li h3 {
    text-align: center;
    font-size: var(--size20);
    color: rgba(17, 24, 39, 1);
    margin-top: 10px;
}

.Cuangxin_max ul li p {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    text-align: center;
    margin-top: var(--top30);
    padding-top: var(--top30);
    position: relative;
}

.Cuangxin_max ul li p::before {
    content: "";
    width: 80%;
    height: 1px;
    background: rgba(17, 17, 17, 0.9);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.Wenhua {
    width: var(--max);
    margin: var(--top80) auto;
}

.Wenhua>h2 {
    font-size: var(--size30);
    color: rgba(31, 41, 55, 1);
    line-height: 1;
    text-align: center;
}

.Wenhua>p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    text-align: center;
    margin-top: var(--top20);
}

.Wenhua ul {
    width: 100%;
    margin-top: var(--top60);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top50);
}

.Wenhua ul li {
    width: 100%;
}

.Wenhua ul li h3 {
    text-align: center;
    background: rgba(6, 78, 150, 1);
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    padding: 10px;
}

.Wenhua ul li img {
    width: 100%;
    aspect-ratio: 300 / 230;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    margin-top: var(--top20);
}

.Wenhua ul li:nth-child(3n+2) h3 {
    background: rgba(0, 46, 90, 1);
}

.Wenhua ul li:nth-child(3n) h3 {
    background: rgba(235, 215, 18, 1);
}

.Zeren {
    width: 100%;
    overflow: hidden;
    background: rgba(245, 247, 250, 1);
}

.Zeren_max {
    width: var(--max);
    margin: var(--top80) auto;
}

.Zeren_max>h2 {
    font-size: var(--size30);
    color: rgba(31, 41, 55, 1);
    line-height: 1;
    text-align: center;
}

.Zeren_max>p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    text-align: center;
    margin-top: var(--top20);
}

.Zeren_cen {
    width: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    margin-top: var(--top60);
    padding: var(--top30);
}

.Zeren_top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top30);
}

.Zeren_top_left {
    width: 300px;
}

.Zeren_top_left>h2 {
    font-size: var(--size20);
    color: rgba(31, 41, 55, 1);
    line-height: 1;
}

.Zeren_top_left>p {
    font-size: var(--size14);
    color: rgba(55, 65, 81, 1);
    margin-top: 10px;
}


.Zeren_top ul {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.Zeren_top ul li {
    min-width: 160px;
    border-radius: 8px;
    background: rgba(239, 246, 255, 1);
    padding: 25px 15px;
}

.Zeren_top ul li p {
    text-align: center;
    font-size: var(--size24);
    color: rgba(6, 78, 150, 1);
    line-height: 1;
    font-weight: 700;
}

.Zeren_top ul li h3 {
    text-align: center;
    font-size: var(--size14);
    color: rgba(75, 85, 99, 1);
    margin-top: 5px;
}

.Zeren_button {
    width: 100%;
    margin-top: var(--top60);
}

.Zeren_button h2 {
    font-size: var(--size20);
    color: rgba(31, 41, 55, 1);
}

.Zeren_button ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top25);
    margin-top: var(--top25);
}

.Zeren_button ul li {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(243, 244, 246, 1);
    overflow: hidden;
}

.Zeren_button ul li>img {
    width: 100%;
    aspect-ratio: 320 / 160;
    object-fit: cover;
}

.Zeren_button_max {
    width: 100%;
    padding: var(--top20);
}

.Zeren_button_img {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.Zeren_button_img img {
    width: 18px;
    height: auto;
}

.Zeren_button_img h3 {
    flex: 1;
    font-size: var(--size16);
    color: rgba(31, 41, 55, 1);
}

.Zeren_button_list {
    width: 100%;
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}

.Zeren_button_item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.Zeren_button_item img {
    width: 12px;
    height: auto;
}

.Zeren_button_item p {
    flex: 1;
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
}


.Xinwen {
    width: var(--max);
    margin: var(--top80) auto;
}

.Xinwen ul {
    width: 100%;
    margin-top: var(--top60);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--top80);
}

.Xinwen ul li {
    width: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    overflow: hidden;
}

.Xinwen ul li a>img {
    width: 100%;
    aspect-ratio: 300 / 220;
    object-fit: cover;
}

.Xinwen_title {
    width: 100%;
    padding: var(--top20);
}

.Xinwen_title h3 {
    font-size: var(--size18);
    color: rgba(17, 24, 39, 1);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.Xinwen_title>p {
    font-size: var(--size14);
    color: rgba(75, 85, 99, 1);
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.Xinwen_dizhi {
    width: 100%;
    margin-top: var(--top30);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.Xinwen_dizhi span {
    flex: 1;
    font-size: var(--size14);
    color: rgba(107, 114, 128, 1);
}

.Xinwen_dizhi p {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: var(--size14);
    color: rgba(37, 99, 235, 1);
}

.Xinwen_dizhi img {
    width: 8px;
    height: auto;
}

.Shipin_xin {
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 1);
}

.Shipin_xin_max {
    width: var(--max);
    margin: var(--top80) auto;
}

.Shipin_xin_max ul {
    width: 100%;
    margin-top: var(--top60);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top30);
}

.Shipin_xin_max ul li {
    width: 100%;
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    overflow: hidden;
}


.Shipin_xin_max .Shipin_img img {
    aspect-ratio: 470 / 190;
}

.Shipin_xin_max .Shipin_img p {
    width: max-content;
    line-height: 24px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    position: absolute;
    bottom: auto;
    right: 15px;
    top: 15px;
    padding: 0 10px;
    font-size: 12px;
    color: rgba(31, 41, 55, 1);
}

.Shipin_svg {
    width: 60px;
    aspect-ratio: 4 / 4;
    background: rgba(6, 78, 150, 1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.Shipin_svg svg {
    width: 20px;
    height: auto;
    display: block;
}

.Shipin_svg:hover {
    transform: translate(-50%, -50%) scale(0.8);
}

.Shipin_tame {
    width: 100%;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--top40);
}

.Shipin_tame>p {
    font-size: var(--size14);
    color: rgba(78, 89, 105, 1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.Shipin_tame svg {
    width: 14px;
    aspect-ratio: 4 / 4;
    object-fit: contain;
}

.Yewu {
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 1);
}

.Yewu_max {
    width: var(--max);
    margin: var(--top80) auto;
}

.Yewu_max ul {
    width: 100%;
    margin-top: var(--top30);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px;
}

.Yewu_max ul li {
    flex: 1;
    background: rgba(225, 226, 228, 1);
    font-size: var(--size16);
    color: rgba(31, 41, 55, 1);
    padding: 10px;
    text-align: center;
    border-bottom: 3px solid rgba(25, 80, 162, 1);
}

.Yewu_max ul li.active {
    background: rgba(25, 80, 162, 1);
    color: rgba(255, 255, 255, 1);
}

.Yewu_wen {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top30);
    margin-top: var(--top30);
}

.Yewu_wen a {
    width: max-content;
    font-size: var(--size16);
    color: rgba(31, 41, 55, 1);
    font-weight: 700;
}

.Yewu_wen_item {
    width: 100%;
    margin-top: var(--top60);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top40);
}

.Yewu_swiper {
    width: 50%;
    border-radius: var(--top20);
}

.Yewu_wen_itemitem {
    width: 100%;
}

.Yewu_wen_itemitem img {
    width: 100%;
    aspect-ratio: 750 / 440;
    /*object-fit: cover;*/
}

.Yewu_wen_title {
    flex: 1;
}

.Yewu_wen_title h3 {
    font-size: var(--size24);
    color: rgba(38, 38, 38, 1);
}

.Yewu_wen_title p {
    font-size: var(--size16);
    color: rgba(107, 114, 128, 1);
    margin-top: var(--top20);
}

.Yewu_wen_title a {
    display: block;
    width: max-content;
    line-height: 48px;
    border-radius: 8px;
    background: rgba(6, 78, 150, 1);
    margin-top: var(--top40);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    padding: 0 var(--top60);
}

.prev2,
.next2 {
    background: transparent;
}

.prev2 svg,
.next2 svg {
    width: 16px;
    height: auto;
}

.Show_yewu {
    width: 1200px;
    max-width: 100%;
    margin: auto;
    margin-top: var(--top60);
}

.Show_yewu>h2 {
    font-size: var(--size30);
    color: rgba(17, 24, 39, 1);
}

.Show_yewu>p {
    font-size: var(--size16);
    color: rgba(75, 85, 99, 1);
    margin-top: 5;
}

.Show_yewu>img {
    max-width: 100%;
    height: auto;
    margin-top: var(--top60);
}

.Show_yewu_intro {
    width: 100%;
    margin-top: var(--top40);
}

.Show_yewu_intro h2 {
    font-size: var(--size20);
    color: rgba(17, 24, 39, 1);
}

.Show_yewu_intro p {
    font-size: var(--size16);
    color: rgba(55, 65, 81, 1);
    margin-top: var(--top20);
}

.Show_yewu_tech {
    width: 100%;
    margin-top: var(--top40);
}

.Show_yewu_tech h2 {
    font-size: var(--size20);
    color: rgba(17, 24, 39, 1);
}


.Show_yewu_tech_header {
    width: 100%;
    margin-top: var(--top20);
    background: rgba(249, 250, 251, 1);
    border-bottom: 1px solid rgba(229, 231, 235, 1);
    font-size: var(--size14);
    color: rgba(107, 114, 128, 1);
    line-height: 2;
    padding: var(--top30);
}


.Show_yewu_tech_item {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    border-bottom: 1px solid rgba(229, 231, 235, 1);
}

.Show_yewu_tech_item p {
    font-size: var(--size14);
    color: rgba(107, 114, 128, 1);
    padding: 15px 25px;
}

.Show_yewu_tech_item p:nth-child(1) {
    color: rgba(17, 24, 39, 1);
    font-weight: 700;
}

.Xiazai {
    width: 100%;
    background: rgba(249, 250, 251, 1);
    padding: var(--top25) var(--top30);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 15px;
}

.Xiazai a {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(209, 213, 219, 1);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    line-height: 38px;
    font-size: var(--size14);
    color: rgba(55, 65, 81, 1);
    padding: 0 20px;
}

.Xiazai a:nth-child(1) {
    background: rgba(6, 78, 150, 1);
    border: 1px solid rgba(6, 78, 150, 1);
    color: rgba(255, 255, 255, 1);
}

.Xiazai a img {
    width: 14px;
    height: auto;
}

.Shipin_xin_more {
    width: 100%;
    margin-top: var(--top60);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.Shipin_xin_more>a {
    width: max-content;
    line-height: 50px;
    border: 2px solid rgba(6, 78, 150, 1);
    border-radius: 8px;
    font-size: var(--size16);
    color: rgba(6, 78, 150, 1);
    padding: 0 var(--top30);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.Shipin_xin_more>a svg {
    width: 20px;
    height: auto;
    transition: transform 0.3s ease;
}

.Yewu_in {
    width: var(--max);
    margin: var(--top80) auto;
}

.Yewu_cat {
    width: 1200px;
    max-width: 100%;
    margin: auto;
    margin-top: var(--top60);
}

.Yewu_cat ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--top40);
}

.Yewu_cat ul li {
    width: 100%;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.18);
    border-radius: 8px;
}

.Yewu_cat ul li img {
    width: 100%;
    aspect-ratio: 600 / 320;
    object-fit: contain;
}

.Yewu_cat_text {
    width: 100%;
    background: rgba(100, 184, 248, 0.1);
    border-top: 1px solid rgba(229, 231, 235, 1);
    padding: var(--top25);
}

.Yewu_cat_text h2 {
    font-size: var(--size20);
    color: rgba(31, 41, 55, 1);
}

.Yewu_cat_text p {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: var(--size16);
    color: rgba(6, 78, 150, 1);
    margin-top: 5px;
}

.Yewu_cat_text p svg {
    width: 14px;
    height: auto;
}

.Yewu_cat ul li:hover .Yewu_cat_text {
    background: rgba(100, 184, 248, 0.8);
}

.Yewu_cat ul li:hover * {
    color: #ffffff;
}

.Yewu_cat ul li:hover .Yewu_cat_text p svg path {
    stroke: #ffffff;
}

.Xinwenin {
    width: 100%;
    overflow: hidden;
    background: rgba(249, 250, 251, 1);
}

.Xinwenin_max {
    width: var(--max);
    margin: var(--top80) auto;
}

.Xinwenin_cen {
    width: 100%;
    margin-top: var(--top60);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top30);
}

.Xinwenin_left {
    width: 65%;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
}

.Xinwenin_left a>img {
    width: 100%;
    aspect-ratio: 970 / 320;
    object-fit: cover;
}

.Xinwenin_text {
    width: 100%;
    padding: var(--top25);
}

.Xinwenin_text span {
    font-size: var(--size14);
    color: rgba(107, 114, 128, 1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.Xinwenin_text span svg {
    width: 14px;
    aspect-ratio: 4 / 4;
    object-fit: contain;
}

.Xinwenin_text h2 {
    font-size: var(--size24);
    color: rgba(31, 41, 55, 1);
    margin-top: 10px;
}

.Xinwenin_text p {
    font-size: var(--size16);
    color: rgba(75, 85, 99, 1);
    margin-top: 10px;
}

.Xinwenin_a {
    width: 100%;
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: var(--size14);
    color: rgba(6, 78, 150, 1);
}

.Xinwenin_a img {
    width: 8px;
    height: auto;
}

.Xinwenin_cen ul {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.Xinwenin_cen ul li {
    width: 100%;
    border-radius: 6px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

.Xinwenin_cen ul li a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Xinwenin_cen ul li a>img {
    width: 150px;
    object-fit: cover;
}

.XinweninRight_text {
    flex: 1;
    padding: 15px;
}

.XinweninRight_text p {
    font-size: var(--size14);
    color: rgba(107, 114, 128, 1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.XinweninRight_text p svg {
    width: 14px;
    aspect-ratio: 4 / 4;
    object-fit: contain;
}

.XinweninRight_text h2 {
    font-size: var(--size16);
    color: rgba(31, 41, 55, 1);
    margin-top: 10px;
    line-height: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.XinweninRight_text span {
    width: 100%;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: var(--size14);
    color: rgba(6, 78, 150, 1);
}

.XinweninRight_text span img {
    width: 8px;
    height: auto;
}

.Xinwenin_cen ul>a {
    width: 100%;
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    font-size: var(--size16);
    color: rgba(6, 78, 150, 1);
    text-align: center;
    padding: 15px;
    line-height: 1;
}