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

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

body {
    background: rgb(255, 253, 250);
}

.Hertre {
    width: 100%;
    z-index: 999;
    position: relative;
    background: rgba(247, 243, 239, 0.5);
    padding: var(--top20) 0;
}

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

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

}

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

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

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

.Nav ul li {
    text-align: center;
    position: relative;
}

.Nav ul li span {
    font-size: var(--size20);
    color: rgba(142, 119, 92, 1);
    line-height: 1;
    display: block;
}

.Nav ul li p {
    font-size: 12px;
    color: rgba(142, 119, 92, 1);
    line-height: 1;
    margin-top: 8px;
}


.Nav ul li.active span,
.Nav ul li.active p,
.Nav ul li:hover span,
.Nav ul li:hover p {
    color: rgba(77, 42, 0, 1);
}

.Nav ul li:last-child {
    background: rgba(84, 46, 0, 0.3);
    border-radius: 999px;
    padding: 10px 30px;
}

.Nav ul li:last-child * {
    color: rgba(84, 46, 0, 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(142, 119, 92, 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);
}

.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;
    min-height: 150px;
    object-fit: cover;
}

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

.Banner_text h1 {
    text-align: center;
    font-size: var(--size40);
    color: rgba(77, 42, 0, 1);
    line-height: 1;
}

.Banner_text p {
    text-align: center;
    font-size: var(--size24);
    color: rgba(77, 42, 0, 1);
    line-height: 1;
    margin-top: var(--top20);
}

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

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

.Jianjie_max {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    gap: 7vw;
}

.Jianjie_left {
    width: 46%;
}

.Jianjie_left h3 {
    font-size: var(--size30);
    color: rgba(77, 42, 0, 1);
}

.Jianjie_left span {
    display: block;
    font-size: var(--size20);
    color: rgba(84, 46, 0, 1);
    margin-top: var(--top50);
    line-height: 1.8;
}

.Jianjie_left p {
    font-size: var(--size16);
    color: rgba(84, 46, 0, 1);
    margin-top: var(--top30);
    line-height: 1.8;
}

.Jianjie_right {
    flex: 1;
    position: relative;
    padding-top: var(--top40);
    padding-left: var(--top40);
}

.Jianjie_right::after {
    content: "";
    width: calc(100% - var(--top40));
    height: calc(100% - var(--top40));
    background: rgba(255, 235, 204, 1);
    border-top-left-radius: 200px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.Jianjie_right img {
    width: 100%;
    height: auto;
    border-top-left-radius: 180px;
    position: relative;
    z-index: 2;
}

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

.Gaiyao h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(77, 42, 0, 1);
}

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

.Gaiyao_left {
    width: 30%;
    background: rgba(255, 235, 204, 1);
    padding: var(--top40) var(--top60);
}

.Gaiyao_left ul {
    width: 100%;
}

.Gaiyao_left ul li {
    width: 100%;
    min-height: 80px;
    display: flex;
    align-items: center;
    font-size: var(--size20);
    color: rgba(77, 42, 0, 1);
}

.Gaiyao_right {
    flex: 1;
    padding: var(--top40) 0;
}

.Gaiyao_right ul {
    width: 100%;
}

.Gaiyao_right ul li {
    width: 100%;
    min-height: 80px;
    display: flex;
    align-items: center;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    border-bottom: 1px solid rgba(201, 194, 183, 1);
    padding-left: 9vw;
}

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

.Caidan_max {
    width: 1550px;
    max-width: calc(100% - 30px);
    margin: auto;
}

.Caidan_max>img {
    width: 100%;
    height: auto;
}

.Caidan_foi {
    width: 450px;
    height: auto;
    position: absolute;
    bottom: 10px;
    right: 3%;
}

.Caidan_foi img {
    width: 100%;
}

.Eyelash {
    width: 100%;
    margin: var(--top60) auto;
}

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

.Zhanfang {
    width: var(--max);
    margin: var(--top60) auto;
    position: relative;
    padding-top: 8vw;
}

.Zhanfang h2 {
    font-size: var(--size50);
    color: rgba(77, 42, 0, 1);
    line-height: 1.1;
    position: absolute;
    top: 0;
    left: calc(-1 * var(--top60));
    font-weight: bold;
}

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

.Huaduan {
    width: 100%;
    overflow: hidden;
    margin: var(--top60) auto;
}

.Huaduan_title {
    width: var(--max);
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.Huaduan_title h2 {
    width: 570px;
    max-width: 100%;
    font-size: var(--size24);
    color: rgba(77, 42, 0, 1);
    font-weight: bold;
}

.Huaduan_title p {
    width: 570px;
    max-width: 100%;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    margin-top: var(--top20);
}

.Huaduan_max {
    width: 1400px;
    max-width: calc(100% - 30px);
    margin: auto;
    margin-top: var(--top60);
    position: relative;
    padding-bottom: var(--top50);
}

.Huaduan_max::after {
    content: "";
    width: 90%;
    height: 100%;
    z-index: 1;
    background: url(../images/beijing.png) no-repeat bottom right / 100% auto;
    position: absolute;
    bottom: 0;
    right: -5%;
}

.Huaduan_swiper {
    width: 1200px;
    max-width: calc(100% - 110px);
    margin: auto;
    position: relative;
    z-index: 5;
}

.Huaduan_swiper li {
    width: 100%;
    height: auto;
    background: rgba(255, 235, 204, 0.5);
    border-radius: var(--top20);
    overflow: hidden;
}

.Huaduan_swiper ul li img {
    width: 100%;
    aspect-ratio: 370 / 420;
    object-fit: cover;
}

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

.Huaduan_swiper_text h3 {
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.Huaduan_swiper_butt {
    width: 100%;
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.Huaduan_left {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    gap: 8px;
}

.Huaduan_left svg {
    width: 18px;
    height: auto;
    display: block;
}

.Huaduan_right {
    width: max-content;
    font-size: var(--size24);
    color: rgba(212, 48, 48, 1);
    line-height: 1;
}

.Huaduan_right span {
    font-size: var(--size14);
}

.Huaduan_prev,
.Huaduan_next {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(77, 42, 0, 1);
    background: transparent;
    border-radius: 50%;
}

.Huaduan_prev svg,
.Huaduan_next svg {
    width: 10px;
    height: auto;
    display: block;
}

.Huaduan>a {
    display: block;
    width: max-content;
    margin: auto;
    margin-top: var(--top50);
    background: rgba(238, 214, 176, 1);
    line-height: 60px;
    color: rgba(0, 0, 0, 1);
    padding: 0 var(--top60);
    border-radius: 60px;
    transition: all 0.3s ease;
}

.Huaduan>a:hover {
    letter-spacing: 1px;
}

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

.Candan_list h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(77, 42, 0, 1);
}

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

.Candan_list_left {
    width: 270px;
    border-radius: 20px 0px 0px 20px;
    background: rgba(243, 244, 246, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.Candan_list_left ul {
    width: 100%;
}

.Candan_list_left ul li {
    width: 100%;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 0.8);
    transition: all .3s;
}

.Candan_list_left ul li a {
    display: block;
    padding: 15px 25px;
}

.Candan_list_left ul li:hover,
.Candan_list_left ul li.active {
    background: rgba(238, 214, 176, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

.Candan_list_right {
    flex: 1;
}

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

.Candan_list_right li {
    width: 100%;
    height: auto;
    background: rgba(255, 235, 204, 0.5);
    border-radius: var(--top20);
    overflow: hidden;
}

.Candan_list_right ul li img {
    width: 100%;
    aspect-ratio: 370 / 420;
    object-fit: cover;
}

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

.Show h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(77, 42, 0, 1);
}

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

.Show_left {
    width: 48%;
}

.Show_swiper_top {
    width: 100%;
    border: 1px solid rgba(77, 42, 0, 1);
}

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

.Show_left button,
.Show_left a {
    width: max-content;
    height: 50px;
    border-radius: 10px;
    background: rgba(77, 42, 0, 1);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 0 var(--top80);
    font-size: var(--size14);
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    margin-top: var(--top60);
    text-decoration: none;
}

.Show_left button svg,
.Show_left a svg {
    width: 16px;
    height: auto;
    display: block;
}

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

.Show_swiper_butt {
    flex: 1;
}

.Show_swiper_butt ul li {
    width: 100%;
    aspect-ratio: 4 / 4.2;
    cursor: pointer;
}

.Show_swiper_butt ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
    padding: 0px;
    margin-top: 0;
    aspect-ratio: 4 / 4;
    background:unset;
}

.Show_swiper_butt ul li img {
    width: 100%;
    aspect-ratio: 4 / 4;
    object-fit: cover;
    transition: aspect-ratio 0.3s;
    border: 1px solid rgba(77, 42, 0, 1);
}

.Show_swiper_butt ul li.zhenshangyin-slide-active img {
    aspect-ratio: 4 / 4 ;
}

.Show_prev,
.Show_next {
    width: max-content;
    height: max-content;
    background: transparent;
    position: static;
    inset: 0;
    transform: translate(0%, 0%);
}

.Show_right {
    flex: 1;
}

.Show_right>h3 {
    font-size: var(--size20);
    color: rgba(77, 42, 0, 1);
}

.Show_right ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--top50);
    margin-top: var(--top50);
}

.Show_right ul li {
    width: 100%;
}

.Show_right ul li>h4 {
    font-size: var(--size18);
    color: rgba(0, 0, 0, 1);
    line-height: 1;
}

.Show_text {
    font-size: var(--size14);
    color: rgba(77, 42, 0, 1);
    line-height: 1.8;
    margin-top: 10px;
}

.Show_text * {
    max-width: 100%;
}


.Footer {
    width: 100%;
    overflow: hidden;
    background: rgba(238, 214, 176, 1);
}

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

.Beian {
    flex: 1;
}

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

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

.Footer_max ul li {
    width: 20px;
}

.Footer_max ul li a {
    width: 100%;
    aspect-ratio: 4 / 4;
    display: flex;
    justify-content: center;
    align-items: center;
}

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


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

.Wenda h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(77, 42, 0, 1);
}

