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

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

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

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

html,
body {
    font-family: "m";

    background: rgb(255, 248, 240);
}

.Hertre {
    width: 100%;
    z-index: 999;
    position: relative;
    background: rgb(255, 248, 240);
}

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

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

}

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

.Nav {
    width: max-content;
}

.Nav ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5vw;
}

.Nav ul li {
    font-size: var(--size18);
    color: rgb(67, 67, 67);
    text-align: center;
    line-height: 90px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.Nav ul li svg {
    width: 16px;
    height: 16px;
    fill: #030000;
    transform: rotate(90deg);
}


.Nav ul li.Nav_cen {
    color: rgb(176, 68, 25)
}

.Nav ul li:hover {
    color: rgb(176, 68, 25);
}

/* .Nav ul li::after {
    content: "";
    width: 0%;
    height: 3px;
    background: #ec078d;
    position: absolute;
    bottom: 0px;
    left: 0%;
    transition: all 0.3s;
}

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

.Nav ul li:hover::after {
    width: 100%;
} */

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

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

.Nav_ul a:hover {
    color: rgb(176, 68, 25);
}

.Nav_ul a.Nav_ul_Nav {
    color: rgb(176, 68, 25);
}

.Hertre_cen form {
    width: max-content;
    border-radius: 8px;
    border: 1px solid rgb(140, 140, 140);
    position: relative;
}

.Hertre_cen form input {
    width: 200px;
    height: 44px;
    font-size: var(--size14);
    color: rgb(89, 89, 89);
    padding-left: var(--top20);
    padding-right: var(--top40);
}

.Hertre_cen form button {
    width: 14px;
    border: transparent;
    background: transparent;
    position: absolute;
    right: var(--top20);
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.Hertre_cen form button img {
    width: 100%;
    height: auto;
}

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

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

.menu_button:focus {
    outline: none;
}

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

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

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

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

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

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

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

.Banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

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

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


.info_card {
    width: 890px;
    max-width: 100%;
    background: rgb(0, 0, 0, 0.5);
    border-radius: var(--top20);
    padding: var(--top20) var(--top40);
}

.info_row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px dashed rgb(255, 255, 255);
    padding-bottom: 15px;
}

.info_row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.info_item {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 20px;
}

.info_item .label {
    min-width: 80px;
    font-size: var(--size16);
    color: rgb(255, 255, 255);
}

.info_item .value {
    font-size: var(--size16);
    color: rgb(255, 255, 255);
    flex: 1;
}


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

.Mianbai ul {
    width: var(--max);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.Mianbai ul li {
    width: max-content;
    position: relative;
    line-height: 70px;
}

.Mianbai ul li::after {
    content: "";
    width: 0%;
    height: 4px;
    background: rgb(252, 127, 60);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.Mianbai ul li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 0 var(--top40);
}

.Mianbai_img {
    width: 18px;
    height: 18px;
}

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

.Mianbai ul li a span {
    font-size: var(--size20);
    color: rgb(89, 89, 89);
    font-family: 'z';
}

.Mianbai ul li.active a span,
.Mianbai ul li:hover a span {
    color: rgb(176, 68, 25);
}

.Mianbai ul li.active .Mianbai_img img,
.Mianbai ul li:hover .Mianbai_img img {
    filter: brightness(0) saturate(100%) invert(22%) sepia(57%) saturate(2852%) hue-rotate(355deg) brightness(87%) contrast(82%);
}

.Mianbai ul li.active::after,
.Mianbai ul li:hover::after {
    width: 100%;
}

.Guanyu {
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4vw;
}

.Guanyu_text {
    width: 50%;
    font-size: var(--size16);
    color: rgb(67, 67, 67);
    line-height: 1.8;
    text-align: justify;
}

.Guanyu_img {
    flex: 1;
}

.Guanyu_img img {
    width: 100%;
    height: auto;
    border-radius: var(--top20);
}

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

.Rizhi ul {
    width: 100%;
    overflow: hidden;
    background: rgb(245, 245, 245);
}

.Rizhi ul li {
    width: 100%;
    overflow: hidden;
    padding: var(--top20)
}

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

.Rizhi ul li h2 {
    flex: 1;
    font-size: var(--size16);
    color: rgb(67, 67, 67);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Rizhi ul li p {
    width: max-content;
    font-size: var(--size16);
    color: rgb(67, 67, 67);
}

.Rizhi ul li:nth-child(2n) {
    background: rgb(255, 239, 224);
}


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

.page .active,
.page .total {
    font-size: var(--size16);
    color: #FC7F3C;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page .active:nth-child(1),
.page .total:nth-child(1) {
    width: 40px;
    height: 40px;
    background: rgb(255, 239, 224);
    border-radius: 15px 0px 0px 15px;
}

.page .active:last-child,
.page .total:last-child {
    width: 40px;
    height: 40px;
    background: rgb(255, 239, 224);
    border-radius: 0px 15px 15px 0px;
}

.page .active {
    color: rgb(176, 68, 25);
}

.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 {
    color: #FC7F3C;
}

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

.Daohn_max {
    width: var(--max);
    overflow: hidden;
    margin: 15px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--size16);
    color: rgb(67, 67, 67);
}

.Daohn_max span {
    color: rgb(252, 127, 60);
}


.Show {
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
}

.Show_left {
    flex: 1;
}

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

.Back a {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--size16);
    color: rgb(252, 127, 60);
}

.Show_left>h2 {
    font-size: var(--size30);
    color: rgb(31, 31, 31);
    margin-top: var(--top20)
}

.Show_text {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top20);
    font-size: var(--size14);
    color: rgb(67, 67, 67);
    line-height: 2;
}

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

.Prev {
    width: max-content;
    overflow: hidden;
    margin: auto;
    margin-top: var(--top60);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
}

.Prev a {
    width: max-content;
    display: block;
    line-height: 50px;
    background: rgb(255, 239, 224);
    border-radius: 15px 0px 0px 15px;
    font-size: var(--size14);
    color: rgb(252, 127, 60);
    padding: 0 30px;
}

.Prev a:nth-child(2) {
    border-radius: 0px 15px 15px 0px;
}

.Show_right {
    width: 250px;
    position: relative;
}

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

.Show_cont h2 {
    font-size: var(--size36);
    color: rgb(252, 127, 60);
    font-family: 'z';
}

.Show_cont ul {
    width: 100%;
    overflow: hidden;
    background: rgb(255, 239, 224);
    border-radius: 15px;
    margin-top: var(--top30);
    padding: 10px var(--top20);
}

.Show_cont ul li {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
    border-top: 1px solid rgb(255, 255, 255);
    font-size: var(--size16);
    color: rgb(67, 67, 67);
    line-height: 1.5;
    padding-left: 15px;
    position: relative;
}

.Show_cont ul li::before {
    content: "⦁";
    color: rgb(252, 127, 60);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.Show_cont ul li:nth-child(1) {
    border: transparent;
}

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

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

.Shipin ul li {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: var(--top30);
}

.Shipin ul li img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
}

.Shipin ul li h2 {
    width: 100%;
    background: rgb(255, 216, 184);
    font-size: var(--size16);
    color: rgb(89, 89, 89);
    line-height: 1.5;
    padding: var(--top20);
    border-radius: 0px 0px var(--top30) var(--top30);
}

.Shipin_show {
    width: var(--max);
    margin: var(--top60) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row-reverse;
    gap: 5vw;
}

.Shipin_left {
    flex: 1;
}

.Jianjie {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top60);
}

