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

.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: 90px;
    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(--top40);
}

.Nav ul li {
    font-size: var(--size16);
    color: rgba(45, 96, 161, 1);
    text-align: center;
    line-height: 100px;
    position: relative;
}

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


.Nav ul li.active,
.Nav ul li:hover {
    color: rgba(230, 0, 18, 1);
}

.Nav_item {
    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_item a {
    color: #000000;
    display: block;
    line-height: 2.5;
    font-size: var(--size14);
}

.Nav_item a:hover,
.Nav_item a.active {
    color: #ec078d;
}

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

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

.Beian_max {
    width: var(--max);
    overflow: hidden;
    margin: var(--top30) auto;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.Beian_max p {
    width: 100%;
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
}

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

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

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

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

.Banner_text p {
    text-align: center;
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    margin-top: var(--top20);
}

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

.Jianjie>h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(29, 34, 42, 1);
}

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

.Jianjie_max {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5vw;
    margin-top: var(--top50);
}

.Jianjie_left {
    flex: 1;
}

.Jianjie_left h3 {
    font-size: var(--size24);
    color: rgba(9, 15, 25, 1);
}

.Jianjie_left p {
    font-size: var(--size14);
    color: rgba(153, 153, 153, 1);
    margin-top: var(--top20);
    line-height: 1.8;
}

.Jianjie_left ul {
    width: 100%;
    margin-top: var(--top100);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Jianjie_left ul li {
    width: max-content;
}

.Jianjie_left ul li p {
    text-align: center;
    font-size: var(--size16);
    color: rgba(7, 70, 255, 1);
    line-height: 1;
}

.Jianjie_left ul li p span {
    font-size: var(--size36);
    font-weight: 600;
}

.Jianjie_left ul li h4 {
    text-align: center;
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    margin-top: 10px;
}

.Jianjie_right {
    width: 40%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

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

.Jianjie_right p {
    width: 100%;
    text-align: center;
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    padding: var(--top20);
    position: absolute;
    bottom: 0;
}

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

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

.Rongyu_max>h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgb(255, 255, 255);
}

.Rongyu_max>p {
    text-align: center;
    font-size: var(--size16);
    color: rgb(255, 255, 255, 0.6);
    margin-top: 10px;
}

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

.Rongyu_img {
    width: 100%;
}

.Rongyu_img ul {
    padding: 5px 0;
}

.Rongyu_img li {
    width: 35% !important;
    aspect-ratio: 540 / 390;
    padding: 10px;
    border-radius: 15px;
}

.Rongyu_img ul li::after {
    content: '';
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: rgba(29, 34, 43, 0.6);
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    transition: 0.3s;
}

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

.Rongyu_img li.zhenshangyin-slide-active {
    background: linear-gradient(180deg, rgba(0, 11, 37, 1) 0%, rgba(0, 11, 37, 0.4) 100%);
    border: 1px solid rgba(112, 112, 112, 1);
}

.Rongyu_img ul li.zhenshangyin-slide-active::after {
    background: rgba(29, 34, 43, 0);
}

.prev,
.next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
}

.Rongyu_title {
    width: 30%;
    margin: auto;
    height: 40px !important;
    margin-top: 25px;
    background: rgba(255, 255, 255, 1);
}

.Rongyu_title ul li {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


.Rongyu_title ul li p {
    font-size: var(--size16);
    color: rgb(0, 0, 0);
}

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

.Wenhua>h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(29, 34, 42, 1);
}

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

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

.Wenhua_left {
    flex: 1;
}

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

.Wenhua_left ul li {
    width: 100%;
}

.Wenhua_left ul li h3 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--top30);
    font-size: var(--size24);
    color: rgba(7, 70, 255, 1);
}

.Wenhua_left ul li p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    margin-top: 5px;
}

.Wenhua_right {
    width: 60%;
}

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

.Fazhan {
    width: 100%;
    overflow: hidden;
    background: rgba(244, 248, 255, 1);
}

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

.Fazhan_max>h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(29, 34, 42, 1);
}

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

.Fazhan_top {
    width: 800px;
    max-width: 100%;
    margin: auto;
    margin-top: var(--top50);
}