.Wenda>p {
    width: 100%;
    margin-top: var(--top60);
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    line-height: 1.8;
}

.Wenda_max {
    width: 100%;
    margin-top: var(--top40);
    display: flex;
    flex-direction: column;
    gap: var(--top30);
}

.Wenda_litm {
    width: 100%;
    border-radius: 5px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(77, 42, 0, 1);
}

.Wenda_title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 25px;
    cursor: pointer;
}

.Wenda_title h3 {
    flex: 1;
    font-size: var(--size18);
    color: rgba(77, 42, 0, 1);
}

.Wenda_title svg {
    width: 18px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.Wenda_litm ul {
    width: 100%;
    display: none;
}

.Wenda_litm ul li {
    width: 100%;
    border-top: 1px solid rgba(77, 42, 0, 1);
}

.Wenda_title_h {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 25px;
    cursor: pointer;
    background: rgba(77, 42, 0, 0.1);
}

.Wenda_title_h h3 {
    flex: 1;
    font-size: var(--size18);
    color: rgba(77, 42, 0, 1);
}

.Wenda_title_h svg {
    width: 18px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.Wenda_text {
    width: 100%;
    background: rgba(77, 42, 0, 0);
    padding: 25px;
    font-size: var(--size14);
    color: rgba(77, 42, 0, 1);
    line-height: 1.8;
    border-top: 1px solid rgba(77, 42, 0, 1);
    display: none;
}

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

.Dizhi h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(77, 42, 0, 1);
}

.Dizhi ul {
    width: 100%;
    margin-top: var(--top60);
    display: flex;
    flex-direction: column;
    gap: var(--top60);
}

.Dizhi ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top20);
    transition: all 0.3s;
    cursor: pointer;
}

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

.Dizhi_left {
    width: 40%;
    contain: size;
}

.Dizhi_left iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Dizhi_right {
    flex: 1;
}

.Dizhi_right h3 {
    font-size: var(--size24);
    color: rgba(77, 42, 0, 1);
    font-weight: bold;
    line-height: 1;
}

.Dizhi_text {
    width: 100%;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.Dizhi_item h4 {
    width: 130px;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    line-height: 1.8;
}

.Dizhi_cont {
    flex: 1;
    pointer-events: auto;
}

.Dizhi_cont p {
    width: 100%;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    line-height: 1.8;
}

.Dizhi_cont a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-top: var(--top20);
    font-size: var(--size18);
    color: rgba(77, 42, 0, 1);
    line-height: 1;
    text-decoration: underline;
    font-weight: bold;
    transition: all 0.3s;
}

.Dizhi_cont a:hover {
    letter-spacing: 1px;
}

.Dizhi_cont a svg {
    width: 20px;
    height: auto;
    display: block;
}

.Dizhi_max {
    width: 100%;
    background: rgba(255, 244, 227, 1);
    margin-top: var(--top60);
    padding: var(--top40);
}

