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

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

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

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

body {
    font-family: "Regular";
}

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

.Hertre_cen {
    width: var(--max);
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.Banner_title{
    font-size: var(--size24);
    color: #000000;
    margin: var(--size20) auto 0;
    text-align: center;
}

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

}

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

.Nav {
    width: max-content;
}

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

.Nav ul li {
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    text-align: center;
    position: relative;
}

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


.Nav ul li.active {
    color: rgba(158, 32, 36, 1);
    font-family: 'Bold';
}

.Nav ul li:hover {
    color: rgba(158, 32, 36, 1);
}

.block{
    display: none;
}

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

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

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

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

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

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

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

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

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

.menu_button:focus {
    outline: none;
}

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

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

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

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

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

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

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

.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_shijie_text h1 {
    font-size: var(--size40);
    color: rgba(255, 255, 255, 1);
    text-align: center;
    line-height: 1;
}

.Banner_shijie_text p {
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    text-align: center;
    line-height: 1;
    margin-top: var(--top30);
}

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

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

.Shijie ul li {
    width: 100%;
    position: relative;
}

.Shijie ul li::after {
    content: "";
    width: calc(100% - 20px);
    height: 50%;
    border-radius: 8px;
    background: rgba(202, 204, 208, 1);
    position: absolute;
    left: 50%;
    top: -8px;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.Shijie ul li::before {
    content: "";
    width: calc(100% - 40px);
    height: 50%;
    border-radius: 8px;
    background: rgba(227, 229, 231, 1);
    position: absolute;
    left: 50%;
    top: -16px;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.Shijie ul li img {
    width: 100%;
    aspect-ratio: 410 / 240;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 5;
}

.Shijie ul li h2 {
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
    font-family: 'Medium';
    margin-top: 10px;
    padding: 0 8px;
}

.Shijie ul li:hover::after {
    background: rgba(158, 32, 36, 1);
    top: -10px;
}

.Shijie ul li:hover::before {
    background: rgba(158, 32, 36, 0.6);
    top: -20px;
}

.Shijie ul li:hover h2 {
    color: rgba(158, 32, 36, 1);
}

.Mianbao {
    width: 100%;
    overflow: hidden;
    background: rgba(248, 248, 248, 1);
    box-shadow: 0px 2px 4px rgba(213, 213, 213, 0.5);
}

.Mianbao_max {
    width: var(--max);
    margin: var(--top20) auto;
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
}

.Mianbao_max font {
    color: rgba(158, 32, 36, 1);
}

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

.Shijie_show_max {
    width: var(--max);
    margin: var(--top60) auto var(--top40);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top20);
}

.Shijie_show_img {
    width: 33%;
    position: relative;
}

.Shijie_show_img img {
    width: 100%;
    border-radius: 10px;
    position: relative;
    z-index: 5;
}

.Shijie_show_img::after {
    content: "";
    width: calc(100% - 20px);
    height: 50%;
    border-radius: 8px;
    background: rgba(202, 204, 208, 1);
    position: absolute;
    left: 50%;
    top: -8px;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.Shijie_show_img::before {
    content: "";
    width: calc(100% - 40px);
    height: 50%;
    border-radius: 8px;
    background: rgba(227, 229, 231, 1);
    position: absolute;
    left: 50%;
    top: -16px;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.Shijie_show_text {
    flex: 1;
}

.Shijie_show_text h2 {
    font-size: var(--size24);
    color: rgba(0, 0, 0, 1);
    font-family: 'Medium';
}

.Shijie_show_text p {
    font-size: var(--size24);
    color: rgba(0, 0, 0, 1);
    font-family: 'Medium';
}

.Banner_kecheng_text p {
    font-size: var(--size40);
    color: rgba(255, 255, 255, 1);
    line-height: 1.5;
}

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

.Xuqiu_max {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
}

.Xuqiu_item {
    width: 100%;
}

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

.Xuqiu_item h2 span {
    font-family: 'Bold';
}

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

.Xuqiu_item ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.Xuqiu_item ul li svg {
    width: 25px;
    height: auto;
    margin-top: 10px;
}

.Xuqiu_item ul li p {
    flex: 1;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    line-height: 1.8;
}

.Xuqiu_item ul li p span {
    font-family: 'Bold';
}

.Zhuanjia {
    width: 100%;
    overflow: hidden;
    background: rgba(248, 250, 251, 1);
}

.Zhuanjia_max>p {
    font-size: var(--size18);
    color: rgba(224, 212, 202, 1);
    text-align: center;
}

.Zhuanjia_max>h2 {
    text-align: center;
    font-size: var(--size24);
    color: rgba(0, 0, 0, 1);
    margin-top: 10px;
}

.Zhuanjia_max>h2 span {
    font-size: var(--size36);
}

.Zhuanjia_max>h2::after {
    content: "";
    width: 72px;
    height: 2px;
    border-radius: 2px;
    background: rgba(158, 32, 36, 1);
    display: block;
    margin: auto;
    margin-top: var(--top20);
}

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

.Zhuanjia_max ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--top40);
}

.Zhuanjia_item_img {
    width: 48%;
}

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

.Zhuanjia_item_text {
    flex: 1;
}

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

.Zhuanjia_item_text p {
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    margin-top: var(--top30);
    line-height: 2;
}

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

.Kecheng_max>p {
    font-size: var(--size18);
    color: rgba(224, 212, 202, 1);
    text-align: center;
}

.Kecheng_max>h2 {
    text-align: center;
    font-size: var(--size24);
    color: rgba(0, 0, 0, 1);
    margin-top: 10px;
}

.Kecheng_max>h2 span {
    font-size: var(--size36);
}

.Kecheng_max>h2::after {
    content: "";
    width: 72px;
    height: 2px;
    border-radius: 2px;
    background: rgba(158, 32, 36, 1);
    display: block;
    margin: auto;
    margin-top: var(--top20);
}

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

.Kecheng_max ul li {
    width: 100%;
}

.Kecheng_max ul li img {
    width: 100%;
    height: auto;
    display: block;
}

.wap{
    display: none !important;
}

/* .Kecheng_list{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 5px;
}

.Kecheng_list p{
    flex: 1.3;
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    line-height: 2;
    padding: 10px;
    padding-right: 0;
    border-bottom: 12px solid rgba(158, 32, 36, 1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}
.Kecheng_list p:nth-child(2){
    flex: 1.3;
}
.Kecheng_list p:nth-child(3){
    flex: 3;
}
.Kecheng_list p:nth-child(4){
    flex: 4;
} */


.Baoming>p {
    font-size: var(--size18);
    color: rgba(224, 212, 202, 1);
    text-align: center;
}

.Baoming>h2 {
    text-align: center;
    font-size: var(--size24);
    color: rgba(0, 0, 0, 1);
    margin-top: 10px;
}

.Baoming>h2 span {
    font-size: var(--size36);
}

.Baoming>h2::after {
    content: "";
    width: 72px;
    height: 2px;
    border-radius: 2px;
    background: rgba(158, 32, 36, 1);
    display: block;
    margin: auto;
    margin-top: var(--top20);
}

.Baoming_max {
    width: 100%;
    margin-top: var(--top80);
    text-align: center;
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
    line-height: 2;
}

.Baoming_max span {
    width: max-content;
    display: inline-block;
    border-radius: 24px;
    background: rgba(160, 50, 51, 1);
    border: 4px solid rgba(209, 20, 28, 1);
    box-shadow: inset 0px -6px 6px rgba(93, 3, 3, 0.65);
    font-size: var(--size24);
    color: rgba(255, 255, 255, 1);
    padding: 8px 15px;
    line-height: 1;
    font-family: 'Bold';
    margin: 0 15px;
}

.Baoming ul {
    width: 1000px;
    max-width: 100%;
    margin: auto;
    margin-top: var(--top20);
    border: 2px dashed rgba(246, 194, 98, 1);
    border-radius: var(--top20);
    padding: var(--top30);
    display: flex;
    justify-content: space-between;
}

.Baoming ul li {
    flex: 1;
    border-left: 2px dashed rgba(246, 194, 98, 1);
}

.Baoming ul li img {
    width: 240px;
    max-width: 70%;
    height: auto;
    margin: auto;
}

.Baoming ul li h3 {
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
    text-align: center;
    margin-top: var(--top20);
}

.Baoming ul li:nth-child(1) {
    border-left: none;
}

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

.Video ul li {
    width: 100%;
}

.Video ul li video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.Video ul li p {
    font-size: var(--size18);
    color: rgba(0, 0, 0, 1);
    margin-top: 10px;
}


.Tishi>p {
    font-size: var(--size18);
    color: rgba(224, 212, 202, 1);
    text-align: center;
}

.Tishi>h2 {
    text-align: center;
    font-size: var(--size24);
    color: rgba(0, 0, 0, 1);
    margin-top: 10px;
}

.Tishi>h2 span {
    font-size: var(--size36);
}

.Tishi>h2::after {
    content: "";
    width: 72px;
    height: 2px;
    border-radius: 2px;
    background: rgba(158, 32, 36, 1);
    display: block;
    margin: auto;
    margin-top: var(--top20);
}

.Tishi_max {
    width: 100%;
    font-size: var(--size16);
    color: rgba(60, 61, 65, 1);
    text-align: center;
    margin-top: var(--top50);
    line-height: 1.8;
}

.Tishi_max span {
    color: rgba(158, 32, 36, 1);
}

.Tishi_liem {
    width: 100%;
}

.Tishi_liem ul {
    width: 100%;
}

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

.Tishi_liem ul li:nth-child(2n+1) {
    background: url(../images/beijing4.png) no-repeat center center / cover;
}

.Tishi_liem_item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top60);
}

