
:root {
    --max: 75%;
    --size14: 14px;
    --size16: 16px;
    --size18: 18px;
    --size20: 20px;
    --size24: 24px;
    --size30: 30px;
    --size36: 36px;
    --size40: 40px;
    --size46: 46px;
    --size50: 50px;
    --size56: 56px;
    --size60: 60px;

    --top20: 20px;
    --top30: 30px;
    --top40: 40px;
    --top50: 50px;
    --top60: 60px;
    --top80: 80px;
    --top100: 100px;
    --top120: 120px;
}

@font-face {
    font-family: "m";
    src: url("../fonts/m.otf") format("truetype");
}

@font-face {
    font-family: "bold";
    src: url("../fonts/bold.otf") format("truetype");
}

body {
    font-family: "m";
}

.Hertre {
    width: 100%;
    z-index: 999;
    height: 60px;
    position: relative;
    background: rgba(44, 44, 44, 1);
}

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

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

}

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

.Nav {
    width: max-content;
    margin-left: auto;
}

.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(245, 245, 245, 1);
    text-align: center;
    line-height: 46px;
    position: relative;
}

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


.Nav ul li.Nav_cen {
    color: rgba(245, 245, 245, 1)
}

.Nav ul li:hover {
    color: rgba(245, 245, 245, 1);
}