.Dizhi_title {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.Dizhi_logo {
    width: 80px;
    aspect-ratio: 4 / 4;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Dizhi_logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.Dizhi_di {
    flex: 1;
}

.Dizhi_di h3 {
    font-size: var(--size20);
    color: rgba(77, 42, 0, 1);
    font-weight: bold;
}

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

.Dizhi_wei svg {
    width: 18px;
    height: auto;
    display: block;
}

.Dizhi_wei p {
    flex: 1;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
}

.Dizhi_title>svg {
    width: 100px;
    height: auto;
    display: block;
}

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

.Dizhi_lu_item {
    width: 100%;
}

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

.Dizhi_lu_item p {
    text-align: center;
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    margin-top: 10px;
}

.Jianjie_index {
    width: 100%;
    overflow: hidden;
    background: rgb(255, 255, 255);
}

.Jianjie_index_max {
    width: var(--max);
    margin: var(--top60) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 7vw;
}

.Jianjie_index_left {
    width: 46%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.Jianjie_index_left h3 {
    font-size: var(--size50);
    color: rgba(148, 81, 0, 1);
    font-family: math;
    font-weight: bold;
    line-height: 1;
}

.Jianjie_index_text {
    width: 100%;
    margin-top: 30px;
}

.Jianjie_index_text span {
    display: block;
    font-size: var(--size20);
    color: rgba(120, 66, 0, 1);
    line-height: 1.8;
}

.Jianjie_index_text p {
    font-size: var(--size16);
    color: rgba(84, 46, 0, 1);
    margin-top: var(--top30);
    line-height: 1.8;
}

.Jianjie_index_text a {
    width: max-content;
    margin-top: var(--top50);
    font-size: var(--size16);
    color: rgba(84, 46, 0, 0.6);
    border: 1px solid rgba(84, 46, 0, 0.6);
    line-height: 50px;
    padding: 0 35px;
    display: flex;
    align-items: center;
    gap: var(--top20);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.Jianjie_index_text a svg {
    display: block;
    width: 22px;
    height: auto;
}

.Jianjie_index_text a:hover {
    background: rgba(77, 42, 0, 1);
    color: rgba(255, 255, 255, 1);
    letter-spacing: 1px;
}

.Jianjie_index_text a:hover svg path {
    fill: rgba(255, 255, 255, 1);
}

.Jianjie_index_right {
    flex: 1;
    position: relative;
    padding-top: var(--top40);
    padding-left: var(--top40);
}

.Jianjie_index_right::after {
    content: "";
    width: calc(100% - var(--top40));
    height: calc(100% - var(--top40));
    background: rgba(255, 235, 204, 1);
    border-top-left-radius: 200px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.Jianjie_index_right img {
    width: 100%;
    height: auto;
    border-top-left-radius: 180px;
    position: relative;
    z-index: 2;
}

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

.Menu h2 {
    text-align: center;
    font-size: var(--size50);
    color: rgba(148, 81, 0, 1);
    font-family: math;
    font-weight: bold;
    line-height: 1;
    text-transform: lowercase;
}

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

.Menu_swiper ul li {
    padding-top: var(--top30);
    padding-left: var(--top30);
}

.Menu_img {
    width: 100%;
    aspect-ratio: 340 / 420;
    position: relative;
}

.Menu_img::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 235, 204, 1);
    position: absolute;
    top: calc(-1 * var(--top30));
    left: calc(-1 * var(--top30));
    z-index: 1;
}

.Menu_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.Menu_swiper ul li h3 {
    text-align: center;
    font-size: var(--size18);
    color: rgba(77, 42, 0, 1);
    margin-top: 15px;
}

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

.Gong_prev,
.Gong_next {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(77, 42, 0, 1);
    background: transparent;
    border-radius: 50%;
    position: static;
    inset: 0;
    transform: translate(0%, 0%);
}

.Gong_prev svg,
.Gong_next svg {
    width: 10px;
    height: auto;
    display: block;
}

.Gong_prev:hover,
.Gong_next:hover {
    background: rgba(77, 42, 0, 1);
}

.Gong_prev:hover svg path,
.Gong_next:hover svg path {
    stroke: rgba(255, 255, 255, 1);
}

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

.Staff h2 {
    text-align: center;
    font-size: var(--size50);
    color: rgba(148, 81, 0, 1);
    font-family: math;
    font-weight: bold;
    line-height: 1;
    text-transform: lowercase;
}

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

.Staff_swiper ul li {
    width: 100%;
    overflow: hidden;
    background: rgba(240, 240, 240, 1);
    border-radius: var(--top20);
}

.Staff_img {
    width: 100%;
    aspect-ratio: 410 / 390;
    position: relative;
}

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

.Staff_text {
    width: 100%;
    padding: var(--top20);
}

.Staff_text h3 {
    font-size: var(--size18);
    color: rgba(77, 42, 0, 1);
    font-weight: bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Staff_text p {
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    line-height: 1.8;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}


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

.Xinwen_index h2 {
    text-align: center;
    font-size: var(--size50);
    color: rgba(148, 81, 0, 1);
    font-family: math;
    font-weight: bold;
    line-height: 1;
    text-transform: lowercase;
}

.Xinwen_index ul {
    width: 800px;
    max-width: 100%;
    margin-top: var(--top50);
    border-top: 1px solid rgba(148, 81, 0, 0.2);
}

.Xinwen_index ul li {
    width: 100%;
    border-bottom: 1px solid rgba(148, 81, 0, 0.2);
}

.Xinwen_index ul li a {
    width: 100%;
    padding: var(--top30) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6vw;
}

.Xinwen_index ul li p {
    width: max-content;
    font-size: var(--size18);
    color: rgba(77, 42, 0, 1);
}

.Xinwen_index ul li h3 {
    flex: 1;
    font-size: var(--size18);
    color: rgba(77, 42, 0, 1);
}

.Xinwen_but {
    width: 100%;
    margin-top: var(--top50);
    display: flex;
    justify-content: flex-end;
}

.Xinwen_but a {
    width: max-content;
    display: block;
    line-height: 50px;
    background: rgba(77, 42, 0, 1);
    border: 1px solid transparent;
    padding: 0 var(--top50);
    border-radius: 5px;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
}

.Xinwen_but a:hover {
    border: 1px solid rgba(77, 42, 0, 1);
    background: transparent;
    color: rgba(77, 42, 0, 1);
}

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

.Dizhi_index h2 {
    text-align: center;
    font-size: var(--size50);
    color: rgba(148, 81, 0, 1);
    font-family: math;
    font-weight: bold;
    line-height: 1;
    text-transform: lowercase;
}

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

.Dizhi_index ul li {
    width: 100%;
}

.Dizhi_index ul li img {
    width: 100%;
    aspect-ratio: 640 / 400;
    object-fit: cover;
}

.Dizhi_index ul li h3 {
    font-size: var(--size20);
    color: rgba(77, 42, 0, 1);
    font-weight: bold;
    margin-top: var(--top20);
}

.Banner_index {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, rgba(199, 186, 170, 1) 0%, rgba(210, 188, 164, 1) 100%);
}

.Banner_index::after {
    content: "";
    display: block;
    width: 410px;
    aspect-ratio: 410 / 360;
    background: url(../images/shang.png) no-repeat center center / 100% 100%;
    position: absolute;
    top: 10vw;
    right: 8vw;
    z-index: 5;
}

.Banner_index::before {
    content: "";
    display: block;
    width: 540px;
    aspect-ratio: 540 / 220;
    background: url(../images/xia.png) no-repeat center center / 100% 100%;
    position: absolute;
    bottom: 0;
    left: 8vw;
    z-index: 5;
}

.Banner_index_max {
    width: 1500px;
    max-width: calc(100% - 30px);
    margin: 12vw auto 7vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top60);
}

.Banner_img {
    width: 48%;
    background: linear-gradient(180deg, rgba(242, 238, 227, 1) 0%, rgba(233, 222, 204, 1) 100%);
    padding: var(--top60) 0;
}

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

.Banner_index_text {
    flex: 1;
    position: relative;
    z-index: 7;
}

.Banner_index_text h2 {
    font-size: var(--size60);
    color: rgba(77, 42, 0, 1);
    line-height: 1.5;
    font-weight: bold;
}

.Banner_index_text p {
    font-size: var(--size24);
    color: rgba(77, 42, 0, 1);
    margin-top: var(--top50);
}

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

.Banner_but a {
    width: max-content;
    line-height: 60px;
    background: rgba(204, 204, 204, 1);
    border-radius: 60px;
    padding: 0 var(--top30);
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
}

.Banner_but a:nth-child(1) {
    background: rgba(84, 46, 0, 1);
    color: rgba(255, 255, 255, 1);
}

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

.Ren ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--top60);
}

.Ren ul li {
    width: 100%;
}

.Ren ul li h2 {
    font-size: var(--size24);
    color: rgba(77, 42, 0, 1);
    font-weight: bold;
    border-bottom: 1px solid rgba(77, 42, 0, 1);
    padding-bottom: 15px;
}

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

.Ren_max img {
    width: 360px;
    height: auto;
}

.Ren_text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.Ren_text p {
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    line-height: 1.8;
}

.Ren_text a {
    width: max-content;
    border-radius: 5px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(77, 42, 0, 1);
    display: block;
    line-height: 50px;
    padding: 0 var(--top80);
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    margin-top: 20px;
    transition: all 0.3s;
}

.Ren_text a:hover {
    background: rgba(77, 42, 0, 1);
    color: #ffffff;
}

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

.Blog h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(77, 42, 0, 1);
}

.Blog_but {
    width: 100%;
    margin-top: var(--top50);
    display: flex;
    justify-content: space-between;
    border: 1px solid rgba(77, 42, 0, 1);
    border-left: none;
}

.Blog_but a {
    flex: 1;
    font-size: var(--size18);
    color: rgba(77, 42, 0, 1);
    border-left: 1px solid rgba(77, 42, 0, 1);
    text-align: center;
    display: block;
    padding: var(--top20) 0;
    transition: all 0.3s ease;
}

.Blog_but a:hover,
.Blog_but a.active {
    background: rgba(77, 42, 0, 1);
    color: rgba(255, 255, 255, 1);
}

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

