: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: "bold";
    src: url("../fonts/bold.otf") format("truetype");
}

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

body {
    font-family: "m";
    padding-top: 100px;
}

.Hertre {
    width: 100%;
    z-index: 999;
    height: 100px;
    position: fixed;
    top: 0;
    box-shadow: 0px 4px 10px 0px rgba(160, 185, 209, 0.25);
    background: rgb(255, 255, 255);
}

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

.Logo {
    width: 150px;
    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;
}

.Nav ul li {
    font-size: var(--size18);
    color: rgb(37, 37, 37);
    text-align: center;
    line-height: 100px;
    position: relative;
    margin-right: 6vw;
}
.Nav ul li a{
    display: block;
}

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


.Nav ul li.Nav_cen>a{
    background: linear-gradient(127.51deg, rgb(252, 73, 130), rgb(81, 86, 254));
    -webkit-background-clip:
        text;
    -webkit-text-fill-color:
        transparent;
    background-clip:
        text;
}

.Nav ul li:hover>a{
    background: linear-gradient(127.51deg, rgb(252, 73, 130), rgb(81, 86, 254));
    -webkit-background-clip:
        text;
    -webkit-text-fill-color:
        transparent;
    background-clip:
        text;
}

.Nav ul li::after {
    content: "";
    width: 0%;
    height: 3px;
    background: linear-gradient(127.51deg, rgb(252, 73, 130), rgb(81, 86, 254));
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
}

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

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

.En {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: var(--size16);
    color: rgb(37, 37, 37);
    position: relative;

}


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

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

.Nav_ulaa a:hover {
    background: linear-gradient(127.51deg, rgb(252, 73, 130), rgb(81, 86, 254));
    -webkit-background-clip:
        text;
    -webkit-text-fill-color:
        transparent;
    background-clip:
        text;
}

.Nav_ul {
    width: max-content;
    display: none;
    background: #ffffff;
    position: absolute;
    overflow: hidden;
    top: 100%;
    transition: auto;
    padding: 20px 30px;
    right: 0;
    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 {
    background: linear-gradient(127.51deg, rgb(252, 73, 130), rgb(81, 86, 254));
    -webkit-background-clip:
        text;
    -webkit-text-fill-color:
        transparent;
    background-clip:
        text;
}

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

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

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

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

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

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

.For_text {
    flex: 1;
}

.For_text h2 {
    font-size: var(--size30);
    color: rgb(59, 56, 48);
    margin-left: 4px;
}

.For_text p {
    font-size: var(--size46);
    font-family: 'bold';
    line-height: 1.2;
    margin-top: var(--top20);
    background: linear-gradient(127.51deg, rgb(252, 73, 130), rgb(81, 86, 254));
    -webkit-background-clip:
        text;
    -webkit-text-fill-color:
        transparent;
    /*width: 450px;*/
    /*margin-left: 50px;*/
}

.For_max img {
    width: 43%;
    height: auto;
}

.Ehy>h2 {
    text-align: center;
    font-size: var(--size36);
    color: rgb(37, 37, 37);
    font-family: 'bold';
}

.Ehy>p {
    text-align: center;
    font-size: 22px;
    color: rgb(37, 37, 37);
    margin-top: var(--top20);
    line-height: 1.7;
}

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

.Ehy ul li {
    width: 100%;
    overflow: hidden;
    box-shadow: 0px 0px 32px 0px rgba(241, 241, 241, 0.4);
    background: rgb(255, 255, 255);
    padding: var(--top30) var(--top20);
}

.Ehy ul li img {
    width: 60px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin: auto;
}

.Ehy ul li h2 {
    font-size: var(--size18);
    color: rgb(59, 56, 48);
    font-family: 'bold';
    text-align: center;
    margin-top: var(--top20);
}

.Ehy ul li p {
    font-size: var(--size14);
    color: rgb(152, 152, 152);
    margin-top: 10px;
    text-align: left;
    line-height: 1.7;
}

#type_filter_container {
    width: 100%;
    box-shadow: 0px 0px 32px 0px rgba(241, 241, 241, 0.4);
    background: rgb(129, 190, 200, 0.15);
    padding: 0 var(--top100);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0px var(--top50);
}