.Tishi_liem ul li:nth-child(2n+1) .Tishi_liem_item {
    flex-direction: row-reverse;
}

.Tishi_liem_img {
    width: 50%;
}

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

.Tishi_liem_text {
    flex: 1;
}

.Tishi_liem_text span {
    display: block;
    font-size: var(--size60);
    color: rgba(158, 32, 36, 1);
    font-family: 'Bold';
    line-height: 1;
}

.Tishi_liem_text h3 {
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    font-family: 'Bold';
    margin-top: 10px;
}

.Tishi_liem_text p {
    font-size: var(--size18);
    color: rgba(38, 50, 56, 1);
    line-height: 2;
    margin-top: var(--top60);
}

.Guanyu>p {
    font-size: var(--size18);
    color: rgba(224, 212, 202, 1);
    text-align: center;
}

.Guanyu>h2 {
    text-align: center;
    font-size: var(--size24);
    color: rgba(0, 0, 0, 1);
    margin-top: 10px;
}

.Guanyu>h2 span {
    font-size: var(--size36);
}

.Guanyu>h2::after {
    content: "";
    width: 72px;
    height: 2px;
    border-radius: 2px;
    background: rgba(158, 32, 36, 1);
    display: block;
    margin: auto;
    margin-top: var(--top20);
}

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

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