.Nav ul li::after {
    content: "";
    width: 0%;
    height: 1px;
    background: rgba(245, 245, 245, 1);
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.Nav ul li.Nav_cen::after {
    width: 120%;
}

.Nav ul li:hover::after {
    width: 120%;
}

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

.Nav_ul a {
    color: #000000;
    display: block;
    line-height: 2.5;
    font-size: var(--size14);
}

.Nav_ul a:hover {
    color: #ec078d;
}

.Nav_ul a.Nav_ul_Nav {
    color: #ec078d;
}

.Login{
    width: max-content;
    font-size: var(--size16);
    color: rgba(245, 245, 245, 1);
    margin: 0 var(--top40);
}

.Japan{
    width: max-content;
    font-size: var(--size16);
    color: rgba(245, 245, 245, 1);
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

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

.Japan_ul{
    width: max-content;
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    transition: auto;
}

.Japan_max{
    width: max-content;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 5px #00000030;
    margin-top: 5px;
    padding: 15px 20px;
}

.Japan_max a{
    color: #000000;
    display: block;
    line-height: 2.5;
    text-align: right;
    font-size: var(--size14);
}


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

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

.menu_button:focus {
    outline: none;
}

.menu_button .line {
    fill: none;
    stroke: #fff;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.menu_button .line1 {
    stroke-dasharray: 60 207;
}

.menu_button .line2 {
    stroke-dasharray: 60 60;
}

.menu_button .line3 {
    stroke-dasharray: 60 207;
}

.menu_button.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.menu_button.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
}

.menu_button.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

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

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

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

.Hertre_register{
    width: 100%;
    height: 60px;
    background: rgba(44, 44, 44, 1);
}

.Hertre_register .Logo{
    width: 75px;
    height: auto;
}

.Register{
    width: 100%;
    min-height: calc(100vh - 60px);
    background: url(../images/lo.png) no-repeat center center / cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Register_max{
    width: 770px;
    max-width: calc(100% - 30px);
    background: #ffffff;
    border-radius: 10px;
    padding: var(--top30) var(--top60) var(--top80);
    margin: var(--top100) auto;
}


.Register_top{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.Register_top>a{
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: var(--size20);
    color: rgba(44, 44, 44, 1);
    line-height: 1;
}

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

.Register_max>h2{
    font-size: var(--size30);
    color: rgba(0, 0, 0, 1);
    line-height: 1;
    margin-top: var(--top50);
}


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

.Register_max form input{
    width: 100%;
    height: 60px;
    border: 1px solid rgba(51, 51, 51, 1);
    border-radius: 6px;
    font-size: var(--size16);
    color: rgba(204, 204, 204, 1);
    padding: 0 15px;
}

.Register_max form input:focus{
    color: rgba(0, 0, 0, 1);
}

.Register_code{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: var(--top30);
}

.Register_code button{
    width: 200px;
    height: 60px;
    background: rgba(44, 44, 44, 1);
    border-radius: 6px;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    font-family: 'bold';
    border: transparent;
    cursor: pointer;
}
.Register_max form>button{
    width: 100%;
    height: 60px;
    background: rgba(44, 44, 44, 1);
    border-radius: 6px;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    font-family: 'bold';
    border: transparent;
    cursor: pointer;
}

.Member{
    width: var(--max);
    margin: var(--top120) auto;
    background: rgba(245, 245, 245, 1) url(../images/Vector.png) no-repeat right 20vw bottom / auto calc(100% - var(--top60));
    border-radius: 8px;
    padding: var(--top30);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top30);
}

.Member_left{
    flex: 1;
    padding: var(--top30);
    padding-bottom: var(--top100);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top30);
}

.Member_logo{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
}

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

.Member_info{
    flex: 1;
}

.Member_info h2{
    font-size: var(--size30);
    color: rgba(0, 0, 0, 1);
    line-height: 64px;
}

.Member_info p{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: var(--top20);
    gap: 15px;
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
}

.Member_info p svg{
    width: 24px;
    height: auto;
}

.Member_right{
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}
.Member_right button{
    width: 112px;
    height: 40px;
    background: rgba(227, 227, 227, 1);
    border: 1px solid rgba(118, 118, 118, 1);
    border-radius: 6px;
    font-size: var(--size14);
    color: rgba(30, 30, 30, 1);
    cursor: pointer;
}

.Member_form{
    width: 770px;
    max-width: calc(100% - 30px);
    background: #ffffff;
    border-radius: 10px;
    padding: var(--top50);
    box-shadow: 0px 0px 10px 5px #00000020;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none;
    transition: auto;
}

.Member_form h2{
    font-size: var(--size30);
    color: rgba(0, 0, 0, 1);
    line-height: 1;
    text-align: center;
}

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

.Upboxlae{
    width: 100px;
    height: 100px;
    margin: auto;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
}

.Upboxlae input{
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    opacity: 0;
    z-index: 5;
}

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

.Member_form form input{
    width: 100%;
    height: 60px;
    border: 1px solid rgba(51, 51, 51, 1);
    border-radius: 6px;
    font-size: var(--size16);
    color: rgba(204, 204, 204, 1);
    padding: 0 15px;
}

.Member_form form input:focus{
    color: rgba(0, 0, 0, 1);
}

.Member_form form>button{
    width: 100%;
    height: 60px;
    background: rgba(44, 44, 44, 1);
    border-radius: 6px;
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    border: transparent;
    cursor: pointer;
}

.Member_form_close{
    width: 30px;
    height: 30px;
    position: absolute;
    top: var(--top20);
    right: var(--top20);
    cursor: pointer;
}

.Member_form_close svg{
    width: 100%;
    height: 100%;
}
.Zixun{
    width: var(--max);
    margin: var(--top120) auto;
}

.Zixun_top{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.Zixun_top h2{
    font-size: var(--size36);
    color: rgba(0, 0, 0, 1);
    line-height: 1;
}

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

.Zixun_top_right p{
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
}

.Zixun_top_right p svg{
    width: 20px;
    height: auto;
}

.Zixun>h2{
    width: 100%;
    margin-top: var(--top100);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    gap: var(--top30);
}

.Zixun>h2::after{
    content: '';
    width: 120px;
    height: 1px;
    background: rgba(51, 51, 51, 1);
}


.Zixun form{
    width: 1024px;
    max-width: 100%;
    margin-top: var(--top50);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top50);
}

.Zixun_form{
    width: 100%;
}
.Zixun_form p{
    font-size: var(--size18);
    color: rgba(0, 0, 0, 1);
    line-height: 1;
    font-family: 'bold';
}
.Zixun_form p font{
    color: rgba(204, 204, 204, 1);
    margin-left: var(--top20);
    font-family: 'm';
}
.Zixun_form p span{
    color: rgba(236, 34, 31, 1);
    margin-left: 5px;
}
.Zixun_form>input{
    width: 100%;
    height: 60px;
    border: 1px solid rgba(51, 51, 51, 1);
    border-radius: 6px;
    font-size: var(--size14);
    color: rgba(204, 204, 204, 1);
    padding: 0 15px;
    margin-top: var(--top20);
}

.Zixun_form>input:focus{
    color: rgba(0, 0, 0, 1);
}

.Zixun_form textarea{
    width: 100%;
    height: 230px;
    border: 1px solid rgba(51, 51, 51, 1);
    border-radius: 6px;
    font-size: var(--size16);
    color: rgba(204, 204, 204, 1);
    padding: 15px;
    font-family: 'm';
    resize: none;
    margin-top: var(--top20);
}

.Zixun_form textarea:focus{
    color: rgba(0, 0, 0, 1);
}

#fangshi{
    background: url(../images/sanjiao.png) no-repeat right var(--top20) center / 24px auto;
}