#type_filter_container button {
    width: max-content;
    border: transparent;
    background: transparent;
    font-size: var(--size20);
    color: rgb(102, 102, 102);
    cursor: pointer;
    line-height: 80px;
    position: relative;
}

#type_filter_container button::after {
    content: "";
    width: 0%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(127.51deg, rgb(252, 73, 130) 1.151%, rgb(81, 86, 254) 99.955%);
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s;
}

#type_filter_container button.active {
    background: linear-gradient(127.51deg, rgb(252, 73, 130), rgb(81, 86, 254));
    -webkit-background-clip:
        text;
    -webkit-text-fill-color:
        transparent;
}

#type_filter_container button.active::after {
    width: 100%;
}

#container {
    width: 100%;
    margin-top: var(--top50);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top40);
}

.Min {
    width: 100%;
    box-shadow: 0px 4px 32px 0px rgba(241, 241, 241, 0.25);
    background: rgb(255, 255, 255);
    padding: var(--top20);
    
    position: relative;
    height: 290px;
}

.Min>h2 {
    font-size: var(--size20);
    color: rgb(59, 56, 48);
    font-family: 'bold';
}

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

.Min_text img {
    width: 16px;
    height: auto;
}

.Min_text p {
    font-size: var(--size14);
    color: rgb(152, 152, 152);
}

.Min>p {
    font-size: var(--size14);
    color: rgb(152, 152, 152);
    line-height: 1.6;
    margin-top: var(--top20);
}

.Min a {
    width: max-content;
    font-size: var(--size20);
    background: linear-gradient(127.51deg, rgb(252, 73, 130), rgb(81, 86, 254));
    -webkit-background-clip:
        text;
    -webkit-text-fill-color:
        transparent;
    font-family: 'bold';
    margin-top: var(--top30);
    line-height: 1;
    display: block;
    
    position: absolute;
    left: 30px;
    bottom: 20px;
}

.Min:hover {
    transform: translateY(-3px);
    box-shadow: 0px 4px 32px 5px rgba(241, 241, 241, 1);
}

.Min a:hover {
    letter-spacing: 2px;
}

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

.Show>h2 {
    font-size: var(--size24);
    color: #222222;
}

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

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

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

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

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

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

.page .active,
.page .total {
    font-size: 12px;
    padding: 8px 10px;
    color: #d9d9d9;
    border: 1px solid #d9d9d9;
    line-height: 1;
    background: #fff;
}

.page .active {
    background: #da3536;
    border: 1px solid #da3536;
    color: #fff;
}

.page .active:nth-child(1),
.page .active:nth-child(2),
.page .active:nth-child(3),
.page .total:nth-child(1),
.page .total:nth-child(2),
.page .total:nth-child(3),
.page .total:nth-last-child(2),
.page .active:nth-last-child(2),
.page .active:last-child,
.page .total:last-child {
    color: #d9d9d9;
    border: 1px solid #d9d9d9;
    background: #fff;
}

.Path>h2 {
    text-align: center;
    font-size: var(--size36);
    color: rgb(37, 37, 37);
    font-family: 'bold';
}

.Path>p {
    text-align: center;
    font-size: var(--size18);
    color: rgb(37, 37, 37);
    margin-top: var(--top20);
    line-height: 1.7;
}

.Path_max {
    width: 1020px;
    max-width: 100%;
    margin: auto;
    box-shadow: 0px 4px 32px 0px rgba(241, 241, 241, 0.25);
    background: rgb(129, 190, 200, 0.15);
    margin-top: var(--top40);
    padding: var(--top30);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top40);
}

.Path_item {
    width: 100%;
}

.Path_item>h2 {
    font-size: var(--size24);
    color: rgb(59, 56, 48);
    font-family: 'bold';
}

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

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