.Blog_max p {
    flex: 1;
    font-size: var(--size30);
    color: rgba(77, 42, 0, 1);
    line-height: 1;
}

.Blog_max p span {
    font-size: var(--size16);
}

.Blog_max input {
    width: 180px;
    height: 48px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 1);
    font-size: var(--size14);
    color: rgba(77, 42, 0, 1);
    padding: 0 15px;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 1L8 8L15 1' stroke='%234D2A00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px auto;
    cursor: pointer;
}

.Blog ul {
    width: 100%;
    margin-top: var(--top50);
    display: flex;
    flex-direction: column;
    gap: var(--top30);
}

.Blog ul li {
    width: 100%;
}

.Blog ul li a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top30);
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 1);
    padding: var(--top30);
    transition: all 0.3s;
}

.Blog ul li:hover a {
    border: 1px solid rgba(255, 235, 204, 1);
}

.Blog ul li img {
    width: 240px;
    height: auto;
}

.Blog_text {
    flex: 1;
}

.Blog_text span {
    display: block;
    width: max-content;
    line-height: 50px;
    border-radius: 5px;
    background: rgba(255, 235, 204, 1);
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    padding: 0 var(--top60);
}

.Blog_text h3 {
    font-size: var(--size20);
    color: rgba(77, 42, 0, 1);
    font-weight: bold;
    margin-top: var(--top20);
}

.Blog_text p {
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    line-height: 1.8;
    margin-top: 10px;
}

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

.Qingbao_img {
    width: 100%;
}

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

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

.Xiaoxi h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(77, 42, 0, 1);
}

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

.Xiaoxi ul li {
    width: 100%;
}

.Xiaoxi ul li img {
    width: 100%;
    aspect-ratio: 380 / 210;
    background: rgb(238, 214, 176);
    object-fit: cover;
}

.Xiaoxi ul li h3 {
    font-size: var(--size20);
    color: rgba(77, 42, 0, 1);
    font-weight: bold;
    margin-top: 10px;
}

.Xiaoxi ul li p {
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    line-height: 1.5;
    margin-top: 10px;
}

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

.Qingbao_max h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(77, 42, 0, 1);
}

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

.Qingbao_ltem {
    width: 100%;
    border-bottom: 1px solid rgba(77, 42, 0, 1);
    padding: 25px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.Qingbao_ltem h3 {
    width: 240px;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    line-height: 1.5;
    font-weight: bold;
}

.Qingbao_right {
    flex: 1;
}

.Qingbao_wen {
    width: 100%;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    line-height: 1.5;
}

.Qingbao_image {
    width: 100%;
}

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

.Qingbao_fu {
    width: 100%;
}

.Qingbao_fu ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.Qingbao_fu ul li {
    width: 100%;
    border-radius: var(--top20);
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(166, 166, 166, 1);
    padding: var(--top20);
}

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

.Qingbao_fu ul li h4 {
    text-align: center;
    font-size: var(--size18);
    color: rgba(77, 42, 0, 1);
    margin-top: 10px;
}

.Qingbao_fu ul li p {
    text-align: center;
    font-size: var(--size14);
    color: rgba(77, 42, 0, 1);
    line-height: 1.5;
    margin-top: 10px;
}

.Qingbao_ji {
    width: 100%;
}

.Qingbao_ji ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.Qingbao_ji ul svg {
    width: 10px;
    height: auto;
    display: block;
}

.Qingbao_ji ul li {
    flex: 1;
    border-radius: 10px;
    background: rgba(238, 214, 176, 1);
    border: 1px solid rgba(229, 229, 229, 1);
    overflow: hidden;
}

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

.Qingbao_title h4 {
    text-align: center;
    font-size: var(--size20);
    color: rgba(77, 42, 0, 1);
}

.Qingbao_title p {
    text-align: center;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
}

.Qingbao_ji_list {
    width: 100%;
}

.Qingbao_ji_list {
    width: 100%;
}

.Qingbao_ji_item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background: rgba(77, 42, 0, 0.8);
    padding: 10px 15px;
}

.Qingbao_ji_item:nth-child(2) {
    background: rgba(77, 42, 0, 0.6);
}

.Qingbao_ji_item:nth-child(3) {
    background: rgba(77, 42, 0, 0.4);
}

.Qingbao_ji_item p {
    width: 50%;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
}

.Qingbao_ji_item span {
    display: block;
    width: 50%;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
}

.Qingbao>a {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    line-height: 50px;
    background: rgba(77, 42, 0, 1);
    padding: 0 var(--top80);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    margin: auto;
    margin-top: var(--top40);
    transition: all 0.3s ease;
}

.Qingbao>a:hover {
    letter-spacing: 1px;
}

.Qingbao>a svg {
    width: 8px;
    height: auto;
}

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

.Qingbao_a a {
    width: max-content;
    line-height: 50px;
    background: rgba(77, 42, 0, 1);
    padding: 0 var(--top80);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    border: 1px solid transparent;
    transition: all 0.3s;
}

.Qingbao_a a:hover {
    border: 1px solid rgba(77, 42, 0, 1);
    color: rgba(77, 42, 0, 1);
    background: transparent;
}

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

.Biaodan h2 {
    font-size: var(--size30);
    color: rgba(77, 42, 0, 1);
}

.Biaodan>p {
    font-size: var(--size16);
    color: rgba(128, 128, 128, 1);
    line-height: 1.8;
    border-top: 1px solid rgba(229, 229, 229, 1);
    padding: 25px 0;
    margin-top: var(--top30);
}

.Biaodan form {
    width: 100%;
    border-top: 1px solid rgba(229, 229, 229, 1);
}