.zhenshangyin-dropdown-item-selected{
    background: #000000 !important;
}

.Zixun_form_checkbox{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top20);
    margin-top: var(--top20);
}
.Zixun_form_checkbox label{
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    line-height: 1;
    gap: 10px;
    cursor: pointer;
}
.Zixun_form_checkbox label input {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(117, 117, 117, 1);
    border-radius: 3px;
    background-color: transparent;
    position: relative;
    cursor: pointer;
}

.Zixun_form_checkbox label input:before {
    content: "";
    background-color: #000000;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    border-radius: 1px;
    transition: all 0.3s ease-in-out;
}

.Zixun_form_checkbox label input:checked:before {
    transform: translate(-50%, -50%) scale(1);
}

#submitAdd{
    width: 100%;
    height: 60px;
    background: rgba(44, 44, 44, 1);
    border-radius: 6px;
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    line-height: 1;
    border: transparent;
    cursor: pointer;
}
#submitAdd:hover{
    gap: 50px;
}
#submitAdd svg{
    width: 24px;
    height: auto;
}

.Jianxun{
    width: var(--max);
    margin: var(--top120) auto;
}
.Jianxun ul{
    width: 100%;
    margin-top: var(--top100);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top20);
}
.Jianxun ul li{
    width: 100%;
    border-radius: 6px;
    border: 1px solid rgba(217, 217, 217, 1);
    padding: var(--top20);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top20);
}
.Jianxun_img{
    width: 160px;
    overflow: hidden;
}
.Jianxun_img img{
    width: 100%;
    height: auto;
}
.Jianxun_text{
    flex: 1;
}
.Jianxun_text h2{
    font-size: var(--size20);
    color: rgba(30, 30, 30, 1);
    font-family: 'bold';
}
.Jianxun_text p{
    font-size: var(--size16);
    color: rgba(117, 117, 117, 1);
    margin-top: 10px;
}

.Jianxun_text a{
    width: 56px;
    border-radius: 10px;
    background: rgba(44, 44, 44, 1);
    font-size: var(--size14);
    color: rgba(245, 245, 245, 1);
    display: block;
    margin-top: 15px;
    text-align: center;
    line-height: 36px;
}
.Jianxun ul li:hover{
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}
.Jianxun_text a:hover{
    width: 100px;
}
.Show {
    width: var(--max);
    overflow: hidden;
    margin: var(--top30) auto var(--top120);
}

.Show>h2 {
    font-size: var(--size40);
    color: rgba(0, 0, 0, 1);
    font-family: 'bold';
}

.Show>p {
    font-size: var(--size18);
    color: rgba(102, 102, 102, 1);
    margin-top: var(--top40);
}

.Show_text {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top80);
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    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;
}

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