.Jianjie_list {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgb(216, 214, 213);
    padding-top: var(--top60);
}

.Jianjie_list:nth-child(1) {
    padding: 0;
    border: transparent;
}

.JIanjie_max>h2 {
    font-size: var(--size30);
    color: rgb(31, 31, 31);
    margin-top: var(--top20)
}

.JIanjie_max>h3 {
    font-size: var(--size24);
    color: rgb(31, 31, 31);
    margin-top: var(--top20);
}

.JIanjie_max>P {
    font-size: var(--size14);
    color: rgb(67, 67, 67);
    line-height: 1.6;
    margin-top: var(--top20);
}

.JIanjie_max>img {
    width: 270px;
    height: auto;
    margin-top: var(--top30);
}

.Jianjie_video>h3 {
    font-size: var(--size24);
    color: rgb(31, 31, 31);
}

.Jianjie_video ul {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top40);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--top30);
}

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

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

.Jianjie_video_img img {
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
}

.Jianjie_video_img:hover img {
    transform: scale(1.2)
}

.Jianjie_video_img svg {
    width: 100px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    cursor: pointer;
    opacity: 0;
}

.Jianjie_video ul li:hover .Jianjie_video_img svg {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.Jianjie_video ul li h3 {
    font-size: var(--size16);
    color: rgb(67, 67, 67);
    margin-top: 10px;
}

.video_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9999;
    display: none;
    transition: auto
}


.video_wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    max-width: 80%
}