.Biaodan_item {
    width: 100%;
    border-bottom: 1px solid rgba(229, 229, 229, 1);
    padding: 25px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.Biaodan_item>p {
    width: 300px;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    font-weight: bold;
}

.Biaodan_item>p span {
    color: rgba(212, 48, 48, 1);
}

.Line_height {
    line-height: 50px;
}

.Biaodan_right {
    flex: 1;
}

.Biaodan_input {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.Biaodan_input>input {
    width: 100%;
    height: 50px;
    border: 1px solid rgba(229, 229, 229, 1);
    font-size: var(--size14);
    color: rgba(166, 166, 166, 1);
    padding: 0 15px;
}

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

.Biaodan_diqu:first-child {
    margin-top: 0;
}

.Biaodan_diqu>p {
    width: 300px;
    font-size: var(--size16);
    color: rgba(56, 56, 56, 1);
}

.Biaodan_diqu>input {
    flex: 1;
    height: 50px;
    border: 1px solid rgba(229, 229, 229, 1);
    font-size: var(--size14);
    color: rgba(166, 166, 166, 1);
    padding: 0 15px;
}

.Biaodan_input>textarea {
    width: 100%;
    height: 200px;
    border: 1px solid rgba(229, 229, 229, 1);
    font-size: var(--size14);
    color: rgba(166, 166, 166, 1);
    padding: 15px;
}

.Biaodan_riqi_x input:focus,
.Biaodan_diqu>input:focus,
.Biaodan_input>input:focus,
.Biaodan_input>textarea:focus {
    border: 1px solid rgba(77, 42, 0, 1);
    color: rgba(77, 42, 0, 1);
}

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

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

.Biaodan_riqi_x {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.Biaodan_riqi_x input {
    width: 110px;
    height: 50px;
    border: 1px solid rgba(229, 229, 229, 1);
    font-size: var(--size14);
    color: rgba(166, 166, 166, 1);
    padding: 0 15px;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 1L8 8L15 1' stroke='%234D2A00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px auto;
}

.Biaodan_riqi_x span {
    display: block;
    width: max-content;
    font-size: var(--size16);
    color: rgba(56, 56, 56, 1);
}

.Biaodan_input span {
    font-size: var(--size14);
    color: rgba(56, 56, 56, 1);
}

.Biaodan_checkbox {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.Biaodan_checkbox label {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: var(--size14);
    color: rgba(56, 56, 56, 1);
    cursor: pointer;
}

.Biaodan_checkbox label input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(166, 166, 166, 1);
    background: #fff;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.Biaodan_checkbox label input:focus {
    border: 1px solid rgba(77, 42, 0, 1);
}

.Biaodan_checkbox label input:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 5px;
    border: solid rgba(77, 42, 0, 1);
    border-width: 0 0 2px 2px;
    opacity: 0;
    transform: translate(-50%, -70%) scale(1) rotate(-45deg);
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
}

.Biaodan_checkbox label input:checked {
    border-color: rgba(77, 42, 0, 1);
}

.Biaodan_checkbox label input:checked:after {
    opacity: 1;
}

.Biaodan_radio {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.Biaodan_radio label {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: var(--size14);
    color: rgba(56, 56, 56, 1);
    cursor: pointer;
}

.Biaodan_radio label input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(166, 166, 166, 1);
    border-radius: 50%;
    background: #fff;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.Biaodan_radio label input:focus {
    border: 1px solid rgba(77, 42, 0, 1);
}

.Biaodan_radio label input:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 4px;
    border: solid rgba(77, 42, 0, 1);
    border-width: 0 0 2px 2px;
    opacity: 0;
    transform: translate(-50%, -70%) scale(1) rotate(-45deg);
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
}

.Biaodan_radio label input:checked {
    border-color: rgba(77, 42, 0, 1);
}

.Biaodan_radio label input:checked:after {
    opacity: 1;
}

.Biaodan form button {
    width: 170px;
    height: 50px;
    opacity: 1;
    background: rgba(212, 48, 48, 1);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    border: 1px solid transparent;
    cursor: pointer;
    margin: auto;
    display: block;
    margin-top: var(--top60);
}

.Biaodan form button:hover {
    border: 1px solid rgba(212, 48, 48, 1);
    color: rgba(212, 48, 48, 1);
    background: transparent;
}

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

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

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

.Line_max img {
    width: 250px;
    height: auto;
    margin: auto;
}

.Line_max h3 {
    text-align: center;
    font-size: var(--size20);
    color: rgba(56, 56, 56, 1);
    font-weight: bold;
    margin-top: var(--top60);
}

.Line_max p {
    text-align: center;
    font-size: var(--size16);
    color: rgba(166, 166, 166, 1);
    margin-top: 15px;
}

.Line_max a {
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    text-align: center;
    display: block;
    margin-top: 15px;
    text-decoration: underline;
}

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

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

.Yuyue_men {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top20);
    cursor: pointer;
    border: 1px solid rgb(206, 206, 206);
    padding: 10px;
    border-radius: 5px;
}

.Yuyue_men.active {
    border: 1px solid rgba(255, 166, 0, 1);
    background: rgb(255 249 239);
}

.Yuyue_men_logo {
    width: 120px;
    aspect-ratio: 4 / 4;
    background: rgba(255, 228, 189, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.Yuyue_men_logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.Yuyue_men_text {
    flex: 1;
}

.Yuyue_men_text h2 {
    font-size: var(--size18);
    color: rgba(77, 42, 0, 1);
    font-weight: bold;
}

.Yuyue_men_text p {
    font-size: var(--size14);
    color: rgba(77, 42, 0, 1);
    line-height: 1.8;
    margin-top: 10px
}

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

.Yuyue_bu ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

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

.Yuyue_bu ul li p {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--size20);
    color: rgba(77, 42, 0, 1);
    font-weight: bold;
    line-height: 1;
    border-radius: 50%;
    margin: auto;
}

.Yuyue_bu ul li h2 {
    text-align: center;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    margin-top: 10px;
}

.Yuyue_bu ul li.active p {
    background: rgba(255, 235, 204, 1);
    border: none
}

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

.Yuyue_ji ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
}

.Yuyue_ji ul li {
    width: 100%;
    background: rgba(255, 255, 255, 1);
    padding: var(--top20);
}

.Yuyue_ji_title {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.Yuyue_ji_title img {
    width: 40%;
    aspect-ratio: 100 / 130;
    object-fit: cover;
}

.Yuyue_ji_text {
    flex: 1;
}

.Yuyue_ji_text h2 {
    font-size: var(--size20);
    color: rgba(77, 42, 0, 1);
    font-weight: bold;
}

.Yuyue_ji_text p {
    font-size: var(--size14);
    color: rgba(77, 42, 0, 1);
    line-height: 1.6;
    margin-top: 5px;
}

.Yuyue_ji ul li>p {
    font-size: var(--size14);
    color: rgba(77, 42, 0, 1);
    line-height: 1.6;
    margin-top: 15px;
}

.Yuyue_xiang {
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    margin-top: var(--top40);
    cursor: pointer;
    font-weight: bold;
}

.Yuyue_ji ul li a {
    width: 100%;
    line-height: 40px;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    text-align: center;
    display: block;
    border-radius: 5px;
    font-weight: bold;
    background: rgba(255, 235, 204, 1);
    margin-top: var(--top20);
    border: 1px solid transparent;
    transition: all 0.3s;
}

.Yuyue_ji ul li a:hover {
    border: 1px solid rgba(77, 42, 0, 1);
    color: rgba(77, 42, 0, 1);
    background: transparent;
}

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

.Yuyue_xuan h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgb(77, 42, 0);
}

.Yuyue_xuan ul {
    width: 100%;
    margin-top: var(--top30);
    border: 1px solid rgba(77, 42, 0, 1);
    border-top: none;
}

.Yuyue_xuan ul li {
    width: 100%;
    display: grid;
    grid-template-columns: 35% 1fr;
    border-top: 1px solid rgba(77, 42, 0, 1);
}

.Yuyue_xuan ul li h3 {
    width: 100%;
    background: rgba(255, 235, 204, 1);
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    font-weight: bold;
    padding: var(--top20);
}

.Yuyue_xuan_text {
    width: 100%;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    padding: var(--top20);
    border-left: 1px solid rgba(77, 42, 0, 1);
}

.Yuyue_xuan_text p {
    font-size: var(--size14);
    color: rgba(212, 48, 48, 1);
    margin-top: 5px;
}

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