.page .active,
.page .total {
    font-size: 12px;
    padding: 8px 10px;
    color: rgba(30, 30, 30, 1);
    line-height: 1;
    border-radius: 5px;
}

.page .active {
    background: rgba(44, 44, 44, 1);
    color: rgba(245, 245, 245, 1);
}

.page .active:nth-child(1),
.page .active:nth-child(2),
.page .total:nth-child(1),
.page .total:nth-child(2),
.page .active:last-child,
.page .total:last-child {
    background: transparent;
    color: rgba(30, 30, 30, 1);
}

.Back{
    width: var(--max);
    margin: var(--top30) auto;
}
.Back a{
    width: max-content;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    font-size: var(--size24);
    color: rgba(44, 44, 44, 1);
}

.Back a svg{
    width: 12px;
    height: auto;
}

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

.Zixun_top>p{
    width: 860px;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    text-align: center;
}
.Qingbao img{
    width: 100%;
    height: auto;
    margin-top: var(--top100);
}

.Shiming{
    width: 100%;
    overflow: hidden;
    background: rgba(44, 44, 44, 1);
}
.Shiming_max{
    width: var(--max);
    margin: var(--top120) auto;
}
.Shiming_max>h2{
    width: 100%;
    margin-top: var(--top100);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--size24);
    color: rgba(255, 255, 255, 1);
    line-height: 1;
    gap: var(--top30);
}

.Shiming_max>h2::after{
    content: '';
    width: 120px;
    height: 1px;
    background: rgba(255, 255, 255, 1);
}

.Shiming_max>p{
    font-size: var(--size36);
    color: rgba(255, 255, 255, 1);
    font-family: 'bold';
    margin-top: var(--top60);
}

.Shiming_cen{
    width: 100%;
    margin-top: var(--top80);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10vw;
}
.Shiming_cen img{
    width: 45%;
    height: auto;
}
.Shiming_cen ul{
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5vw;
}
.Shiming_cen ul li{
    width: 100%;
}
.Shiming_cen ul li h2{
    font-size: var(--size24);
    color: rgba(255, 255, 255, 1);
    font-family: 'bold';
}
.Shiming_cen ul li p{
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    margin-top: var(--top40);
}

.Shiming_text{
    width: var(--max);
    margin: var(--top120) auto;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    line-height: 2;
}
.Shiming_text span{
    font-family: 'bold';
}
.Fuwu{
    width: var(--max);
    margin: var(--top120) auto;
}
.Fuwu ul{
    width: 100%;
    margin-top: var(--top120);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 4vw;
}
.Fuwu ul li{
    width: 100%;
}
.Fuwu ul li img{
    width: 100%;
    height: auto;
}
.Fuwu ul li h2{
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
    margin-top: var(--top20);
}
.Fuwu ul li p{
    font-size: var(--size14);
    color: rgba(51, 51, 51, 1);
    line-height: 1.4;
    margin-top: var(--top20);
}

.Fuwu_btn{
    width: 100%;
    margin-top: var(--top40);
    display: flex;
    justify-content: space-between;
    gap: 15px;
}


.Fuwu_btn a{
    flex: 1;
    line-height: 40px;
    border: 1px solid rgba(118, 118, 118, 1);
    border-radius: 6px;
    text-align: center;
    background: rgba(227, 227, 227, 1);
    font-size: var(--size16);
    color: rgba(30, 30, 30, 1);
}
.Fuwu_btn a:nth-child(1){
    background: rgba(44, 44, 44, 1);
    color: rgba(245, 245, 245, 1);
}
.Fuwu_btn a:hover{
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.3);
}
.Fuwu_Show{
    width: 75%;
    margin: var(--top60) auto var(--top80);
}

.Fuwu_top{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8vw;
}
.Fuwu_top img{
    width: 34%;
    height: auto;
    border-radius: 10px;
}
.Fuwu_top_text{
    flex: 1;
}

.Fuwu_top_text h2{
    font-size: var(--size30);
    color: rgba(0, 0, 0, 1);
    font-family: 'bold';
}
.Fuwu_top_text p{
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    margin-top: 10px;
}