.Path_n {
    width: 35px;
    aspect-ratio: 1 / 1;
    background: linear-gradient(127.51deg, rgb(252, 73, 130) 0.653%, rgb(81, 86, 254) 89.469%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-size: var(--size14);
    color: rgb(255, 255, 255);
    font-family: 'bold';
}

.Path_text {
    flex: 1;
}

.Path_text h2 {
    font-size: var(--size20);
    color: rgb(59, 56, 48);
    font-family: 'bold';
}

.Path_text p {
    font-size: var(--size14);
    color: rgb(152, 152, 152);
    margin-top: 10px;
}

.Qfa>h2 {
    text-align: center;
    font-size: var(--size36);
    color: rgb(37, 37, 37);
    font-family: 'bold';
}

.Qfa>p {
    text-align: center;
    font-size: var(--size18);
    color: rgb(37, 37, 37);
    margin-top: var(--top20);
    line-height: 1.7;
}

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

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

.Qfa_n {
    width: 28px;
    aspect-ratio: 1 / 1;
    background: rgb(13, 98, 201);
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-size: var(--size14);
    color: rgb(255, 255, 255);
    font-family: 'bold';
}

.Qfa_text {
    flex: 1;
}

.Qfa_text h2 {
    font-size: var(--size20);
    color: rgb(59, 56, 48);
    font-family: 'bold';
}

.Qfa_text p {
    font-size: var(--size14);
    color: rgb(152, 152, 152);
    margin-top: 10px;
}


.Res>h2 {
    text-align: center;
    font-size: var(--size36);
    color: rgb(37, 37, 37);
    font-family: 'bold';
}

.Res>p {
    text-align: center;
    font-size: var(--size18);
    color: rgb(37, 37, 37);
    margin-top: var(--top20);
    line-height: 1.7;
}

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

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

.Liuyan form label {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border: 1px solid rgb(229, 229, 229);
    border-radius: 8px;
    margin-bottom: var(--top30);
    position: relative;
}

.Liuyan form label:nth-child(1),
.Liuyan form label:nth-child(2),
.Liuyan form label:nth-child(3),
.Liuyan form label:nth-child(4) {
    width: calc(50% - var(--top30));
}

.Liuyan form label i {
    width: 70px;
    height: 70px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Liuyan form label i img {
    max-width: 40%;
    max-height: 40%;
    object-fit: contain;
}

.Liuyan form label input {
    width: calc(100% - 70px);
    height: 70px;
    border: transparent;
    border-left: 1px solid rgb(229, 229, 229);
    font-size: var(--size16);
    color: rgb(173, 173, 173);
    padding: 0 var(--top30);
}

.Liuyan form label input:not(:placeholder-shown),
.Liuyan form label textarea:not(:placeholder-shown){ 
    color: #000;
}
#file {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    cursor: pointer;
}

.Liuyan form label.textarea {
    width: 100%;
}

.Liuyan form label textarea {
    width: calc(100% - 70px);
    height: 310px;
    resize: none;
    border: transparent;
    border-left: 1px solid rgb(229, 229, 229);
    font-size: var(--size16);
    color: rgb(173, 173, 173);
    padding: 25px var(--top30);
    border: none;
    font-family: "siyuanheiti";
}

.submit {
    width: 400px;
    max-width: 100%;
    height: 50px;
    border-radius: 6px;
    box-shadow: 0px 4px 20px 0px rgb(255, 241, 199);
    background: linear-gradient(127.51deg, rgb(252, 73, 130) 1.138%, rgb(81, 86, 254) 99.666%);
    display: block;
    margin: auto;
    margin-top: var(--top60);
    font-size: var(--size16);
    color: #ffffff;
    border: none;
    cursor: pointer;
}

#captcha-image {
    width: 200px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}


.Footer {
    width: 100%;
    overflow: hidden;
    background: rgb(251, 252, 249);
    background-image: url(../images/yuan.png);
    background-size: 780px 780px;
    background-repeat: no-repeat;
    background-position: top -50px center;
}