.Fazhan_top li {
    width: 100%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Fazhan_top li img {
    width: 45%;
    aspect-ratio: 360 / 280;
    object-fit: cover;
}

.Fazhan_top_text {
    flex: 1;
    padding: 15px var(--top50);
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.Fazhan_top_text h3 {
    width: 100%;
    font-size: var(--size24);
    color: rgba(29, 34, 42, 1);
}

.Fazhan_top_text h3::after {
    content: "";
    width: 30px;
    height: 6px;
    background: rgba(50, 105, 255, 1);
    display: block;
    margin-top: 10px;
}

.Fazhan_top_text p {
    width: 100%;
    font-size: var(--size16);
    color: rgba(153, 153, 153, 1);
    margin-top: var(--top30);
    line-height: 1.8;
}

.Fazhan_bottom {
    width: 950px;
    max-width: 100%;
    margin: auto;
}

.Fazhan_bottom ul {
    padding-top: 50px;
}

.Fazhan_bottom ul li {
    cursor: pointer;
    overflow: initial;
}

.Fazhan_bottom ul li img {
    width: 60px;
    aspect-ratio: 4 / 4;
    object-fit: cover;
    border-radius: 50%;
    margin: auto;
}

.Fazhan_bottom ul li p {
    text-align: center;
    font-size: 14px;
    color: rgba(102, 102, 102, 1);
    margin-top: 20px;
}

.Fazhan_bottom ul li.zhenshangyin-slide-active img {
    border: 2px solid rgba(6, 158, 255, 1);
    box-shadow: 0px 1px 30px rgba(6, 158, 255, 0.4);
    transform: scale(1.2);
}

.Fazhan_bottom ul li.zhenshangyin-slide-active p {
    color: rgba(6, 158, 255, 1);
}

.Fengcai {
    width: 100%;
    overflow: hidden;
    background: rgba(21, 27, 38, 1);
}

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

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

.Fengcai_max>p {
    text-align: center;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

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

.Fengcai_max ul li {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.Fengcai_max ul li a::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: 0.3s;
}

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

.Fengcai_table {
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 3;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.Fengcai_text {
    flex: 1;
}

.Fengcai_text h3 {
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
}

.Fengcai_text p {
    font-size: var(--size14);
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.Fengcai_max svg {
    width: 20px;
    height: auto;
}

.Fengcai_max ul li:hover {
    transform: translateY(-10px);
}

.I {
    width: 100%;
    overflow: hidden;
    min-height: var(--size20);
    background: rgba(250, 250, 250, 1);
}

.I_max {
    width: var(--max);
    margin: 10px auto;
    font-size: var(--size16);
    color: rgba(153, 153, 153, 1);
}

.Rexian {
    width: 100%;
    overflow: hidden;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: var(--top60) 15px;
}

.Rexian p {
    font-size: var(--size46);
    color: rgba(255, 236, 173, 1);
    font-weight: 600;
    text-align: center;
    margin: auto;
}

.Zhaopin {
    width: 100%;
    overflow: hidden;
    background: rgba(245, 245, 245, 1);
}

.Zhaopin_max {
    width: var(--max);
    margin: var(--top60) auto;
    background: rgba(255, 255, 255, 1);
    padding: var(--top60) var(--top80);
}

.Zhaopin_max_list {
    width: 100%;
    overflow: auto;
}

.Zhaopin_max ul {
    width: 100%;
}

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

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

.Zhaopin_max ul li div:nth-child(1) {
    flex: 2;
    text-align: left;
}

.Zhaopin_max ul li div:nth-child(2) {
    flex: 3;
    text-align: left;
}

.Zhaopin_max ul li:nth-child(1) {
    border-bottom: 2px solid rgba(14, 115, 184, 1);
}

.Zhaopin_max ul li:nth-child(1) div {
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    font-weight: 600;
}

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

.Show>h2 {
    font-size: var(--size24);
    color: rgba(0, 0, 0, 1);
}

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

.Show_text {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: var(--top20) 0;
    margin-top: var(--top20);
    font-size: var(--size14);
    color: #222222;
    line-height: 2;
}

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

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

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

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

.pagination .page-item {
    font-size: var(--size14);
    color: rgba(96, 98, 102, 1);
    line-height: 1;
}

.pagination .page-item.active {
    color: rgba(230, 0, 18, 1);
}

.page-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--size14);
    color: rgba(96, 98, 102, 1);
    margin-right: var(--top20);
}

.page-info span {
    white-space: nowrap;
}

.page-jump {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: var(--size14);
    color: rgba(96, 98, 102, 1);
    margin-left: var(--top20);
}

.page-jump-input::-webkit-inner-spin-button,
.page-jump-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.page-jump-input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.page-jump-input {
    width: 56px;
    height: 32px;
    border-radius: 2px;
    border: 1px solid rgba(220, 223, 230, 1);
    border-radius: 4px;
    text-align: center;
    font-size: var(--size14);
    color: rgba(96, 98, 102, 1);
    outline: none;
}

.page-jump-input:focus {
    border-color: rgba(230, 0, 18, 1);
}

.page-size-selector {
    width: max-content;
    display: flex;
    align-items: center;
}

.page-size-select {
    height: 32px;
    min-width: 90px;
    padding: 0 32px 0 12px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    font-size: var(--size14);
    color: rgba(96, 98, 102, 1);
    background: #fff url("data:image/svg+xml;utf8,<svg fill='rgba(96,98,102,1)' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6z'/></svg>") no-repeat right 10px center/16px 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    cursor: pointer;
    box-sizing: border-box;
    transition: border-color .2s;
}

.page-size-select:focus,
.page-size-select:hover {
    border-color: rgba(230, 0, 18, 1);
}

.page-size-select option {
    color: #333;
    background: #fff;
    font-size: var(--size14);
}

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

.Fangwu_max {
    width: 100%;
}

.Fangwu_max form {
    width: 840px;
    max-width: 100%;
    height: 60px;
    border-radius: 10px;
    border: 1px solid rgba(204, 204, 204, 1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Fangwu_max form input {
    flex: 1;
    height: 100%;
    font-size: var(--size16);
    color: rgba(153, 153, 153, 1);
    padding: 0 var(--top20);
}

.Fangwu_max form button {
    width: 62px;
    height: 100%;
    border-radius: 0px 10px 10px 0px;
    background: rgba(230, 0, 18, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

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

.Fangwu_nav a {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    padding-bottom: 10px;
    position: relative;
}

.Fangwu_nav a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: rgba(230, 0, 18, 1);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.Fangwu_nav a.active::after,
.Fangwu_nav a:hover::after {
    width: 100%;
}

.Fangwu_nav a.active,
.Fangwu_nav a:hover {
    color: rgba(230, 0, 18, 1);
}


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

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

.Fangwu_shai_list {
    width: max-content;
    position: relative;
}

.Fangwu_title {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(230, 230, 230, 1);
    border-radius: 5px;
    padding: 10px var(--top20);
    cursor: pointer;
}

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

.Fangwu_title svg {
    width: 12px;
    height: auto;
}

.Fangwu_tan {
    width: max-content;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 999;
    display: none;
    transition: auto;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.Fangwu_tan_max {
    width: max-content;
    background: #ffffff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--top30) var(--top60);
    padding: var(--top20);
    border-radius: 5px;
}

.Fangwu_tan_max a {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    cursor: pointer
}

.Fangwu_tan_max a input {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #8f8f8f;
    border-radius: 3px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.Fangwu_tan_max a input:before {
    content: "";
    font-size: 10px;
    color: #ffffff;
    background: rgba(230, 0, 18, 1) url(../images/dui.png) no-repeat center center / 10px auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    opacity: 0;
}

.Fangwu_tan_max a input:checked {
    border: 1px solid rgba(230, 0, 18, 1);
}

.Fangwu_tan_max a input:checked:before {
    opacity: 1;
}

.Fangwu_tan_max a p {
    flex: 1;
    font-size: var(--size14);
    color: #303030;
}

.Fangwu_tan_max a.active input {
    border: 1px solid rgba(230, 0, 18, 1);
}

.Fangwu_tan_max a.active input:before {
    opacity: 1;
}

.Fangwu_tan_max a.active p {
    color: rgba(230, 0, 18, 1);
}




.Fangwu_shai_list.active .Fangwu_title,
.Fangwu_shai_list:hover .Fangwu_title {
    background: rgba(230, 0, 18, 1);
    border: 1px solid rgba(230, 0, 18, 1);
}

.Fangwu_shai_list.active .Fangwu_title p,
.Fangwu_shai_list:hover .Fangwu_title p {
    color: #ffffff;
}

.Fangwu_shai_list.active .Fangwu_title svg path,
.Fangwu_shai_list:hover .Fangwu_title svg path {
    fill: #ffffff;
}

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

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

.Baijuer ul li {
    width: 100%;
    background: rgba(241, 244, 245, 1);
    padding: var(--top20) var(--top30);
}

.Baijuer_text {
    width: 100%;
    display: flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

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

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

.Baijuer_text h2 {
    flex: 1;
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
}

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

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

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

.Fangpan h2 {
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
}

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

.Fangpan form h3 {
    width: 100%;
    line-height: 50px;
    background: rgba(238, 238, 238, 1);
    text-align: center;
    font-size: var(--size18);
    color: rgba(0, 0, 0, 1);
}

.Fangpan_input {
    width: 100%;
    margin: var(--top30) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top30) var(--top20);
}

.Fangpan_input input {
    width: calc(50% - calc(var(--top20) / 2));
    height: 59px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(190, 197, 211, 1);
    font-size: var(--size16);
    color: rgba(153, 153, 153, 1);
    padding: 0 var(--top20);
}

.Fangpan_input input:last-child {
    width: 100%;
}

.Fangpan_radio {
    width: 100%;
    margin: var(--top30) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top30) var(--top20);
}

.Fangpan_radio>input {
    width: 100%;
    height: 59px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(190, 197, 211, 1);
    font-size: var(--size16);
    color: rgba(153, 153, 153, 1);
    padding: 0 var(--top20);
}

.Fangpan_input input:last-child {
    width: 100%;
}

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

.Fangpan_radio_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top20);
}

.Fangpan_radio_list label {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    cursor: pointer;
}

.Fangpan_radio_list label input {
    appearance: none;
    width: 20px;
    height: 20px;
    opacity: 1;
    border: 2px solid rgba(153, 153, 153, 1);
    border-radius: 50%;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.Fangpan_radio_list label input:checked {
    border: 4px solid rgba(212, 48, 48, 1)
}

.FuwuTiao {
    width: 100%;
    margin-top: var(--top30);
    border: 1px solid rgba(190, 197, 211, 1);
    padding: 15px;
}

.FuwuTiao h4 {
    font-size: var(--size18);
    color: rgba(212, 48, 48, 1);
}

.FuwuTiao p {
    font-size: var(--size14);
    color: rgba(102, 102, 102, 1);
    margin-top: 15px;
}

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

.FuwuTiao_checkbox label {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.FuwuTiao_checkbox label input {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #8f8f8f;
    border-radius: 3px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.FuwuTiao_checkbox label input:before {
    content: "";
    font-size: 10px;
    color: #ffffff;
    background: rgba(230, 0, 18, 1) url(../images/dui.png) no-repeat center center / 10px auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    opacity: 0;
}

.FuwuTiao_checkbox label input:checked {
    border: 1px solid rgba(230, 0, 18, 1);
}

.FuwuTiao_checkbox label input:checked:before {
    opacity: 1;
}

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

.FuwuTiao_checkbox p a {
    color: rgba(45, 96, 161, 1);
    text-decoration: underline;
    cursor: pointer;
}

.FuwuTiao_checkbox p a:hover {
    color: rgba(230, 0, 18, 1);
}

#submitAdd {
    width: 200px;
    height: 50px;
    background: rgba(230, 0, 18, 1);
    color: #ffffff;
    font-size: var(--size16);
    border-radius: 5px;
    cursor: pointer;
    margin: auto;
    margin-top: var(--top30);
}

.modal_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 10000;
    transition: background-color 0.3s ease;
}

.modal_overlay.show {
    display: block;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal_overlay.show.closing,
.modal_overlay.closing {
    background-color: rgba(0, 0, 0, 0);
}

.modal_content {
    width: 1200px;
    max-width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 10001;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal_overlay.show .modal_content {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.modal_overlay.show.closing .modal_content,
.modal_overlay.closing .modal_content {
    transform: translate(-50%, -80%);
    opacity: 0;
}

.modal_header {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(0, 0, 0);
    padding-bottom: 10px;
}

.modal_header h3 {
    font-size: var(--size20);
    color: rgb(0, 0, 0);
    font-weight: 600;
}

.modal_header span {
    font-size: 30px;
    color: rgb(0, 0, 0);
    font-weight: 600;
    cursor: pointer;
    line-height: 1;
}

.modal_body {
    width: 100%;
    max-height: 60vh;
    overflow: auto;
    font-size: var(--size14);
    color: rgba(102, 102, 102, 1);
    margin-top: 20px;
    line-height: 1.8;
}

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

.Zixun h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(0, 24, 56, 1);
    position: relative;
}

.Zixun h2 a {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--size16);
    color: rgba(0, 24, 56, 0.8);
    line-height: 1;
    gap: 10px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.Zixun h2 a svg {
    width: 8px;
    height: auto;
}

.Zixun h2 a:hover {
    color: rgba(216, 46, 66, 1);
}

.Zixun h2 a:hover svg path {
    fill: rgba(216, 46, 66, 1);
}

.Zixun ul {
    width: 100%;
    margin-top: var(--top40);
    display: flex;
    justify-content: space-between;
    aspect-ratio: 1400 / 650;
}

.Zixun ul li {
    flex: 1;
    height: 100%;
    position: relative;
}

.Zixun ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Zixun_text {
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    bottom: 0;
    padding: 15px;
}

.Zixun_text h3 {
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

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

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

.Baijuerin h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(0, 24, 56, 1);
    position: relative;
}

.Baijuerin h2 a {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--size16);
    color: rgba(0, 24, 56, 0.8);
    line-height: 1;
    gap: 10px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.Baijuerin h2 a svg {
    width: 8px;
    height: auto;
}

.Baijuerin h2 a:hover {
    color: rgba(216, 46, 66, 1);
}

.Baijuerin h2 a:hover svg path {
    fill: rgba(216, 46, 66, 1);
}

.Baijuerin ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: var(--top20);
    margin-top: var(--top40);
}

.Baijuerin ul li {
    position: relative;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

.Baijuerin ul li:nth-child(3) {
    grid-area: 1 / 7 / 2 / 10;
}

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

.Baijuerin ul li:nth-child(5) {
    grid-area: 2 / 6 / 3 / 10;
}

.Baijuerin ul li:nth-child(1) img {
    aspect-ratio: 410 / 600;
    height: auto;
}

.Baijuerin ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Baijuerin_text {
    width: 100%;
    padding: 15px var(--top30);
    background: rgba(255, 255, 255, 1);
    position: absolute;
    bottom: 0;
    left: 0;
}

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

.Baijuerin_text h3 {
    font-size: var(--size18);
    color: rgba(0, 0, 0, 1);
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Baijuerin ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}


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

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

.List ul li {
    width: 100%;
    position: relative;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}


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

.List_text {
    width: 100%;
    padding: 15px var(--top30);
    background: rgba(255, 255, 255, 1);
}

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

.List_text h3 {
    font-size: var(--size18);
    color: rgba(0, 0, 0, 1);
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.List ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

.Fangwu_shu {
    width: 100%;
    margin-top: var(--top30);
    text-align: center;
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
}

.Fangwu_shu span {
    color: rgba(230, 0, 18, 1);
    font-weight: 700;
}

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

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

.Fangwu_yi ul li {
    width: 100%;
    border: 1px solid rgba(224, 224, 224, 1);
    padding: 15px;
    border-radius: 5px;
}

.Fangwu_yi ul li:hover {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

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

.Fangwu_img {
    width: 340px;
    contain: size;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

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

.Fangwu_img p {
    width: 100%;
    position: absolute;
    text-align: center;
    bottom: -100%;
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    font-weight: 800;
    text-shadow: 0px 1px rgba(227, 60, 100, 1);
}

.Fangwu ul li:hover .Fangwu_img p {
    bottom: 10px;
}

.Fangwu_text {
    flex: 1;
    padding: 10px 0;
}

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

.Fangwu_yi ul li:hover .Fangwu_text h2 {
    color: rgba(216, 46, 66, 1);
}

.Fangwu_di {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    margin-top: var(--top20);
}

.Fangwu_di svg {
    width: 18px;
    height: auto;
}

.Fangwu_di p {
    flex: 1;
    font-size: var(--size18);
    color: rgba(42, 130, 228, 1);
}

.Fangwu_list {
    width: 100%;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-right: 10vw;
}

.Fangwu_ltem {
    width: max-content;
}

.Fangwu_ltem h3 {
    font-size: var(--size14);
    color: rgba(51, 51, 51, 1);
}

.Fangwu_ltem p {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    font-weight: 700;
    margin-top: 10px;
}

.Fangwu_ltem:last-child h3 {
    border-radius: 3px;
    background: rgba(230, 0, 18, 1);
    line-height: 26px;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    padding: 0 10px;
    margin: auto;
}

.Fangwu_ltem:nth-last-child(2) p,
.Fangwu_ltem:last-child p {
    text-align: center;
}

.Fangwu_wap {
    display: none;
}

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

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

.Fangwu_er ul li {
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #00000020
}

.Fangwu_er ul li:hover {
    transform: translateY(-3px);
    box-shadow: 0px 0px 8px 5px #00000010;
}

.Fangwu_er_img {
    width: 100%;
}

.Fangwu_er_img img {
    width: 100%;
    aspect-ratio: 330 / 210;
    object-fit: cover;
}

.Fangwu_er_text {
    width: 100%;
    padding: 15px;
}

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

.Fangwu_er ul li:hover .Fangwu_er_text h2 {
    color: rgba(216, 46, 66, 1);
}

.Fangwu_er_text>span {
    display: block;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: 5px;
}

.Biaoqian {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.Biaoqian p {
    width: max-content;
    line-height: 30px;
    border-radius: 3px;
    background: rgba(166, 166, 166, 1);
    font-size: var(--size14);
    color: rgba(255, 255, 255, 1);
    padding: 0 10px;
}

.Biaoqian p.Chu_Biaoqian {
    background: rgba(60, 136, 37, 1);
}

.Fangwu_er_text>p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    line-height: 1.5;
    margin-top: 10px;
}

.Fangwu_er_jin {
    width: 100%;
    font-size: var(--size14);
    color: rgba(212, 48, 48, 1);
    text-align: right;
    margin-top: var(--top20);
}

.Fangwu_er_jin span {
    font-size: var(--size24);
    color: rgba(212, 48, 48, 1);
    font-weight: 600;
    margin-right: 5px;
}


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


.Fangwi_show_bottom {
    width: 100%;
    margin-top: var(--top50);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5vw;
}

.Fangwi_shu {
    flex: 1;
    border: 1px solid rgba(224, 227, 231, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    padding: var(--top30);
}

.Fangwi_shu_top {
    width: 100%;
    border-bottom: 1px solid rgba(224, 227, 231, 1);
    padding-bottom: var(--top20);
}

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

.Fangwi_shu_top p {
    font-size: var(--size14);
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    margin-top: 5px;
}

.Fangwi_shu_top p span {
    font-size: var(--size36);
    font-weight: 900;
}

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

.Fangwi_shu ul li {
    width: 100%;
}

.Fangwi_shu ul li h3 {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
}

.Fangwi_shu ul li p {
    font-size: var(--size14);
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    margin-top: 5px;
}

.Fangwi_shu ul li p span {
    font-size: var(--size36);
    font-weight: 700;
    margin: 5px;
}

.Fangwi_shu a {
    width: 270px;
    max-width: 100%;
    border-radius: 5px 5px 5px 5px;
    background: rgba(216, 46, 66, 1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--top30);
    padding: 10px;
    gap: 15px;
}

.Fangwi_shu a h2 {
    font-size: var(--size18);
    color: rgba(252, 252, 252, 1);
}

.Fangwi_shu a p {
    font-size: var(--size18);
    color: rgba(252, 252, 252, 1);
    margin-left: auto;
}

.Fangwi_shu_right {
    width: 60%;
}

.Fangwi_shu_right>ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top40);
}

.Fangwi_shu_right>ul>li {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    cursor: pointer;
}

.Fangwi_shu_right>ul>li.active {
    color: rgba(51, 51, 51, 1);
    font-weight: 600;
}

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

.Fangwi_shu_itme {
    width: 100%;
    display: none;
    transition: auto;
}

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

.Fangwi_swiper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top20);
}

.Fangwi_swiper_top {
    flex: 1;
    aspect-ratio: 680 / 430;
    border-radius: 5px;
}

.Fangwi_swiper_top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.Fangwi_swiper_top video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

.Fangwi_swiper_button {
    width: 150px;
    contain: size;
    height: auto !important;
}

.Fangwi_swiper_button li {
    border-radius: 10px;
    background: rgba(235, 235, 235, 1);
    border: 3px solid rgba(219, 219, 219, 1);
    cursor: pointer;
}

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

.Fangwi_swiper_button li.zhenshangyin-slide-active {
    border: 3px solid rgba(102, 102, 102, 1);
}

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

.Fangwi_show_title {
    flex: 1;
}

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

.Fernxiang {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--top20);
}

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

.Icon {
    width: 40px;
    cursor: pointer;
}

.Icon svg {
    width: 100%;
    height: auto;
    display: block;
}

.qrcode_modal {
    width: 400px;
    max-width: 90%;
}

.qrcode_body {
    width: 100%;
    margin-top: 20px;
}

.qrcode_body p {
    text-align: center;
    color: #333;
    font-size: var(--size16);
}

.qrcode_container {
    width: 100%;
    margin: 10px auto;
    position: relative;
}

.qrcode_loading {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: var(--size16);
    color: #000000;
}

.qrcode_img {
    width: 200px;
    max-width: 100%;
    height: 200px;
    border: 1px solid #eee;
    padding: 10px;
    background: #fff;
    margin: auto;
    display: block;
}

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

.Fangwi_show_xia {
    width: max-content;
    min-width: 340px;
    border-radius: 8px;
    min-height: 50px;
    border: 1px solid rgba(153, 153, 153, 1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--top20);
    position: relative;
    cursor: pointer;
}

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

.Fangwi_show_xia svg {
    width: 12px;
    height: auto;
    display: block;
}


.Fangwi_show_tan {
    width: max-content;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 999;
    display: none;
    transition: auto;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.Fangwi_show_tan_max {
    width: max-content;
    background: #ffffff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--top20) var(--top60);
    padding: var(--top20) var(--top30);
    border-radius: 5px;
}

.Fangwi_show_tan_max a {
    font-size: var(--size14);
    color: #303030;
}


.Fangwi_show_cen>a {
    width: max-content;
    line-height: 50px;
    border-radius: 5px;
    background: rgba(241, 244, 245, 1);
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    padding: 0 var(--top30);
}

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

.Banner_swiper {
    width: 100%;
}

.Banner_swiper li::after {
    content: "";
    width: 100%;
    height: 60%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.79) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}

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


.Banner_swiper_text {
    width: calc(100% - 30px);
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

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

.Banner_swiper_text a {
    width: max-content;
    display: block;
    line-height: 50px;
    background: rgba(67, 207, 124, 1);
    padding: 0 var(--top40);
    border-radius: 50px;
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    margin-top: var(--top30);
}
.pager1{
    bottom: var(--top30);
}
.Banner_form {
    width: 750px;
    max-width: 55%;
    background: rgba(255, 255, 255, 0.27);
    padding: var(--top30);
    position: absolute;
    top: var(--top50);
    right: 5vw;
    z-index: 10;
    border-radius: 10px;
    padding-bottom: 140px;
}


.Banner_nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top30);
    position: relative;
    z-index: 5;
}

.Banner_nav a {
    font-size: var(--size18);
    color: rgba(0, 24, 56, 1);
    line-height: 1;
    padding-bottom: 10px;
    position: relative;
    cursor: pointer;
}

.Banner_nav a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: rgba(230, 0, 18, 1);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.Banner_nav a.active::after,
.Banner_nav a:hover::after {
    width: 100%;
}


.Banner_form form {
    width: 100%;
    height: 60px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: rgba(255, 255, 255, 1);
    margin-top: 15px;
    position: relative;
    z-index: 5;
}

.Banner_form form input {
    flex: 1;
    height: 100%;
    font-size: var(--size16);
    color: rgba(153, 153, 153, 1);
    padding: 0 var(--top20);
}

.Banner_form form button {
    width: 100px;
    height: 100%;
    border-radius: 0px 10px 10px 0px;
    background: rgba(230, 0, 18, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
}

.Banner_form ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 5;
}

.Banner_form ul li {
    width: max-content;
    line-height: 30px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 1);
    font-size: var(--size14);
    color: rgba(139, 139, 139, 1);
    padding: 0 10px;
}

.Banner_form img{
    width: 250px;
    max-width: 50%;
    height: auto;
    position: absolute;
    bottom: 0;
    right: var(--top50);
}


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

.Tuijie h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(0, 24, 56, 1);
    position: relative;
}

.Tuijie_max {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--top60);
    position: relative;
    z-index: 5;
    margin-top: var(--top30);
}

.Tuijie_max a {
    font-size: var(--size18);
    color: rgba(102, 102, 102, 1);
    line-height: 1;
    padding-bottom: 10px;
    position: relative;
    cursor: pointer;
}

.Tuijie_max a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: rgba(230, 0, 18, 1);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.Tuijie_max a.active::after,
.Tuijie_max a:hover::after {
    width: 100%;
}


.Tuijie ul{
    width: 100%;
    margin-top: var(--top50);
}

.Tuijie li{
    width: 100%;
    display: none;
    transition: auto;
}

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

.Tuijie ul li img{
    width: 100%;
    height: auto;
}
.Tuijie_wap{
    display: none;
}


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

.Xinpan>h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(0, 24, 56, 1);
    position: relative;
}

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

.classXinpan_rleft{
    width: max-content;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top40);
}

.classXinpan_rleft a{
    font-size: var(--size20);
    color: rgba(0, 24, 56, 0.7);
    line-height: 1;
    position: relative;
    padding-left: 20px;
}

.classXinpan_rleft a::after{
    content: "";
    width: 2px;
    height: 0%;
    background: rgba(212, 48, 48, 1);
    position: absolute;
    top: 50%;
    left: 0;
    transition: all 0.3s;
    transform: translateY(-50%);
}

.classXinpan_rleft a.active::after,
.classXinpan_rleft a:hover::after {
    height: 100%;
}


.Xinpan_max .Fangwu_er{
    flex: 1;
    margin: 0;
}

.xinpan_article{
    grid-column: 1 / -1;
    border: transparent !important;
    color: red;
}

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

.hotCatTabs a {
    font-size: var(--size18);
    color: rgba(102, 102, 102, 1);
    line-height: 1;
    padding-bottom: 10px;
    position: relative;
    cursor: pointer;
}

.hotCatTabs a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: rgba(230, 0, 18, 1);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.hotCatTabs a.active::after,
.hotCatTabs a:hover::after {
    width: 100%;
}

.Xinpan_right{
    flex: 1;
}

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

.Xinpan_right ul li {
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #00000020
}

.Xinpan_right ul li:hover {
    transform: translateY(-3px);
    box-shadow: 0px 0px 8px 5px #00000010;
}

.Xinpan_img {
    width: 100%;
}

.Xinpan_img img {
    width: 100%;
    aspect-ratio: 330 / 210;
    object-fit: cover;
}

.Xinpan_text {
    width: 100%;
    padding: 15px;
}


.Xinpan_text>span {
    display: block;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
}
.Xinpan_text h2 {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    margin-top: 5px;
}

.Xinpan_right ul li:hover .Xinpan_text h2 {
    color: rgba(216, 46, 66, 1);
}

.Xinpan_text>p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    line-height: 1.5;
    margin-top: 10px;
}

.Xinpan_jin {
    width: 100%;
    font-size: var(--size14);
    color: rgba(212, 48, 48, 1);
    text-align: right;
    margin-top: var(--top20);
}

.Xinpan_jin span {
    font-size: var(--size24);
    color: rgba(212, 48, 48, 1);
    font-weight: 600;
    margin-right: 5px;
}


.Xinpan_left{
    width: max-content;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top40);
}

.Xinpan_left a{
    font-size: var(--size20);
    color: rgba(0, 24, 56, 0.7);
    line-height: 1;
    position: relative;
    padding-left: 20px;
}

.Xinpan_left a::after{
    content: "";
    width: 2px;
    height: 0%;
    background: rgba(212, 48, 48, 1);
    position: absolute;
    top: 50%;
    left: 0;
    transition: all 0.3s;
    transform: translateY(-50%);
}

.Xinpan_left a.active::after,
.Xinpan_left a:hover::after {
    height: 100%;
}

.Url{
    width: 200px;
    position: fixed;
    top: 85%;
    right: 0;
}

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

.Url svg{
    width: 16px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}