.Matsuo_logo {
    width: 80px;
    aspect-ratio: 4 / 4;
    background: rgba(255, 228, 189, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.Matsuo_text {
    flex: 1;
}

.Matsuo_text h3 {
    font-size: var(--size20);
    color: rgba(77, 42, 0, 1);
    font-weight: bold;
}

.Matsuo_text h3 span {
    font-size: var(--size16);
    margin-left: 5px;
}

.Matsuo_text a {
    display: block;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    margin-top: 5px;
}

.Yuyue_ji_but {
    width: 100%;
    margin-top: var(--top30);
    display: flex;
    justify-content: flex-end;
}

.Yuyue_ji_but a {
    width: max-content;
    display: block;
    line-height: 50px;
    border: 1px solid rgba(77, 42, 0, 1);
    padding: 0 var(--top30);
    border-radius: 5px;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    transition: all 0.3s ease;
}

.Yuyue_ji_but a:hover {
    background: rgba(77, 42, 0, 1);
    color: rgb(255, 255, 255);
}


.Yuyue_xiangxi {
    width: 100%;
}

.Yuyue_xiangxi h2 {
    font-size: var(--size20);
    color: rgba(77, 42, 0, 1);
    font-weight: bold;
}

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

.Yuyue_xiangxi_max img {
    width: 25%;
    object-fit: cover;
}

.Yuyue_xiangxi_info {
    flex: 1;
}

.Yuyue_xiangxi_info>p {
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    line-height: 1.8;
    margin-bottom: 15px;
}

.Yuyue_xiangxi_block {
    width: 100%;
    border: 1px solid rgba(219, 219, 219, 1)
}

.Yuyue_xiangxi_block h3 {
    width: 100%;
    padding: 10px var(--top20);
    background: rgba(229, 229, 229, 1);
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
}

.Yuyue_xiangxi_block p {
    font-size: var(--size14);
    color: rgba(77, 42, 0, 1);
    line-height: 1.8;
    padding: 10px var(--top20);
}

.Erverse {
    width: 120px;
    position: fixed;
    right: 20px;
    bottom: 20%;
    z-index: 99;
}

@keyframes erverse-rotate {
    100% {
        transform: rotate(360deg);
    }
}

.Erverse_svg {
    width: 100%;
    height: 100%;
    display: block;
    animation: erverse-rotate 20s linear infinite;
}

.Erverse_text {
    fill: rgba(191, 110, 48, 0.45);
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0;
}

.Erverse img {
    width: 40px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
}

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

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

.Paiban_but button {
    width: max-content;
    display: block;
    height: 50px;
    border: 1px solid rgba(77, 42, 0, 1);
    padding: 0 var(--top20);
    border-radius: 5px;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.Paiban_but button:hover {
    background: rgba(77, 42, 0, 1);
    color: rgb(255, 255, 255);
}

.Paiban_but button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.Paiban_but button:disabled:hover {
    background: transparent;
    color: rgba(77, 42, 0, 1);
}

.Paiban_xin {
    width: 100%;
    margin-top: 20px;
    overflow-x: auto;
}

.Paiban_xin table {
    width: 100%;
    min-width: 550px;
    background: rgba(255, 255, 255, 1);
}

.Paiban_xin table th,
.Paiban_xin table td {
    border: 1px solid rgba(255, 188, 87, 1);
    text-align: center;
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    padding: var(--top20);
}

.Paiban_shi,
.Paiban_rishi {
    width: 100px;
}

.Paiban_jin {
    background: rgba(196, 224, 255, 1);
}

.Paiban_ge_o {
    cursor: pointer;
}

.Paiban_ge_o i {
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 224, 179, 1);
    border: 2px solid rgba(77, 42, 0, 1);
    margin: auto;
}

.Paiban>a {
    width: max-content;
    line-height: 50px;
    background: rgba(229, 229, 229, 1);
    border-radius: 5px;
    padding: 0 var(--top50);
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    margin-top: 20px;
    display: block;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.Paiban>a:hover {
    border: 1px solid rgba(0, 0, 0, 1);
    color: rgba(0, 0, 0, 1);
    background: transparent;
}

.Login {
    width: 100%;
}

.Login h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgb(77, 42, 0);
}

.Login form {
    width: 700px;
    max-width: 100%;
    margin: auto;
    margin-top: var(--top50);
}

.Login_max {
    width: 100%;
    background: rgba(229, 218, 206, 1);
    padding: var(--top30) var(--top50);
    display: flex;
    flex-direction: column;
    gap: var(--top30);
}

.Login_ltem {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1vw;
}

.Login_ltem p {
    width: 100px;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    font-weight: bold;
    line-height: 50px;
}

.Login_right {
    flex: 1;
}

.Login_right input {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 1);
    font-size: var(--size14);
    color: rgba(77, 42, 0, 1);
    padding: 0 20px;
}

.Login_right span {
    font-size: var(--size14);
    color: rgba(77, 42, 0, 1);
    margin-top: 10px;
    display: block;
}

.Login form button {
    width: 100%;
    height: 50px;
    background: rgba(77, 42, 0, 0.6);
    margin-top: var(--top30);
    display: block;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.Login form button:hover {
    border: 1px solid rgba(77, 42, 0, 0.6);
    color: rgba(77, 42, 0, 0.6);
    background: transparent;
}

.Login {
    width: 100%;
}

.Register {
    width: 100%;
    margin-top: var(--top100);
    display: none;
}

.Register h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgb(77, 42, 0);
}

.Register form {
    width: 700px;
    max-width: 100%;
    margin: auto;
    margin-top: var(--top50);
}

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

.Register_max h3 {
    font-size: var(--size20);
    color: rgba(77, 42, 0, 1);
    font-weight: bold;
}

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

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

.Register_cen {
    width: 100%;
    border: 1px solid rgba(77, 42, 0, 1);
    border-top: none;
}

.Register_ltem {
    width: 100%;
    background: rgba(203, 180, 152, 0.4);
    border-top: 1px solid rgba(77, 42, 0, 1);
    padding: 10px var(--top20);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.Register_ltem p {
    width: 250px;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
}

.Register_ltem p span {
    color: rgba(212, 48, 48, 1);
}

.Register_right {
    flex: 1;
}

.Register_right>input {
    width: 100%;
    height: 44px;
    background: rgba(77, 42, 0, 0.6);
    font-size: var(--size14);
    color: rgba(255, 255, 255, 0.4);
    padding: 0 var(--top20);
}

.Register_right>input:focus,
.Register_right>input:not(:placeholder-shown) {
    color: rgba(255, 255, 255, 1);
}

.Register_right span {
    font-size: var(--size14);
    color: rgba(77, 42, 0, 1);
    margin-top: 10px;
    display: block;
}

.Register_right .Biaodan_radio label input {
    background: transparent;
}

.Register_fan {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.Register_fan>input {
    flex: 1;
    height: 44px;
    background: rgba(77, 42, 0, 0.6);
    font-size: var(--size14);
    color: rgba(255, 255, 255, 0.4);
    padding: 0 var(--top20);
}
.Register_fan>input:focus,
.Register_fan>input:not(:placeholder-shown) {
    color: rgba(255, 255, 255, 1);
}
.Register_fan>input:nth-child(2) {
    flex: initial;
    width: 150px;
}

.Register_fan button {
    width: 160px;
    height: 44px;
    background: rgba(77, 42, 0, 0.8);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: var(--size14);
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
}

.Register_fan button svg {
    width: 16px;
    height: auto;
    display: block;
}

.Register_max form>button {
    width: 100%;
    height: 50px;
    background: rgba(77, 42, 0, 0.6);
    margin-top: var(--top30);
    display: block;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.Register_max form>button:hover {
    border: 1px solid rgba(77, 42, 0, 0.6);
    color: rgba(77, 42, 0, 0.6);
    background: transparent;
}

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

.Shuru h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgb(77, 42, 0);
}

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

.Shuru_max>p {
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
}

.Shuru_max>p span {
    color: rgba(212, 48, 48, 1);
}

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

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

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

.Shuru_di p span {
    color: rgba(212, 48, 48, 1);
}

.Shuru_di_right {
    flex: 1;
}

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

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

.Shuru_zixin textarea {
    width: 100%;
    height: 200px;
    border: 1px solid rgba(229, 229, 229, 1);
    font-size: var(--size14);
    color: rgba(166, 166, 166, 1);
    padding: 15px;
    margin-top: var(--top20);
}

.Shuru_zixin textarea:focus {
    border: 1px solid rgba(77, 42, 0, 1);
    color: rgba(77, 42, 0, 1);
}

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

.Shuru_but button,
.Shuru_but a {
    width: max-content;
    height: 50px;
    background: rgba(229, 229, 229, 1);
    border-radius: 5px;
    padding: 0 var(--top50);
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    display: block;
    border: 1px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    line-height: 50px;
}

.Shuru_but button:last-child {
    background: rgba(255, 228, 189, 1);
}

.Shuru_but button:hover,
.Shuru_but a:hover {
    border: 1px solid rgba(0, 0, 0, 1);
    color: rgba(0, 0, 0, 1);
    background: transparent;
}

.Shuru_but button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.Shuru_but button:disabled:hover {
    border: 1px solid transparent;
    background: rgba(255, 228, 189, 1);
    color: rgba(0, 0, 0, 1);
}

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

.Yunei_tong {
    width: 100%;
}

.Yunei_tong p {
    font-size: var(--size14);
    color: rgba(212, 48, 48, 1);
}

.Yunei_an {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
}

.Yunei_an span {
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
}

.Yunei_an button {
    font-size: var(--size16);
    color: rgba(128, 128, 128, 1);
    cursor: pointer;
}

.Yuyue_queren {
    width: 100%;
}

.Yuyue_queren>p {
    font-size: var(--size18);
    color: rgba(56, 56, 56, 1);
}

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

.Yuyue_left {
    width: 160px;
}

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

.Yuyue_left p {
    width: 100%;
    line-height: 50px;
    background: rgba(204, 204, 204, 1);
    text-align: center;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    margin-top: 15px;
}

.Yuyue_right {
    flex: 1;
}

.Yuyue_right p {
    font-size: var(--size14);
    color: rgba(56, 56, 56, 1);
    line-height: 1.8;
    margin-bottom: 15px;
}

.Wancheng {
    width: 900px;
    max-width: 100%;
    margin: auto;
    margin-top: var(--top60);
}

.Wancheng h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgb(77, 42, 0);
}

.Wancheng p {
    text-align: center;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    margin-top: var(--top40);
}

.Wancheng button {
    width: 100%;
    height: 50px;
    background: rgba(238, 214, 176, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: var(--size16);
    color: rgba(128, 128, 128, 1);
    cursor: pointer;
    margin-top: var(--top40);
}

.Wancheng button svg {
    width: 14px;
    height: auto;
    display: block;
}

.Wancheng button.Jinyong {
    background: rgba(229, 229, 229, 1);
    color: rgba(128, 128, 128, 1);
    cursor: not-allowed;
}

.Wancheng a{
    width: 100%;
    line-height: 50px;
    display: block;
    background: rgba(238, 214, 176, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: var(--size16);
    color: rgba(128, 128, 128, 1);
    cursor: pointer;
    margin-top: var(--top20);
}

.Wancheng span {
    display: block;
    font-size: var(--size14);
    color: rgba(212, 48, 48, 1);
    line-height: 1.8;
    margin-top: 10px;
}


.Xinwen h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(77, 42, 0, 1);
    font-weight: 400;
}

.Xinwen ul {
    width: 100%;
}

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

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

.Xinwen_show>p {
    font-size: var(--size14);
    color: rgba(77, 42, 0, 1);
    margin-top: 10px;
}

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

.Xinwen_show_text * {
    max-width: 100%;
}

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

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

.Boke_show h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(77, 42, 0, 1);
}

.Boke_show_max {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top30);
    border: 1px solid rgba(255, 213, 161, 1);
    padding: var(--top30);
    margin-top: var(--top50);
}

.Boke_show_max_logo {
    width: 50%;
    height: auto;
}
.Boke_show_max_logo img{
    width: 100%;
}

.Boke_show_text {
    flex: 1;
}

.Boke_show_text>span {
    display: block;
    width: max-content;
    line-height: 50px;
    border-radius: 5px;
    background: rgba(255, 235, 204, 1);
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    padding: 0 var(--top60);
}

.Boke_show_text>h3 {
    font-size: var(--size20);
    color: rgba(77, 42, 0, 1);
    margin-top: var(--top20);
}

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

.Boke_show_ge p {
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
}

.Boke_show_cen {
    width: 100%;
    border-top: 1px solid rgba(77, 42, 0, 0.2);
    padding-top: var(--top30);
    margin-top: var(--top30);
    font-size: var(--size14);
    color: rgba(77, 42, 0, 1);
    line-height: 1.8;
}

.Xinzu {
    width: max-content;
    display: block;
    line-height: 50px;
    background: rgba(77, 42, 0, 0.6);
    border: 1px solid transparent;
    padding: 0 var(--top50);
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--top20);
    margin: auto;
    margin-top: var(--top30);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.Xinzu svg {
    width: 16px;
    height: auto;
    display: block;
}

.Xinzu:hover {
    border: 1px solid rgba(77, 42, 0, 1);
    background: transparent;
    color: rgba(77, 42, 0, 1);
}

.Xinzu:hover svg path {
    fill: rgba(77, 42, 0, 1);
}

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

.Youhui_title {
    width: 100%;
    position: relative;
}

.Youhui_title h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgb(77, 42, 0);
}