.Tishi_text {
    flex: 1;
    font-size: var(--size18);
    color: rgba(38, 50, 56, 1);
    line-height: 2;
}

.Tishi_text span {
    color: rgba(158, 32, 36, 1);
}

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

.Guanyu_liem ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--top40);
}

.Guanyu_liem ul li {
    width: 100%;
    border-radius: 5px;
    background: rgba(158, 32, 36, 1);
    padding: var(--top60);
}

.Guanyu_liem ul li img {
    width: 90px;
    height: 70px;
    object-fit: contain;
}

.Guanyu_liem ul li h2 {
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    margin-top: var(--top30);
}

.Guanyu_liem ul li p {
    font-size: var(--size16);
    color: rgba(232, 245, 233, 1);
    line-height: 1.6;
    margin-top: var(--top30);
}

.JIazhi>p {
    font-size: var(--size18);
    color: rgba(224, 212, 202, 1);
    text-align: center;
}

.JIazhi>h2 {
    text-align: center;
    font-size: var(--size24);
    color: rgba(0, 0, 0, 1);
    margin-top: 10px;
}

.JIazhi>h2 span {
    font-size: var(--size36);
}

.JIazhi>h2::after {
    content: "";
    width: 72px;
    height: 2px;
    border-radius: 2px;
    background: rgba(158, 32, 36, 1);
    display: block;
    margin: auto;
    margin-top: var(--top20);
}