.Fuwu_top_text span{
    width: 100%;
    display: block;
    margin-top: var(--top20);
    font-size: var(--size30);
    color: rgba(192, 15, 12, 1);
    font-family: 'bold';
}

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

.Fuwu_top_text a{
    width: 480px;
    max-width: 100%;
    margin-top: var(--top60);
    background: rgba(44, 44, 44, 1);
    border-radius: 8px;
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    display: block;
    text-align: center;
    line-height: 48px;
}

.Fuwu_Show>h2{
    width: 100%;
    margin-top: var(--top50);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    gap: var(--top30);
}

.Fuwu_Show>h2::after{
    content: '';
    width: 120px;
    height: 1px;
    background: rgba(51, 51, 51, 1);
}

.Fuwu_text {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top50);
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    line-height: 2;
}

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





.Footer {
    width: 100%;
    overflow: hidden;
    background: rgba(44, 44, 44, 1);
}
.Footer_max{
    width: var(--max);
    margin: var(--top60) auto;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top20);
}

.Footer_max h2{
    width: 100%;
    text-align: center;
    font-size: var(--size30);
    color: rgba(255, 255, 255, 1);
}

.Footer_max>p{
    width: 100%;
    text-align: center;
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
}

.Beian {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.Beian p {
    font-size: var(--size14);
    color: rgba(255, 255, 255, 1);
    margin: 0 5px;
}

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


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

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

.Chanpin ul li img{
    width: 400px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.Chanpin ul li h2{
    font-size: var(--size18);
    color: rgba(0, 0, 0, 1);
    font-family: 'bold';
    margin-top: var(--top30);
}

.Chanpin ul li span{
    width: 100%;
    display: block;
    font-size: var(--size30);
    color: rgba(0, 0, 0, 1);
    margin-top: var(--top20);
    font-family: 'bold';
}
.Chanpin ul li span font{
    color: rgba(236, 34, 31, 1);
}

.Chanpin ul li  p{
    font-size: var(--size16);
    color: rgba(48, 48, 48, 1);
    margin-top: var(--top20);
    line-height: 1.8;
}
.Chanpin ul li .Fuwu_btn{
    width: 320px;
    max-width: 100%;
}

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

.Tuozi>h2{
    width: var(--max);
    margin: 20px auto;
    font-size: 40px;
    color: rgba(255, 255, 255, 1);
    font-family: 'bold';
    line-height: 1;
}

.Swiper{
    width: 100%;
}


.Swiper_img{
    width: 100%;
    position: relative;
}
.Swiper_img img{
    width: 100%;
    height: auto;
    max-height: 560px;
}

.pager1{
    width: 100%;
    position: static;
    transform: translate(0, 0);
    margin: 10px auto;
    gap: var(--top20);
}

.zhenshangyin-pager-bullets-bullet{
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.25);
}

.Swiper_text{
    width: var(--max);
    margin: var(--top20) auto var(--top20);
}

.Swiper_text h2{
    font-size: var(--size24);
    color: rgba(255, 255, 255, 1);
    font-family: 'bold';
}
.Swiper_text p{
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    margin-top: var(--top20);
    line-height: 1.6;
}

.Swiper_text a{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    /*margin-top: var(--top30);*/
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    gap: 10px;
}

.Swiper_text a svg{
    width: 24px;
    height: auto;
}
.Swiper_text  a:hover{
    gap: 30px;
}
.Guanyuin{
    width: var(--max);
    margin: var(--top60) auto calc(var(--top120) + var(--top40));
}
.Tong{
    width: 100%;
}

.Tong p{
    width: max-content;
    text-align: center;
    margin: auto;
    font-size: var(--size24);
    color: rgba(0, 0, 0, 1);
    line-height: 1;
    position: relative;
    padding-top: 25px;
}
.Tong p::before{
    content: '';
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 1);
    position: absolute;
    top: 0;
    left: 0;
}