.Youhui_title a {
    width: max-content;
    display: block;
    line-height: 50px;
    border: 1px solid rgba(77, 42, 0, 1);
    padding: 0 var(--top30);
    border-radius: 5px;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.Youhui_title a:hover {
    background: rgba(77, 42, 0, 1);
    color: rgb(255, 255, 255);
}

.Youhui_shai {
    width: 100%;
    margin-top: var(--top30);
    border-radius: 5px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 213, 161, 1);
    padding: var(--top20);
}

.Youhui_liem {
    width: 100%;
}

.Youhui_liem p {
    font-size: var(--size18);
    color: rgba(77, 42, 0, 1);
}

.Youhui_liem_in {
    width: 100%;
    margin-top: 15px;
}

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

.Youhui_xing button {
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
    cursor: pointer;
}

.Youhui_xianshi {
    width: 100%;
    margin-top: 20px;
    display: none;
}

.Youhui_xing button.active+.Youhui_xianshi {
    display: block;
}

.Youhui_checkbox {
    width: 100%;
    margin-top: 15px;
}

.Youhui_checkbox .Biaodan_checkbox label {
    color: #ffa59a;
}

.Youhui_checkbox .Biaodan_checkbox label input {
    border: 1px solid #ffa59a;
    border-radius: 50%;
}

.Youhui_checkbox .Biaodan_checkbox label input:focus {
    border: 1px solid #ffa59a
}

.Youhui_checkbox .Biaodan_checkbox label input:after {
    border: solid #ffa59a;
    border-width: 0 0 2px 2px;
}

.Youhui_checkbox .Biaodan_checkbox label input:checked {
    border-color: #ffa59a;
}

.Youhui_shai>button {
    width: 100%;
    text-align: center;
    height: 50px;
    background: rgba(255, 244, 227, 1);
    border-radius: 5px;
    padding: 0 var(--top50);
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    display: block;
    border: 1px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    margin-top: var(--top20);
}

.Youhui_shu {
    width: 100%;
    margin-top: 30px;
}

.Youhui_shu ul {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: var(--top20);
}

.Youhui_shu ul li {
    width: 100%;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 235, 204, 1);
    padding: var(--top20);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top20);
}