.JIazhi ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--top50);
    gap: 5vw 0px;
}

.JIazhi ul li {
    width: 33%;
    padding: 0 3.5vw;
    position: relative;
}

.JIazhi ul li::after {
    content: "";
    width: 1px;
    height: 60%;
    background: rgba(223, 223, 223, 1);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.JIazhi ul li:nth-child(3n+1)::after {
    display: none;
}

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

.JIazhi ul li h2 {
    text-align: center;
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
    margin-top: var(--top30);
}

.JIazhi ul li p {
    font-size: var(--size14);
    color: rgba(102, 102, 102, 1);
    margin-top: var(--top30);
}

.Liyou{
    margin: var(--top50) auto var(--top60) !important;
}
.Liyou>p {
    text-align: center;
    font-size: var(--size18);
    color: rgba(0, 0, 0, 1);
    line-height: 2;
}

.Liyou>h2 {
    text-align: center;
    font-size: var(--size36);
    color: rgba(158, 32, 36, 1);
    margin-top: var(--top50);
}

.Liyou svg {
    width: 40px;
    height: auto;
    margin: auto;
    display: block;
    margin-top: var(--top30);
}

.Liyou ul {
    width: 100%;
    margin-top: var(--top60);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
}

.Liyou ul li {
    width: 100%;
    border-radius: 4px;
    background: rgba(255, 255, 255, 1);
    border: 2px solid rgba(158, 32, 36, 0.2);
    padding: var(--top30);
}

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

.Liyou ul li span {
    display: block;
    font-size: var(--size36);
    color: rgba(0, 0, 0, 1);
    font-family: 'Bold';
    text-align: center;
    margin-top: var(--top20);
}

.Liyou ul li h2 {
    font-size: var(--size24);
    color: rgba(0, 0, 0, 1);
    text-align: center;
    margin-top: 10px;
    font-family: 'Medium';
}

.Liyou ul li p {
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    line-height: 1.6;
    margin-top: var(--top20);
}

.Hehuiren {
    width: 100%;
    overflow: hidden;
    background: url(../images/beijing5.png) no-repeat center center / cover;
}
.Hehuiren_title{
    width: 100%;
}
.Hehuiren_rirlw{
    width: 100%;
    display: none;
    transition: auto;
}
.Hehuiren_rirlw:nth-child(1){
    display: block;
}
.Hehuiren_rirlw>h2 {
    font-size: var(--size30);
    color: rgba(0, 0, 0, 1);
    font-family: 'Bold';
    text-align: center;
}

.Hehuiren_rirlw>p {
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    line-height: 2;
    text-align: center;
}

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

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

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

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

.Hehuiren_max ul li {
    width: 100%;
}

.Hehuiren_max ul li h2 {
    font-size: var(--size24);
    color: rgba(158, 32, 36, 1);
    font-family: 'Medium';
}

.Hehuiren_max ul li p {
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    margin-top: var(--top20);
    line-height: 2;
}


.Hehuiren_max>a {
    width: max-content;
    display: block;
    margin: auto;
    border-radius: 12px;
    background: rgba(158, 32, 36, 1);
    margin-top: var(--top40);
    line-height: 48px;
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    padding: 0 var(--top60);
}

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


.Hui .Mianbao {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(213, 213, 213, 0.5);
}

.Shenqing {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 20px auto;
}

.Shenqing svg {
    width: var(--top60);
    height: auto;
}

.Shenqing p {
    font-size: var(--size24);
    color: rgba(0, 0, 0, 1);
    line-height: 1;
}

.Shenqing p span {
    color: rgba(158, 32, 36, 1);
    margin-right: 15px;
}

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

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

.Form_jiben {
    width: 100%;
    background: rgba(255, 255, 255, 1);
    border-radius: var(--top20);
    padding: var(--top40);
}

.Form_jiben h2 {
    font-size: var(--size24);
    font-family: 'Medium';
    color: rgba(0, 0, 0, 1);
    border-bottom: 1px solid rgba(216, 216, 216, 1);
    padding-bottom: var(--top40);
}

.Form_jiben_item {
    width: 100%;
    padding: var(--top40) 6vw 0px 6vw;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top30);
}