.video_wrapper video {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.close_btn {
    width: 30px;
    height: auto;
    position: absolute;
    right: -40px;
    top: -40px;
    cursor: pointer;
}

.close_btn svg {
    width: 100%;
    height: auto;
}

.close_btn:hover {
    transform: rotate(180deg)
}

.Jianjie_Huaxu ul {
    grid-template-columns: 1fr 1fr 1fr;
}

.Jianjie_Juzhan ul {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top40);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--top30);
}

.Jianjie_Juzhan ul li {
    width: 100%;
    overflow: hidden;
    border-radius: var(--top20);
    cursor: pointer;
}

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

.Jianjie_Juzhan ul li:hover img {
    transform: scale(1.2)
}

.Shipin_right {
    width: 260px;
    position: sticky;
    top: 20px;
    z-index: 99;

}

.Shipin_right ul {
    width: 100%;
    overflow: hidden;
    background: rgb(255, 239, 224);
    padding: 0 20px;
    border-radius: 16px;
}

.Shipin_right ul li {
    cursor: pointer;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid rgb(255, 255, 255);
    padding: var(--top20) 0;
    font-size: var(--size16);
    color: rgb(67, 67, 67);
    line-height: 1;
    position: relative;
    padding-left: 20px;
}

.Shipin_right ul li::after {
    content: "";
    width: 5px;
    height: 5px;
    background: rgb(252, 127, 60);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.Shipin_right ul li.active {
    color: rgb(252, 127, 60);
}


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

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

.Zongyi ul li {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: var(--top30);
    cursor: pointer;
}

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

.Zongyi_img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.Zongyi ul li h2 {
    width: 100%;
    font-size: var(--size16);
    background: rgb(255, 216, 184);
    color: rgb(89, 89, 89);
    line-height: 1.5;
    padding: var(--top20);
    border-radius: 0px 0px var(--top30) var(--top30);
}

.Zongyi_img svg {
    width: 70px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    cursor: pointer;
    opacity: 0;
}

.Zongyi ul li:hover .Zongyi_img svg {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.Fnagjian ul li h2 {
    background: rgb(104, 97, 227);
    color: rgb(255, 255, 255);
}

.Zhibo ul li h2 {
    background: rgb(252, 127, 60);
    color: rgb(255, 255, 255);
}

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

.BannerIn>img {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
}

.BannerIn_img {
    width: 830px;
    max-width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.Guance {
    width: 100%;
    overflow: hidden;
    background: rgb(251, 128, 61) url(../images/guancetai.png) no-repeat bottom right / 100% auto;
    padding: var(--top40);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row-reverse;
    gap: var(--top60);
}

.Guance>p {
    width: 60%;
    font-size: var(--size16);
    color: rgb(255, 255, 255);
    line-height: 2;
}

.Guance_text {
    flex: 1;
}

.Guance_text h2 {
    width: 100%;
    overflow: hidden;
    font-size: 5vw;
    color: rgb(255, 255, 255);
    line-height: 1;
    font-family: 'z';
    text-align: right;
}

.Guance_text a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-size: var(--size20);
    color: rgb(255, 255, 255);
    margin-top: var(--top20);
    line-height: 1;
}

.Guance_text a svg {
    width: 15px;
    height: auto;
}

.Fangyin {
    width: 100%;
    overflow: hidden;
    padding: 0 var(--top40);
    margin: var(--top60) 0;
}

.Fangyin_top {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 15px;
}

.Fangyin_top h2 {
    font-size: var(--size40);
    color: rgb(89, 89, 89);
    line-height: 1;
    font-family: 'z';
}

.Fangyin_top p {
    font-size: var(--size20);
    color: rgb(89, 89, 89);
    line-height: 1;
    font-family: 'z';
}

.Fangyin_l {
    width: 50px;
    height: auto;
}

.Fangyin_r {
    width: 30px;
    height: auto;
}

.Fangyin ul {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top50);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--top40);
}

.Fangyin ul li {
    width: 100%;
    overflow: hidden;
    border-radius: var(--top30);
}

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

.Fangyin_text {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: rgb(255, 216, 184);
    padding: var(--top30);
}

.Fangyin_text h2 {
    font-size: var(--size30);
    color: rgb(89, 89, 89);
}

.Fangyin_text a {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    font-size: var(--size20);
    color: rgb(251, 128, 61);
}

.Fangyin_text a:hover {
    gap: 15px;
}

.Fangyin_text a img {
    width: 30px;
    height: auto;
    margin-right: 5px;
}

.Fangyin_text a svg {
    width: 15px;
    height: auto;
}