.Footer_max {
    width: var(--max);

    margin: 1px auto 35px;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Footer_l {
 
    min-width: 0; 
    flex: 0 0 400px;
    overflow: hidden;
    margin-top: 20px;
}

.Footer_logo {
    width: 170px;
    overflow: hidden;
}

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

.Footer_l ul {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: var(--top0);
    /* flex-wrap: nowrap; 强制一行内显示所有 li */
    flex-direction: column;  /* 改为竖向排列*/
}

.Footer_l ul li {
    display: flex;
    align-items: center;
    gap: 10px;

    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
}

.Footer_l ul li img {
    width: 30px;
    flex-shrink: 0; /* 图片不能被压缩 */
}

.Footer_l ul li p {
    flex: 1;  /* 关键：让文字自动占满剩余空间 */
    min-width: 0;  /* 防止文字撑破 */
    font-size: var(--size14);
    color: rgb(37, 37, 37);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}



.Footer_r {
    width: 200px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: flex-end;
}

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

.Footer_top ul {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Footer_top ul li {
    width: max-content;
    font-size: var(--size18);
    color: rgb(37, 37, 37);
    text-align: center;
    margin-top: 15px;
}

.Footer_bott {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
    
}

.Footer_bott p {
    font-size: 16px;
    color: #737984;
    margin-top: 20px;
    margin-right: 6px;
}

.Footer_bott ul {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Footer_bott ul li {
    width: max-content;
    height: 20px;
    position: relative;
    margin-left: var(--top30);
}

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

.foorot_img {
    max-width: 80px; 
    max-height: 80px;
    width: 100%;
    background: #fff;
    padding: 5px;
    position: relative;
    bottom: 50px;  
    left: 30%;
    /*filter: drop-shadow(0px 0px 5px #00000050);*/
    transform: translateX(-50%);
    transform-origin: bottom left;

    margin-top: 30px;
}

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

.foorot_img::after {
    content: "";
    width: 0px;
    height: 0px;
    border-top: 7px solid #ffffff;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
}


/*--------------------艺术字---------*/
.Footer_center {
    display: inline-block;
    text-align: center;
  
    padding: 0;
    margin-top: 52px;
    margin-left: 390px;
    width: 220px;
    height: 40px;
}

.Footer_center p {
    font-size: 34px;
    font-weight: 900;
    font-family: "FZShuTi", "KaiTi", "STXingkai", cursive;
    letter-spacing: 2px;
    background: linear-gradient(127.51deg, rgb(252, 73, 130), rgb(81, 86, 254));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: none;
    text-shadow: none;

}

@keyframes glowText {
  from {
    color: #000;
    text-shadow: none;
  }
  to {
    color: #d64f7f;
    text-shadow: 0 0 8px rgba(214, 79, 127, 0.5);
  }
}

@media (max-width: 768px) {
  .Footer_center p {
    font-size: 20px;
  }
}


/*------------------------------*/

/*.Footer_bott ul li:hover .foorot_img {*/
/*    transform: scale(1) translateX(-50%);*/
/*}*/

.beian {
    width: 100%;
    overflow: hidden;
    background: rgb(251, 252, 249);
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-top: 1px solid rgb(232, 232, 232);
}

.beian p {
    font-size: var(--size14);
    color: rgb(37, 37, 37);
    margin: 0 10px;
}

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

.Fuwu>h2 {
    font-size: var(--size30);
    color: rgb(59, 56, 48);
    text-align: center;
    font-family: 'bold';
}

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

.Fuwu ul li {
    flex: 1 0 30%;
    box-shadow: 0px 0px 32px 0px rgba(241, 241, 241, 0.4);
    background: rgb(255, 255, 255);
}

.Fuwu ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 32px 5px rgb(136, 135, 135, 0.2);
}

.Fuwu_text {
    width: 100%;
    padding: var(--top60);
}

.Fuwu_text_top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: var(--top20);
    height: 100px;
}

.Fuwu_text_top img {
    width: 30px;
    height: auto;
}

.Fuwu_text_top h2 {
    flex: 1;
    font-size: var(--size30);
    color: rgb(59, 56, 48);
    line-height: 1;
}

.Fuwu_text p {
    font-size: var(--size18);
    color: rgb(152, 152, 152);
    line-height: 1.8;
    margin-top: var(--top20);
}

.Fuwu_bott {

    width: 100%;
    background: rgb(129, 190, 200, 0.15);
}

.Fuwu_bott a {
    width: 100%;
    display: block;
    line-height: 70px;
    text-align: center;
    font-size: var(--size16);
    background: linear-gradient(127.51deg, rgb(252, 73, 130), rgb(81, 86, 254));
    -webkit-background-clip:
        text;
    -webkit-text-fill-color:
        transparent;
}



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

.Cre_max {
    width: 1200px;
    max-width: calc(100% - 30px);
    margin: var(--top80) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top60);
}