.Tong h2{
    text-align: center;
    font-size: var(--size36);
    color: rgba(0, 0, 0, 1);
    line-height: 1;
    margin-top: var(--top50);
}

.Guanyuin_max{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: var(--top100);
    gap: 6.5vw;
}

.Guanyuin_left{
    width: 50%;
}

.Guanyuin_left p{
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    line-height: 2;
}

.Guanyuin_left a{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: var(--top40);
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
    gap: 10px;
}
.Guanyuin_left a:hover{
    gap: 30px;
}
.Guanyuin_left a svg{
    width: 24px;
    height: auto;
}

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

.Guanyuin_right p{
    font-family: 'bold';
    line-height: 2;
}

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

.Tong span{
    display: block;
    width: 100%;
    text-align: center;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    line-height: 2;
    margin-top: var(--top50);
}
.Guanjian .Fuwu{
    width: 100%;
}


.Youshi{
    width: 100%;
    overflow: hidden;
    background: rgba(44, 44, 44, 1);
}
.Youshi_max{
    width: var(--max);
    margin: var(--top120) auto;
}

.Youshi_top{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5vw;
}
.Youshi_left{
    width: 53%;
}
.Youshi_left h2{
    font-size: var(--size36);
    color: rgba(255, 255, 255, 1);
    font-family: 'bold';
    line-height: 1.5;
}
.Youshi_left p{
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    line-height: 2;
    margin-top: var(--top50);
}
.Youshi_left a{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: var(--top50);
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    gap: 10px;
}

.Youshi_left a svg{
    width: 24px;
    height: auto;
}
.Youshi_left a:hover{
    gap: 30px;
}
.Youshi_right{
    flex: 1;
    border-radius: var(--top20);
    padding: var(--top60);
    background: rgba(0, 0, 0, 0.32);
}
.Youshi_right h2{
    font-size: var(--size30);
    color: rgba(255, 255, 255, 1);
}

.Youshi_right p{
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    line-height: 2;
    margin-top: var(--top30);
}
.Youshi_max ul{
    width: 100%;
    margin-top: var(--top120);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top80);
}
.Youshi_max ul li{
    width: 100%;
    position: relative;
    padding-top: var(--top60);
}
.Youshi_max ul li::after{
    content: '';
    width: 320px;
    max-width: 50%;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.Youshi_max ul li p{
    width: 100%;
    font-size: var(--size30);
    color: rgba(255, 255, 255, 1);
    text-align: right;
}
.Youshi_max ul li h2{
    width: 100%;
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    margin-top: var(--top60);
    text-align: right;
}
.Chanpinin{
    width: var(--max);
    margin: var(--top60) auto;
}
.Chanpinin .Chanpin{
    width: 100%;
}
.Wenti{
    width: var(--max);
    margin: var(--top60) auto var(--top120);
}
.Wenti>p{
    width: max-content;
    max-width: 100%;
    margin: auto;
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
    line-height: 2;
    margin-top: var(--top60);
}

.Tuandui{
    width: 100%;
    overflow: hidden;
    background: rgba(44, 44, 44, 1);
}
.Tuandui_max{
    width: var(--max);
    margin: var(--top60) auto;
}
.Tuandui_max .Tong p,
.Tuandui_max .Tong h2{
    color: rgba(255, 255, 255, 1);
}
.Tuandui_max .Tong p::before{
    background: rgba(255, 255, 255, 1);
}
.Tuandui_text{
    width: 100%;
    margin-top: var(--top100);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15vw;
}
.Tuandui_text h2{
    flex: 1;
    font-size: var(--size30);
    color: rgba(255, 255, 255, 1);
    font-family: 'bold';
}
.Tuandui_text p{
    width: max-content;
    max-width: 30%;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    line-height: 2;
}

.Zixun_form_checkbox{
    width: 100%;
}

.Zixun_form_checkbox span{
    display: block;
    font-size: var(--size14);
    color: #000000;
    line-height: 1.8;
}