.Youhui_shu_left {
    width: 240px;
    background: rgba(255, 235, 204, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.Youhui_shu_left img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.Youhui_shu_cen {
    flex: 1;
}

.Youhui_shu_biao {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.Youhui_shu_biao p {
    width: max-content;
    line-height: 44px;
    ;
    background: rgba(255, 235, 204, 1);
    border-radius: 5px;
    padding: 0 var(--top20);
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    display: block;
}

.Youhui_shu_title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.Youhui_shu_title p {
    width: max-content;
    line-height: 36px;
    background: rgba(77, 42, 0, 1);
    font-size: var(--size14);
    color: rgba(255, 255, 255, 1);
    padding: 0 var(--top20);
}

.Youhui_shu_title p.Quanyuan {
    background: #35ae92;
}

.Youhui_shu_title p.Xingui {
    background: #ff4b36;
}

.Youhui_shu_title p.Zailai {
    background: #5186ec;
}

.Youhui_shu_title h2 {
    flex: 1;
    font-size: var(--size18);
    color: rgba(77, 42, 0, 1);
    font-weight: bold;
}

.Youhui_shu_cen>p {
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    line-height: 1.8;
    margin-top: 20px;
}

.Youhui_shu_right {
    width: max-content;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
}

.Youhui_shu_right button,
.Youhui_shu_right a {
    width: 100%;
    display: block;
    line-height: 50px;
    border: 1px solid rgba(255, 235, 204, 1);
    padding: 0 var(--top30);
    border-radius: 5px;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    transition: all 0.3s ease;
    text-align: center;
}

.Youhui_shu_right button:hover,
.Youhui_shu_right a:hover {
    background: rgba(77, 42, 0, 1);
    color: rgb(255, 255, 255);
}

.Youhui_shu_right p {
    font-size: var(--size30);
    color: rgba(212, 48, 48, 1);
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
}

.Boke_you {
    width: var(--max);
    margin: var(--top30) auto;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 235, 204, 1);
}

.Boke_you h2 {
    width: 100%;
    background: rgba(255, 235, 204, 1);
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
    padding: var(--top20);
    line-height: 1;
}

.Boke_you_max {
    width: 100%;
    padding: var(--top20);
}

.Boke_you_biao {
    width: max-content;
    line-height: 36px;
    background: rgba(77, 42, 0, 1);
    font-size: var(--size14);
    color: rgba(255, 255, 255, 1);
    padding: 0 var(--top20);
    margin-top: 15px;
}

.Boke_you_biao.Quanyuan {
    background: #35ae92;
}

.Boke_you_biao.Xingui {
    background: #ff4b36;
}

.Boke_you_biao.Zailai {
    background: #5186ec;
}

.Boke_you_max h3 {
    font-size: var(--size20);
    color: rgba(77, 42, 0, 1);
    font-weight: bold;
    margin-top: 15px;
}

.Boke_you_max span {
    display: block;
    font-size: var(--size30);
    color: rgba(212, 48, 48, 1);
    font-weight: bold;
    margin-top: 15px;
}

.Boke_you_max>p {
    font-size: var(--size14);
    color: rgba(77, 42, 0, 1);
    line-height: 1.8;
    margin-top: 15px;
}

.Boke_you_max button,
.Boke_you_max a {
    width: max-content;
    display: block;
    line-height: 50px;
    border: 1px solid rgba(77, 42, 0, 1);
    padding: 0 var(--top60);
    border-radius: 5px;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 15px;
    text-decoration: none;
}

.Boke_you_max button:hover,
.Boke_you_max a:hover {
    background: rgba(77, 42, 0, 1);
    color: rgb(255, 255, 255);
}

.Boke_xaing {
    width: var(--max);
    margin: var(--top30) auto;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 235, 204, 1);
}

.Boke_xaing h2 {
    width: 100%;
    background: rgba(255, 235, 204, 1);
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
    padding: var(--top20);
    line-height: 1;
}

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

.Boke_xaing_max img {
    width: 50%;
    height: auto;
}


.Boke_xaing_text {
    flex: 1;
}

.Boke_xaing_text>h3 {
    font-size: var(--size18);
    color: rgba(77, 42, 0, 1);
    font-weight: bold;
}

.Boke_show_text {
    font-size: var(--size14);
    color: rgba(77, 42, 0, 1);
    margin-top: 10px;
    line-height: 1.8;
}

.Boke_xaing_but {
    width: 100%;
    border-top: 1px solid rgba(77, 42, 0, 0.2);
    padding-top: var(--top20);
    margin-top: var(--top20);
    display: flex;
    flex-wrap: wrap;
    gap: var(--top20);
}

.Boke_xaing_but a {
    width: max-content;
    display: block;
    line-height: 44px;
    border: 1px solid rgba(77, 42, 0, 1);
    padding: 0 var(--top30);
    border-radius: 5px;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    transition: all 0.3s ease;
}

.Boke_xaing_but a:hover {
    background: rgba(77, 42, 0, 1);
    color: rgb(255, 255, 255);
}

.Boke_xaing_but button {
    width: max-content;
    line-height: 44px;
    background: rgba(255, 235, 204, 1);
    border-radius: 5px;
    padding: 0 var(--top30);
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    display: block;
    cursor: pointer;
}


.Prev {
    width: var(--max);
    margin: var(--top30) auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

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

.Kongyu a {
    width: max-content;
    line-height: 50px;
    background: rgba(255, 235, 204, 1);
    border-radius: 5px;
    padding: 0 var(--top60);
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    display: block;
    margin: auto;
    cursor: pointer;
}

.Jichuxing {
    width: 100%;
    margin-top: var(--top30);
    background: rgba(255, 255, 255, 1);
}

.Jichuxing h2 {
    width: 100%;
    background: rgba(255, 235, 204, 1);
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
    padding: var(--top20);
    line-height: 1;
}

.Jichuxing_list {
    width: 100%;
}

.Jichuxing_item {
    width: 100%;
    padding: var(--top20);
    border-bottom: 1px solid rgba(229, 229, 229, 1);
}

.Jichuxing_item label {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
}

.Jichuxing_item label input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(166, 166, 166, 1);
    background: #fff;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.Jichuxing_item label input:focus {
    border: 1px solid rgba(77, 42, 0, 1);
}

.Jichuxing_item label input:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 5px;
    border: solid rgba(77, 42, 0, 1);
    border-width: 0 0 2px 2px;
    opacity: 0;
    transform: translate(-50%, -70%) scale(1) rotate(-45deg);
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
}

.Jichuxing_item label input:checked {
    border-color: rgba(77, 42, 0, 1);
}

.Jichuxing_item label input:checked:after {
    opacity: 1;
}

.Jichuxing_right {
    flex: 1;
}

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

.Jichuxing_item_title h3 {
    flex: 1;
    font-size: var(--size18);
    color: rgba(77, 42, 0, 1);
    font-weight: bold;
}

.Jichuxing_item_title span {
    display: block;
    width: 100px;
    text-align: right;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    margin-right: 6vw;
}

.Jichuxing_item_title p {
    display: block;
    width: 100px;
    text-align: right;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
}

.Jichuxing_right>P {
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    line-height: 1.8;
    margin-top: 10px;
}

















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

.Guoqu h2 {
    font-size: var(--size30);
    color: rgb(77, 42, 0);
}

.Guoqu>p {
    font-size: var(--size14);
    color: rgba(77, 42, 0, 1);
    margin-top: var(--top30);
}

.Guoqu ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--top20);
    margin-top: var(--top50);
}

.Guoqu ul li {
    width: 100%;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 235, 204, 1);
    padding: var(--top30);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top30);
}

.Guoqu_logo {
    width: 240px;
    background: rgba(255, 235, 204, 1);
}

.Guoqu_logo p {
    background: rgba(229, 229, 229, 1);
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    line-height: 50px;
    text-align: center;
}

.Guoqu_logo img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: contain;
}

.Guoqu_right {
    flex: 1;
}

.Guoqu_right span {
    display: block;
    font-size: var(--size16);
    color: rgba(77, 42, 0, 1);
    line-height: 1;
}

.Guoqu_right h3 {
    font-size: var(--size20);
    color: rgba(77, 42, 0, 1);
    margin-top: var(--top20);
    font-weight: bold;
}


.Guoqu_fu {
    width: 100%;
    background: rgba(255, 235, 204, 0.5);
    padding: 12px 15px;
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    margin-top: var(--top20);
    line-height: 1.8;
}

.Guoqu_btns {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: var(--top20);
}

.Guoqu_btns a {
    display: block;
    line-height: 44px;
    padding: 0 var(--top30);
    border-radius: 5px;
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    border: 1px solid rgba(77, 42, 0, 1);
    transition: all 0.3s ease;
}

.Guoqu_btns a:last-child {
    background: rgba(255, 235, 204, 1);
    border: 1px solid rgba(255, 235, 204, 1);
}