.Cre_text {
    flex: 1;
}

.Cre_text h2 {
    font-size: var(--size30);
    color: rgb(59, 56, 48);
}

.Cre_text p {
    font-size: 47px;
    font-family: 'bold2';
    line-height: 1.2;
    margin-top: var(--top20);
    background: linear-gradient(127.51deg, rgb(252, 73, 130), rgb(81, 86, 254));
    -webkit-background-clip:
        text;
    -webkit-text-fill-color:
        transparent;
}

.Cre_text span {
    display: block;
    font-size: var(--size18);
    color: rgb(37, 37, 37);
    margin-top: var(--top20);
}

.Cre_max img {
    width: 40%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0px 4px 10px 0px rgba(191, 207, 241, 0.2);
    background: rgb(255, 255, 255);
}

.Cre_max font {
    display: block;
    font-size: var(--size14);
    color: rgb(37, 37, 37);
    margin-top: 10px;
}

.Cre_text a {
    display: block;
    width: max-content;
    margin-top: var(--top60);
    border-radius: 10px;
    font-size: var(--size16);
    color: rgb(255, 255, 255);
    line-height: 50px;
    padding: 0 var(--top40);
    background: linear-gradient(-26.43deg, rgb(252, 80, 70) -1.923%, rgb(164, 4, 244) 89.313%);
}

.Cre_text a:hover {
    transform: translateY(-5px);
}

.Hezuo h2 {
    width: max-content;
    text-align: center;
    margin: auto;
    position: relative;
    font-size: var(--size36);
    color: rgb(37, 37, 37);
    font-family: 'bold2';
}

.Hezuo h2::after {
    content: "";
    width: 80%;
    height: 80%;
    filter: blur(60px);
    border-radius: 10px;
    background: linear-gradient(-26.43deg, rgb(252, 80, 70) -5.495%, rgb(164, 4, 244) 90.857%);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: -1;
}

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

.Hezuo_img {
    width: 100%;
}