.Form_input {
    width: 480px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.Form_input label {
    width: 80px;
    font-size: 16px;
    color: rgba(0, 0, 0, 1);
    font-family: 'Medium';
    text-align: justify;
}

.Form_input label span {
    color: rgba(158, 32, 36, 1);
}

.Form_input input {
    flex: 1;
    height: 36px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(216, 216, 216, 1);
    font-size: var(--size14);
    color: rgba(153, 153, 153, 1);
    padding: 0 15px;
}


.Form_duo {
    width: 100%;
    background: rgba(255, 255, 255, 1);
    border-radius: var(--top20);
    padding: var(--top40);
}

.Form_duo h2 {
    font-size: var(--size24);
    font-family: 'Medium';
    color: rgba(0, 0, 0, 1);
    border-bottom: 1px solid rgba(216, 216, 216, 1);
    padding-bottom: var(--top40);
}

.Form_duoxuan {
    width: 100%;
    padding: var(--top40) 6vw 0px 6vw;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top30);
}

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

.Form_duoxuan_item p {
    width: 270px;
    font-size: 16px;
    color: rgba(0, 0, 0, 1);
    font-family: 'Medium';
    text-align: justify;
    line-height: 42px;
}

.Form_duoxuan_item p span {
    color: rgba(158, 32, 36, 1);
}

.Form_duoxuan_checkbox {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--top30);
}

.Form_duoxuan_checkbox label {
    width: 100%;
    border-radius: 2px;
    background: rgba(250, 250, 250, 1);
    padding: 10px;
    border: 1px solid rgba(216, 216, 216, 1);
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    gap: 10px;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.Form_duoxuan_checkbox label input {
    width: 16px;
    height: 16px;
    appearance: none;
    border-radius: 1px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(151, 151, 151, 1);
    position: relative;
    cursor: pointer;
}

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

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

.Form_duoxuan_checkbox>input {
    height: 42px;
    border-radius: 2px;
    background: rgba(250, 250, 250, 1);
    border: 1px solid rgba(216, 216, 216, 1);
    grid-column: 1 / -1;
    color: rgba(153, 153, 153, 1);
    padding: 0 15px;
    font-size: var(--size14);
    color: rgba(153, 153, 153, 1);
}


.Form_yiyuan {
    width: 100%;
    background: rgba(255, 255, 255, 1);
    border-radius: var(--top20);
    padding: var(--top40);
}

.Form_yiyuan h2 {
    font-size: var(--size24);
    font-family: 'Medium';
    color: rgba(0, 0, 0, 1);
    border-bottom: 1px solid rgba(216, 216, 216, 1);
    padding-bottom: var(--top40);
}

.Form_yiyuan_item {
    width: 100%;
    padding: var(--top40) 6vw 0px 6vw;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top30);
}

.Form_yiyuan_item_textarea {
    width: 100%;
}

.Form_yiyuan_item_textarea p {
    font-size: 16px;
    color: rgba(0, 0, 0, 1);
    font-family: 'Medium';
}

.Form_yiyuan_item_textarea p span {
    color: rgba(158, 32, 36, 1);
}

.Form_yiyuan_item_textarea>span {
    font-size: 12px;
    color: rgba(158, 32, 36, 1);
    padding-left: 20px;
}

.Form_yiyuan_item_textarea textarea {
    width: 100%;
    height: 108px;
    border-radius: 2px;
    background: rgba(250, 250, 250, 1);
    border: 1px solid rgba(216, 216, 216, 1);
    font-size: var(--size14);
    color: rgba(153, 153, 153, 1);
    padding: 10px;
    resize: none;
    font-family: 'Regular';
    margin-top: var(--top30);
}

.Form_yiyuan_item button {
    width: 100%;
    height: 48px;
    border-radius: 4px;
    background: rgba(158, 32, 36, 1);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    font-family: 'Medium';
    border: transparent;
    cursor: pointer;
}


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

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