.Nowuguan {
    width: 100%;
    overflow: hidden;
    padding: 0 var(--top40);
    margin: var(--top60) 0;
}

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

.Nowuguan_top img {
    width: 50px;
    height: auto;
}

.Nowuguan_top h2 {
    font-size: var(--size40);
    color: rgb(89, 89, 89);
    line-height: 1;
    font-family: 'z';
}

.Nowuguan_top a {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-size: var(--size20);
    color: rgb(251, 128, 61);
    line-height: 1;
    margin-left: auto;
}

.Nowuguan_top a svg {
    width: 15px;
    height: auto;
}

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

.Nowuguan_left {
    width: 270px;
    overflow: hidden;
}

.Nowuguan_left ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.Nowuguan_left ul li {
    width: 100%;
    line-height: 70px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    font-size: var(--size30);
    color: rgb(89, 89, 89);
    font-family: 'z';
    display: flex;
    justify-content: center;
    align-items: center;
}

.Nowuguan_left ul li.action {
    background: rgb(255, 239, 224);
    color: rgb(212, 95, 40);
}


.Nowuguan_right {
    flex: 1;
}

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

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

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

.Nowuguan_video ul li {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: var(--top30);
}

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

.Nowuguan_video ul li h2 {
    width: 100%;
    background: rgb(255, 216, 184);
    font-size: var(--size16);
    color: rgb(89, 89, 89);
    line-height: 1.5;
    padding: var(--top20);
    border-radius: 0px 0px var(--top30) var(--top30);
}



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

.Nowuguan_zongyi ul li {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: var(--top30);
    cursor: pointer;
}

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

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

.Nowuguan_zongyi ul li h2 {
    width: 100%;
    background: rgb(255, 216, 184);
    font-size: var(--size16);
    color: rgb(89, 89, 89);
    line-height: 1.5;
    padding: var(--top20);
    border-radius: 0px 0px var(--top30) var(--top30);
}

.Nowuguan_img svg {
    width: 70px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    cursor: pointer;
    opacity: 0;
}

.Nowuguan_zongyi ul li:hover .Nowuguan_img svg {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.Liuyingji {
    width: 100%;
    overflow: hidden;
    padding: 0 var(--top40);
    margin: var(--top60) auto;
}

.Liuyingji .Nowuguan_top a {
    margin-left: 0px;
}

.Nowuguan_top ul {
    width: max-content;
    display: flex;
    align-items: center;
    background: rgb(255, 216, 184);
    padding: 5px;
    border-radius: 15px;
    margin: auto;
}

.Nowuguan_top ul li {
    width: 250px;
    line-height: 60px;
    border-radius: 12px;
    font-size: var(--size24);
    color: rgb(89, 89, 89);
    text-align: center;
    cursor: pointer;
}

.Nowuguan_top ul li.action {
    background: rgb(251, 128, 61);
    color: #ffffff;
}

.Liuyingji>ul {
    width: 100%;
    display: none;
    align-items: center;
    background: rgb(255, 216, 184);
    padding: 5px;
    border-radius: 15px;
    margin: auto;
    margin-top: 20px;
}

.Liuyingji>ul li {
    flex: 1;
    line-height: 36px;
    border-radius: 12px;
    font-size: 14px;
    color: rgb(89, 89, 89);
    text-align: center;
    cursor: pointer;
}

.Liuyingji>ul li.action {
    background: rgb(251, 128, 61);
    color: #ffffff;
}


.Liuyingji_max {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top50);
}

.Liuyingji_list {
    width: 100%;
    overflow: hidden;
    display: none;
    transition: auto;
}

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

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