.scroll_item {
    width: 180px;
    aspect-ratio: 5 / 3;
    border: 1px solid rgb(230, 234, 244);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll_item img {
    max-width: 70%;
    max-height: 60%;
    object-fit: contain;
}

.All {
    width: var(--max);
    margin: auto;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.All_max{
    width: calc(100% - 50px);
    margin: var(--top80) auto;
    
    display: flex;
    flex-direction: column; 
    align-items: center; 
    
}

.All_max>h2 {
    text-align: center;
    font-size: var(--size36);
    color: rgb(255, 255, 255);
    font-family: 'bold';
}

.All_max>p {
    font-size: var(--size18);
    color: rgb(255, 255, 255);
    text-align: left;
    margin-top: var(--top20);
    line-height: 1.6;
    height: 18vh;
    
    /* 让文字离左侧有一点间距*/
    padding-left: 20px;
  
}



.All_p {
  opacity: 0;
  transform: translateX(-50px);
  transition: none; /* 禁用原始动画以靠类控制 */
  

}

.All_p.slide-in {
  animation: slideInLeft 0.4s ease forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}



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

.All_max ul li {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.21);
    padding: var(--top30) 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    
    flex-direction: column;         /* 直堆叠 img 和 p */
    justify-content: center;        /* 垂直方向居中内容 */
    align-items: center;            /* 水平方向居中内容 */
}
.All_max ul li.active{
    background: rgba(129, 190, 200, 1);
}
.All_max ul li img {
    width: 80px;
    height: auto;
    display: none;
}

.All_max ul li p {
    flex: 1;
    font-size: var(--size18);
    color: rgb(255, 255, 255);
    font-family: 'bold';
    
    text-align: center;        
    margin: 0;
    
    
}

.All_max ul li.active p{
    color: #fff;
}

.Fxe>h2 {
    text-align: center;
    font-size: var(--size36);
    color: rgb(37, 37, 37);
    font-family: 'bold';
}

.Fxe>p {
    font-size: var(--size18);
    color: rgb(37, 37, 37);
    margin-top: var(--top20);
    line-height: 1.6;
}

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

.Fxe ul li {
    width: 100%;
    box-shadow: 0px 4px 20px 0px rgba(227, 227, 229, 0.3);
    background: rgb(255, 255, 255);
    padding: var(--top50) var(--top20);
}

.Fxe ul li img {
    width: 40px;
    height: auto;
}

.Fxe ul li h2 {
    font-size: var(--size24);
    color: rgb(37, 37, 37);
    font-family: 'bold';
    margin-top: var(--top40);
}

.Fxe ul li p {
    font-size: var(--size18);
    color: rgb(37, 37, 37);
    line-height: 1.6;
    margin-top: var(--top20);
}

.Worke {
    border-radius: 20px;
    box-shadow: 0px 4px 20px 0px rgba(227, 227, 229, 0.3);
    background: linear-gradient(127.51deg, rgb(252, 73, 130) 1.124%, rgb(81, 86, 254) 99.371%);
    padding: var(--top40);
}

.Worke>h2 {
    text-align: center;
    font-size: var(--size36);
    color: rgb(255, 255, 255);
    font-family: 'bold';
}

.Worke>p {
    font-size: var(--size18);
    color: rgb(255, 255, 255);
    text-align: center;
    margin-top: var(--top20);
    line-height: 1.6;
}

.Worke_a {
    width: max-content;
    display: block;
    line-height: 50px;
    margin: auto;
    margin-top: var(--top40);
    padding: 0 20px;
    font-size: var(--size20);
    background: rgb(255, 255, 255);
    border-radius: 10px;
}

.Worke_a a {
    background: linear-gradient(127.51deg, rgb(252, 73, 130), rgb(81, 86, 254));
    -webkit-background-clip:
        text;
    -webkit-text-fill-color:
        transparent;
}

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

.Data::after {
    content: "";
    width: 50%;
    height: 130%;
    position: absolute;
    top: 10%;
    left: -10%;
    background: url(../images/beijing6.png) no-repeat center center / 100% 100%;
}

.Data_max h2 {
    font-size: var(--size50);
    text-align: center;
    font-family: 'bold';
    background: linear-gradient(127.51deg, rgb(252, 73, 130), rgb(81, 86, 254));
    -webkit-background-clip:
        text;
    -webkit-text-fill-color:
        transparent;
}

.Data_max p {
    font-size: var(--size16);
    color: rgb(37, 37, 37);
    text-align: center;
    margin-top: var(--top20);
}

.Wh {
    width: 100%;
    overflow: hidden;
    background: rgb(251, 252, 249);
}

.Wh_max>h2 {
    font-size: var(--size36);
    color: rgb(37, 37, 37);
    font-family: 'bold';
    text-align: center;
}

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

.Wh_max ul li {
    width: 100%;
    box-shadow: 0px 4px 20px 0px rgba(227, 227, 229, 0.3);
    background: rgb(255, 255, 255);
    padding: var(--top30) var(--top20);
}
.Wh_max ul li h2{
    font-size: var(--size24);
    color: rgb(37, 37, 37);
    font-family: 'bold';
}
.Wh_max ul li p{
    font-size: var(--size16);
    color: rgb(37, 37, 37);
    line-height: 1.6;
    margin-top: var(--top20);
}
.Sec{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.Sec img{
    width: 50%;
    height: auto;
}
.Sec_text{
    flex: 1;
}
.Sec_text h2{
    font-size: var(--size36);
    color: rgb(37, 37, 37);
    font-family: 'bold';
}
.Sec_text h2 span{
    background: linear-gradient(127.51deg, rgb(252, 73, 130), rgb(81, 86, 254));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 10px;
}
.Sec_text p{
    font-size: var(--size16);
    color: rgb(37, 37, 37);
    line-height: 1.6;
    margin-top: var(--top20);
}


.Coo>h2 {
    text-align: center;
    font-size: var(--size36);
    color: rgb(37, 37, 37);
    font-family: 'bold';
}

.Coo ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--top30);
    margin-top: var(--top60);
}