.Footer_left {
    width: max-content;
}

.Footer_left img {
    width: 450px;
    height: auto;
}

.Footer_left p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    margin-top: var(--top30);
}

.Footer_left p svg {
    width: var(--size36);
    height: auto;
    display: block;
}

.Footer_max i {
    width: 1px;
    background: rgba(151, 151, 151, 1);
    display: block;
}

.Footer_max ul {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    gap: 4vw;
}

.Footer_max ul li {
    width: 150px;
}

.Footer_max ul li img {
    width: 100%;
    height: auto;
}

.Footer_max ul li p {
    text-align: center;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    margin-top: var(--top20);
}

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

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

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


.Swiper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: var(--top20);
    margin-top: var(--top80);
    align-items: flex-end;
}

.swiper_slide {
    flex: 1;
    border-radius: var(--top20);
    cursor: pointer;
    transition: auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

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


.swiper_slide.active{
    flex: 1.5;
}

.swiper_slide h3 {
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    font-family: 'Medium';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    padding: var(--top20);
}

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

.Page2 {
    flex: 1;
    position: relative;
    height: 6px;
    background: rgba(158, 32, 36, 0.2);
}

.zhenshangyin-pager-progressbar-progress {
    background: rgba(158, 32, 36, 1);
}

.Page1 {
    width: max-content;
    position: static;
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    font-family: 'Bold';
    transform: translate(0, 0);
}

.Page1 .current {
    color: rgba(158, 32, 36, 1);
    font-size: var(--size36);
}

.Banner_swiper {
    width: 100%;
}

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

.Banner_text_swiper {
    top: 30%;
}

.Banner_text_swiper h2 {
    font-size: var(--size40);
    color: rgba(255, 255, 255, 1);
    font-family: 'Bold';
    margin-bottom: 10px;
}

.Banner_text_swiper p {
    font-size: var(--size30);
    color: rgba(255, 255, 255, 1);
}

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

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

.Jiaban_text {
    flex: 1;
}

.Jiaban_text h2 {
    font-size: var(--size36);
    color: rgba(0, 0, 0, 1);
    font-family: 'Bold';
}

.Jiaban_text p {
    font-size: var(--size20);
    color: rgba(102, 102, 102, 1);
    line-height: 2;
    margin-top: var(--top30);
}

.Jiaban_text p span {
    color: rgba(158, 32, 36, 1);
}

.Jiaban_text a {
    width: max-content;
    display: block;
    border-radius: 12px;
    background: rgba(158, 32, 36, 1);
    margin-top: var(--top40);
    line-height: 36px;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    padding: 0 var(--top60);
    border: 2px solid rgba(158, 32, 36, 1);
}

.Jiaban_text a:hover{
    background: rgba(255, 255, 255, 1);
    color: rgba(158, 32, 36, 1);
    border: 2px solid rgba(158, 32, 36, 1);
}

.Jiaban_img {
    width: 50%;
}

.Jiaban_img img {
    width: 100%;
}

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

.Jiaban ul li {
    width: 100%;
    border-radius: 20px;
    background: rgba(255, 255, 255, 1);
    border: 2px solid rgba(158, 32, 36, 0.2);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    padding: var(--top40);
}

.Jiaban ul li h2{
    text-align: center;
    font-size: var(--size18);
    color: rgba(158, 32, 36, 1);
    font-family: 'Medium';
}
.Jiaban ul li img{
    width: 180px;
    max-width: 80%;
    height: auto;
    margin: var(--top20) auto;
}
.Jiaban ul li a{
    width: 210px;
    max-width: 100%;
    display: block;
    margin: auto;
    border-radius: 12px;
    background: rgba(158, 32, 36, 1);
    margin-top: var(--top40);
    line-height: 36px;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    text-align: center;
    border: 2px solid rgba(158, 32, 36, 1);
}
.Jiaban ul li a:hover{
    background: rgba(255, 255, 255, 1);
    color: rgba(158, 32, 36, 1);
    border: 2px solid rgba(158, 32, 36, 1);
}