.Liuyingji_list ul li {
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.Liuyingji_img {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: var(--top30);
}

.Liuyingji_img img {
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
}

.Liuyingji_list ul li h2 {
    width: 100%;
    font-size: var(--size16);
    color: rgb(89, 89, 89);
    line-height: 1.5;
    margin-top: 10px;
}

.Liuyingji_img svg {
    width: 70px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    cursor: pointer;
    opacity: 0;
}

.Liuyingji_list ul li:hover .Liuyingji_img svg {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}


.Tiaos {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(#872b0c,#611b08);
    padding: var(--top60) var(--top40);
}

.Tiaos .Nowuguan_top h2 {
    color: #ffffff;
}

.Tiaos .Nowuguan_top a {
    margin-left: 0px;
    color: #ffffff;
}


.Tiaos>ul {
    width: 100%;
    display: none;
    align-items: center;
    background: rgb(255, 216, 184);
    padding: 5px;
    border-radius: 15px;
    margin: auto;
    margin-top: 20px;
}

.Tiaos>ul li {
    flex: 1;
    line-height: 36px;
    border-radius: 12px;
    font-size: 14px;
    color: rgb(89, 89, 89);
    text-align: center;
    cursor: pointer;
}

.Tiaos>ul li.action {
    background: rgb(251, 128, 61);
    color: #ffffff;
}


.Tiaos_max {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top50);
}

.Tiaos_list {
    width: 100%;
    overflow: hidden;
    display: none;
    transition: auto;
}

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

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

.Tiaos_list ul li {
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.Tiaos_img {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: var(--top30);
}

.Tiaos_img img {
    width: 100%;
    aspect-ratio: 4 / 2;
    object-fit: cover;
}

.Tiaos_list ul li h2 {
    width: 100%;
    font-size: var(--size16);
    color: rgb(255, 255, 255);
    line-height: 1.5;
    margin-top: 10px;
}

.Tiaos_img svg {
    width: 70px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    cursor: pointer;
    opacity: 0;
}

.Tiaos_list ul li:hover .Tiaos_img svg {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}



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

.Guanyuwome>h2 {
    font-size: var(--size30);
    color: rgb(31, 31, 31);
    margin-top: var(--top20)
}

.Guanyuwome_text {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top20);
    font-size: var(--size14);
    color: rgb(67, 67, 67);
    line-height: 2;
}

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



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

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

.Suoou ul li {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: var(--top30);
}

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

.Suoou_img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.Suoou ul li h2 {
    width: 100%;
    font-size: var(--size16);
    background: rgb(255, 216, 184);
    color: rgb(89, 89, 89);
    line-height: 1.5;
    padding: var(--top20);
    border-radius: 0px 0px var(--top30) var(--top30);
}

.Suoou_img svg {
    width: 70px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    cursor: pointer;
    opacity: 0;
}

.Suoou ul li:hover .Suoou_img svg {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.Guanyuin {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(0.00deg, rgb(67, 67, 67) 0.576%, rgb(89, 89, 89) 99.424%), url(../images/beijing.png) no-repeat center center / auto 80%;
    background-blend-mode: overlay;
}

.Guanyuin_max {
    width: var(--max);
    overflow: hidden;
    margin: var(--top120) auto;
}

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

.Guanyuin_title h2 {
    width: max-content;
    font-size: var(--size50);
    color: rgb(255, 255, 255);
    line-height: 1;
    font-family: 'z';
}
.Guanyuin_title a{
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-size: var(--size20);
    color: rgb(251, 128, 61);
    line-height: 1;
}
.Guanyuin_title a svg{
    width: 15px;
    height: auto;
}
.Guanyuin_text{
    width: 100%;
    overflow: hidden;
    margin-top: var(--top50);
    font-size: var(--size24);
    color: rgb(255, 255, 255);
    line-height: 1.5;
    font-family: 'z';
}

.Top{
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 5px #00000010;
    position: fixed;
    bottom: 10%;
    right: 10px;
    cursor: pointer;
    display: none;
    transition: auto;
}
.Top_max{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}
.Top svg{
    max-width: 50%;
    max-height: 50%;
}

.Fankuai{
    width: var(--max);
    margin: var(--top60) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10vw;
}
.Fankuai_left{
    flex: 1;
}
.Fankuai_left h2{
    font-size: var(--size36);
    color: #1f1f1f;
}
.Fankuai_left form{
    width: 100%;
    margin-top: var(--top50);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: var(--top40);
}
.Fankuai_left form label{
    width: 100%;
}
.Fankuai_left form label p{
    font-size: var(--size18);
    color: #1f1f1f;
}
.Fankuai_left form label p span{
    color: #fb7f3d;
}
.Fankuai_left form label input{
    width: 100%;
    height: 50px;
    border: 1px solid #636363;
    padding: 0 20px;
    margin-top: 10px;
    font-size: var(--size14);
    color: #878686;
    border-radius: 5px;
}

.Fankuai_left form label textarea{
    width: 100%;
    height: 120px;
    border: 1px solid 636363;
    padding: 10px 20px;
    margin-top: 10px;
    font-size: var(--size14);
    color: #878686;
    resize: none;
    font-family: "m";
    border-radius: 5px;
    background: transparent;
}

.Fankuai_right{
    width: 370px;
    overflow: hidden;
}
.Fankuai_right img{
    width: 100%;
    height: auto;
}

.submit{
    width: 80px;
    height: 40px;
    background: #fb7f3d;
    border-radius: 5px;
font-size: var(--size16);
color: #ffffff;
cursor: pointer;
}