.Coo ul li {
    width: 100%;
    aspect-ratio: 260 / 120;
    box-sizing: border-box;
    border: 1px solid rgba(233, 233, 233, 1);
    box-shadow: 0px 10px 10px 0px rgba(201, 201, 201, 0.16);
    background: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.Coo ul li img {
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
}


.New>h2 {
    text-align: center;
    font-size: var(--size36);
    color: rgb(37, 37, 37);
    font-family: 'bold';
}

.New ul li img{
    width: 100%;
    aspect-ratio: 440 / 320;
    height:250px;
    object-fit: cover;
}

/*----------------新闻 轮播-------------------------*/

#About3 {
  position: relative;
  overflow: hidden;
}

#About3 ul {
   margin-top: var(--top60);
    
  display: flex;
  transition: transform 0.3s ease;
  padding: 0;

}

#About3 ul li {
    
  width: 465px;
  box-shadow: 0px 2px 30px 0px rgba(237, 241, 246, 1);
  background: rgba(255, 255, 255, 1);
  list-style: none;

  box-sizing: border-box;

}

.New_text {
  background-color: #f9f9f9;

  border-radius: 6px;
  height: 240px;
}

/* 控制按钮样式 */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
}

.slider-btn.left {
  left: 0;
}

.slider-btn.right {
  right: 0;
}






/*-----------------------------------------*/
.New_text{
    width: 100%;
    padding: var(--top30);
}
.New_text span{
    width: max-content;
    display: block;
    background: linear-gradient(127.51deg, rgba(252, 73, 130, 1),rgba(81, 86, 254, 1) 100%);
    font-size: var(--size14);
    color: rgba(255, 255, 255, 1);
    line-height: 34px;
    padding: 0 20px;
}
.New_text h2{
    font-size: var(--size24);
    color: rgba(32, 32, 32, 1);
    margin-top: 10px;
    height: 70px;
}
.New_text p{
    font-size: var(--size16);
    color: rgba(98, 98, 98, 1);
    line-height: 1.5;
    margin-top: 10px;
}

.Cor>h2 {
    text-align: center;
    font-size: var(--size36);
    color: rgb(37, 37, 37);
    font-family: 'bold';
}

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

.Cor ul li {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 6px 14px 0px rgba(149, 149, 149, 0.16);
    background: rgba(255, 255, 255, 1);
}
.Cor_top{
    width: 100%;
    padding: var(--top40);
    min-height: 210px;
    position: relative;
    background: url(../images/000.png) no-repeat right center / 50% 100%;
}
.Cor ul li:hover{
background: linear-gradient(127.51deg, rgba(252, 73, 130, 1),rgba(81, 86, 254, 1) 100%);
}
.Cor ul li:hover .Cor_top{
    background: url(../images/111.png) no-repeat right center / 50% 100%;
}
.Cor h2{
    text-align: center;
    font-size: var(--size36);
    color: rgba(51, 51, 51, 1);
    font-family: 'bold';
}
.Cor_top p{
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    line-height: 1.5;
    margin-top: var(--top20);
    text-align: center;
}
.Cor ul li:hover .Cor_top h2,
.Cor ul li:hover .Cor_top p{
    color: #fff;
}
.Cor_bott{
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px 0px 10px 10px;

box-shadow: 0px 6px 14px 0px rgba(149, 149, 149, 0.16);
background: rgba(255, 255, 255, 1);
}
.Cor_bott img{
    width: 45px;
    height: 45px;
    object-fit: contain;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.Cor ul li:hover .Cor_bott img{
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

/*------------------------- 新闻详情页 ----------------*/

/*-----------------------------------------------------*/
