:root {
    --max: calc(100% - 30px);
    --size14: 14px;
    --size16: 16px;
    --size18: 18px;
    --size20: 20px;
    --size24: 24px;
    --size30: 30px;
    --top20: 20px;
    --top30: 30px;
    --top60: 60px;
    --top100: 100px;
}

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

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

body {
    font-family: "siyuanheiti";
}

.hertre {
    width: 100%;
    z-index: 999;
    height: 120px;
    position: fixed;
    background: rgb(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    top: 0;
}

.fixed {
    background: linear-gradient(to right, rgba(188, 218, 255, 0.3), rgb(255, 255, 255, 0.9));
    backdrop-filter: blur(10px);
}

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

.logo {
    width: 160px;
    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;
}

.nav ul li {
    font-size: var(--size18);
    color: rgba(119, 119, 119, 1);
    text-align: center;
    position: relative;
    margin-left: 2vw;
}

.nav ul li:nth-child(1) {
    margin-left: 0px;
}

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


.nav ul li.nav_cen {
    color: rgba(51, 51, 51, 1)
}

.nav ul li:hover {
    color: rgba(51, 51, 51, 1);
}

/* .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%;
} */


.an {
    width: 60px;
    height: 60px;
    display: none;
    position: absolute;
    right: 0%;
    top: 0;
    transition: all 0.5s;
    z-index: 99;
}


.container {
    cursor: pointer;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.5s;
}

svg {
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

path {
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dasharray 500ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

path:nth-child(1) {
    transform-origin: 36% 40%;
}

path:nth-child(2) {
    stroke-dasharray: 29 299;
}

path:nth-child(3) {
    transform-origin: 35% 63%;
}

path:nth-child(4) {
    stroke-dasharray: 29 299;
}

path:nth-child(5) {
    transform-origin: 61% 52%;
}

path:nth-child(6) {
    transform-origin: 62% 52%;
}

.active path:nth-child(1) {
    transform: translateX(9px) translateY(1px) rotate(45deg);
}

.active path:nth-child(2) {
    stroke-dasharray: 225 299;
    stroke-dashoffset: -72px;
}

.active path:nth-child(3) {
    transform: translateX(9px) translateY(1px) rotate(-45deg);
}

.active path:nth-child(4) {
    stroke-dasharray: 225 299;
    stroke-dashoffset: -72px;
}

.active path:nth-child(5) {
    transform: translateX(9px) translateY(1px) rotate(-45deg);
}

.active path:nth-child(6) {
    transform: translateX(9px) translateY(1px) rotate(45deg);
}

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

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



.form {
    width: 1200px;
    max-width: var(--max);
    overflow: hidden;
    margin: var(--top100) auto;
}

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

.form form input {
    display: block;
    width: calc(50% - 20px);
    height: 58px;
    border: 2px solid;
    border-image: linear-gradient(159deg, rgba(171, 220, 255, 1), rgba(102, 171, 255, 1)) 2 2;
    font-size: var(--size16);
    color: rgba(170, 170, 170, 1);
    padding: 0 var(--top30);
    margin-bottom: var(--top30);
}

.form form textarea {
    display: block;
    width: 100%;
    height: 130px;
    resize: none;
    border: 2px solid;
    border-image: linear-gradient(159deg, rgba(171, 220, 255, 1), rgba(102, 171, 255, 1)) 2 2;
    font-size: var(--size16);
    color: rgba(170, 170, 170, 1);
    padding: 20px var(--top30);
    font-family: "siyuanheiti";
}

.form form input.submit {
    width: 100%;
    margin-top: var(--top30);
    background: linear-gradient(159deg, rgba(171, 220, 255, 1), rgba(102, 171, 255, 1));
    color: #ffffff;
    cursor: pointer;
    margin-bottom: 0px;
}

.layui-layer {
    transition: auto;
}

.form ul {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top100);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.form ul li {
    width: max-content;
    overflow: hidden;
}

.form ul li img {
    width: 50px;
    height: auto;
    margin: auto;
}

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

.zhaopin {
    width: 100%;
    overflow: hidden;
    background: rgba(239, 243, 251, 1);
}

.zhaopin ul {
    width: 1620px;
    max-width: var(--max);
    overflow: hidden;
    margin: var(--top100) auto;
}

.zhaopin ul li {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #FFFFFF;
    border-radius: 20px;
    margin-top: 10px;
}

.zhaopin_list {
    width: 15%;
    overflow: hidden;
    border-left: 4px solid rgba(239, 243, 251, 1);
    padding: var(--top30) var(--top20);
    font-size: var(--size14);
    color: rgba(51, 51, 51, 1);
    line-height: 1.5;
}

.bumen {
    border: none;
}

.daiyu {
    width: 25%;
}

.neirong {
    width: 30%;
}

.bumen h2 {
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    font-family: 'bold';
}

.bumen p {
    margin-top: var(--top20);
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
}

.jianli {
    display: flex;
    justify-content: center;
    align-items: center;
}

.jianli a {
    width: 190px;
    max-width: 90%;
    display: block;
    line-height: 50px;
    background: #45E071;
    border-radius: 30px;
    text-align: center;
    margin: auto;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
}

.jianli a:hover {
    transform: scale(1.1);
}

.zhaopin ul li:nth-child(1) {
    background: transparent;
    margin-bottom: var(--top20);
    margin-top: 0px;
}

.zhaopin ul li:nth-child(1) .zhaopin_list {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    text-align: center;
    background: transparent;
    padding: 0;
}

.jianjie {
    width: 100%;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.jianjie_max {
    width: 1600px;
    max-width: var(--max);
    overflow: hidden;
    margin: 8vw auto 15vw;
}

.jianjie_max h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(255, 255, 255, 1);
    font-family: 'bold';
}

.jianjie_max p {
    text-align: center;
    font-size: var(--size20);
    color: rgba(170, 170, 170, 1);
    margin-top: 10px;
}

.jianjie_max i {
    width: 84px;
    height: 48px;
    border: 1px solid #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: var(--top30);
    cursor: pointer;
}

.jianjie_max i:hover {
    border-radius: 48px;
}

.jianjie_max i::before {
    color: #ffffff;
    font-size: var(--size30);
    border-radius: 30px;
}

.yunketang .jianjie_max {
    margin: 8.5vw auto 25vw;
}

.yunketang .jianjie_max h2,
.yunketang .jianjie_max p {
    color: #000000;
}

.yunketang .jianjie_max i {
    border: 1px solid #000000;
}

.yunketang .jianjie_max i::before {
    color: #000000;
}

.video {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
    left: 0%;
    z-index: 9999;
    background: rgb(0, 0, 0, 0.8);
    display: none;
}

.video i {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    cursor: pointer;
}

.video i::before {
    color: #ffffff;
    font-size: 40px;
}

.video video {
    width: 1000px;
    max-width: var(--max);
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sdt {
    width: 1600px;
    max-width: var(--max);
    margin: var(--top100) auto;
}

.gg {
    width: 100%;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    position: relative
}

.gg h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    position: relative;
    font-family: 'bold';
}

.gg p {
    width: 85%;
    margin: auto;
    text-align: center;
    font-size: var(--size20);
    color: rgba(170, 170, 170, 1);
    line-height: 1.5;
    margin-top: 10px;
}

.gengduoi {
    width: max-content;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--size16);
    color: rgba(33, 122, 255, 1);
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.gengduoi i {
    font-size: 12px;
    margin-left: 10px;
}

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

.sdt ul li {
    width: 100%;
    overflow: hidden;
    box-shadow: 0px 2px 22px 0px rgba(0, 0, 0, 0.12);
}

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

.sdt_text {
    width: 100%;
    overflow: hidden;
    padding: 15px;
}

.sdt_text h2 {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    font-family: 'bold';
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.sdt_text p {
    font-size: var(--size16);
    color: rgba(119, 119, 119, 1);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 10px auto;
}

.sdt_text span {
    display: block;
    font-size: var(--size16);
    color: rgba(33, 122, 255, 1);
}

.fc {
    width: calc(100% - 20px);
    overflow: hidden;
    margin: var(--top100) auto;
}

.fc .gg {
    width: 1600px;
    max-width: var(--max);
    margin: auto;
}

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

.fc_swiper .swiper-slide {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

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

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

.fc_swiper .swiper-scrollbar {
    width: 920px !important;
    max-width: var(--max) !important;
    height: 10px !important;
    background: #DEDEDE;
    border-radius: 5px;
    position: static !important;;
    inset: 0;
    margin: auto;
    margin-top: var(--top20);
}

.fc_swiper .swiper-scrollbar .swiper-scrollbar-drag {
    height: 10px;
    background: #3E3E3E;
    border-radius: 5px;
}



.fc>a {
    width: 600px;
    max-width: var(--max);
    line-height: 3;
    background: rgba(33, 122, 255, 1);
    border-radius: 64px;
    font-size: var(--size24);
    color: #ffffff;
    text-align: center;
    display: block;
    margin: auto;
    margin-top: var(--top60);
}

.fual {
    width: 1440px;
    max-width: var(--max);
    margin: var(--top100) auto;
}

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

.fual ul li {
    width: 100%;
    overflow: hidden;
    box-shadow: 0px 2px 22px 0px rgba(0, 0, 0, 0.12);
}

.fual_icon {
    width: 100%;
    overflow: hidden;
    padding: var(--top30);
    padding-top: var(--top60);
    position: relative;
}

.fual_icon_lo {
    padding: var(--top30);
}

.fual_icon .gengduoi {
    right: var(--top20);
    top: var(--top20);
    transform: translateY(0%);
}

.fual_icon img {
    width: 50px;
    height: auto;
    margin: auto;
}

.fual_icon h2 {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    margin-top: var(--top30);
    text-align: center;
    font-family: 'bold';
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.fual_icon p {
    font-size: var(--size16);
    color: rgba(170, 170, 170, 1);
    line-height: 1.5;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.fual ul li a>img,
.fual ul li>img {
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
}

.fual>a {
    width: 150px;
    line-height: 2.5;
    border: 1px solid #666666;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    display: block;
    margin: auto;
    margin-top: var(--top30);
    text-align: center;
}

.fual>a:hover {
    border-radius: 30px;
}

.yjydt {
    width: 1600px;
    max-width: var(--max);
    margin: var(--top100) auto;
}

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

.yjydt ul li {
    width: 100%;
    overflow: hidden;
    background: rgba(247, 247, 249, 1);
}

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

.yjydt_text {
    width: 100%;
    overflow: hidden;
    padding: var(--top30);
}

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

.yjydt_l {
    width: 90px;
    height: 90px;
    background: #FFFFFF;
    border: 1px solid #E2E3E8;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.yjydt_l h2 {
    font-size: 40px;
    color: rgba(0, 132, 255, 1);
    line-height: 1;
    font-family: 'bold';
    text-align: center;
}

.yjydt_l p {
    font-size: 14px;
    color: rgba(153, 153, 153, 1);
    line-height: 1;
    text-align: center;
    margin-top: 10px;
}

.yjydt_r {
    width: calc(100% - 110px);
}

.yjydt_r h2 {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    line-height: 1.2;
    font-family: 'bold';
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.yjydt_r p {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: 10px;
    display: none;
}


.yjydt_text>p {
    font-size: var(--size16);
    color: rgba(119, 119, 119, 1);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    border-top: 1px solid #CACACA;
    padding-top: 10px;
    margin-top: var(--top20);
}

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

.fujs .gg {
    width: 1600px;
    max-width: var(--max);
}

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

.fujs_swiper .swiper-wrapper {
    padding-top: 30px;
}

.fujs_swiper .swiper-slide {
    width: 100%;
    overflow: hidden;
    box-shadow: 0px 2px 22px 0px rgba(0, 0, 0, 0.12);
}

.fujs_swiper .swiper-slide>img {
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
}


.fujs_swiper .swiper-scrollbar {
    width: 920px !important;
    max-width: var(--max) !important;
    height: 10px !important;
    background: #DEDEDE;
    border-radius: 5px;
    position: static !important;;
    inset: 0;
    margin: auto;
    margin-top: var(--top20);
}

.fujs_swiper .swiper-scrollbar .swiper-scrollbar-drag {
    height: 10px;
    background: #3E3E3E;
    border-radius: 5px;
}

.fujs>a {
    width: 150px;
    line-height: 2.5;
    border: 1px solid #666666;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    display: block;
    margin: auto;
    margin-top: var(--top30);
    text-align: center;
}

.fujs>a:hover {
    border-radius: 30px;
}

.kczs>a {
    width: 170px;
    line-height: 2.5;
    background: transparent;
    border: 1px solid #666666;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    display: block;
    margin: auto;
    margin-top: var(--top30);
    border-radius: 0px;
    text-align: center;
}

.kczs>a:hover {
    border-radius: 30px;
}

.yudt {
    width: 1600px;
    max-width: var(--max);
    margin: var(--top100) auto;
}

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

.yudt_q ul {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #979797;
    padding-bottom: var(--top20);
}

.yudt_q ul li {
    width: max-content;
    font-size: var(--size20);
    color: rgba(170, 170, 170, 1);
    cursor: pointer;
}

.yudt_q ul li.yudt_nav {
    color: rgba(51, 51, 51, 1);
}

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

.yudt_list {
    width: 100%;
    transition: auto;
}

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

.yudt_list ul li {
    width: 100%;
    overflow: hidden;
    background: rgba(247, 247, 253, 1);
    padding: var(--top30);
    box-shadow: 3px 2px 10px -3px rgba(0, 0, 0, 0.09);
    border-radius: 8px;
}

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

.yudt_list ul li img {
    width: 180px;
    aspect-ratio: 4 / 4;
    object-fit: cover;
}

.yudt_r {
    width: calc(100% - 200px);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.yudt_r h2 {
    width: 100%;
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    font-family: 'bold';
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.yudt_r p {
     width: 100%;
    font-size: var(--size14);
    color: rgba(102, 102, 102, 1);
    line-height: 1.5;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.yudt_r span {
     width: 100%;
    display: block;
    font-size: var(--size14);
    color: rgba(33, 122, 255, 1);
    margin-top: 10px;
}

.yudt_list>a {
    width: 150px;
    line-height: 2.5;
    border: 1px solid #666666;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    display: block;
    margin: auto;
    margin-top: var(--top30);
    text-align: center;
}

.yudt_list>a:hover {
    border-radius: 30px;
}

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

.redian_l {
    width: calc(50% - 15px);
    overflow: hidden;
}

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

.redian_swiper {
    height: 100%;
}

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


.redian_swiper .swiper-scrollbar {
    width: 180px !important;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    bottom: 15px !important;
    left: auto !important;
    right: 15px !important;
}

.redian_swiper .swiper-scrollbar .swiper-scrollbar-drag {
    background: #FFFFFF;
}

.swiper-scrollbar {
    width: 180px !important;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    bottom: 15px !important;
    left: auto !important;
    right: 15px !important;
}
.swiper-scrollbar .swiper-scrollbar-drag {
    background: #FFFFFF;
}


.redian_r {
    width: calc(50% - 15px);
    overflow: hidden;
    padding: var(--top20) 0;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.redian_r .gg h2 {
    text-align: left;
}

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

.redian_r ul li {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #E9E9E9;
    padding: 15px 0;
}

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

.redian_r ul li a {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.red_l {
    width: 55px;
    overflow: hidden;
}

.red_l h2 {
    font-size: 44px;
    color: rgba(0, 132, 255, 1);
    line-height: 1;
    text-align: center;
    font-family: 'bold';
}

.red_l p {
    font-size: 14px;
    color: rgba(153, 153, 153, 1);
    line-height: 1;
    margin-top: 8px;
}

.red_r {
    width: calc(100% - 70px);
    overflow: hidden;
}

.red_r h2 {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    font-family: 'bold';
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.red_r p {
    font-size: var(--size14);
    color: rgba(119, 119, 119, 1);
    line-height: 1.5;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

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

.fangan .gg {
    width: 1600px;
    max-width: var(--max);
    margin: auto;
    margin-bottom: var(--top30);
}

.fangan ul {
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0px;
}

.fangan ul:nth-child(3) {
    grid-template-columns: repeat(2, 1fr);
}

.fangan ul li {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.fangan ul li img {
    width: 100%;
    object-fit: cover;
    height: 350px;
}


.fangan_text {
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: var(--top20);
}

.fangan_text h2 {
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    line-height: 1;
    text-align: center;
}

.fangan_text p {
    width: 100%;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    max-height: 0;
    opacity: 0;
}

.fangan_text a {
    width: 150px;
    line-height: 2.5;
    border: 1px solid #ffffff;
    font-size: var(--size16);
    color: #FFFFFF;
    display: block;
    margin: auto;
    text-align: center;
    max-height: 0;
    opacity: 0;
}

.fangan_text a:hover {
    border-radius: 30px;
}

.fangan ul li:hover .fangan_text p,
.fangan ul li:hover .fangan_text a {
    max-height: 50px;
    opacity: 1;
    margin-top: var(--top20);
}

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

.vhengguo .gg {
    width: 1600px;
    max-width: var(--max);
    margin: auto;
}

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

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

.show {
    width: calc(100% - 200px);

    margin: var(--top60) auto;
    padding-top: 100px;
}

.miaobao {
    width: 100%;
    overflow: hidden;
    font-size: var(--size18);
    color: rgba(119, 119, 119, 1);
    line-height: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.miaobao p:nth-child(2) {
    border-left: 2px solid rgba(119, 119, 119, 1);
    margin-left: var(--top20);
    padding-left: var(--top20);
}

.show_max {
    width: 100%;

    margin-top: var(--top30);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.show_l {
    width: 240px;
    

}

.show_l ul {
    width: 100%;
    max-height: calc(100vh - 200px);
    overflow: auto;

}

.show_l ul li {
    width: 100%;
    line-height: 1.2;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    padding: var(--top20);
    margin-top: 10px;
    font-size: var(--size16);
    color: rgba(170, 170, 170, 1);
}

.show_l ul li:nth-child(1) {
    margin-top: 0px;
}

.show_l ul li.show_nav {
    box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.2);
    color: rgba(51, 51, 51, 1);
    font-family: 'bold';
}

.show_r {
    width: calc(100% - 280px);
    overflow: hidden;
}

.show_r>h2 {
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    font-family: "bold";
    text-align: center
}

.show_r>p {
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    margin-top: 5px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.show_r>p span{
    margin: 0 10px;
}
.show_text {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top20);
    font-size: var(--size14);
    color: rgba(51, 51, 51, 1);
    line-height: 2;
}

.show_text img {
    max-width: 100%;
    height: auto;
    margin: var(--top20) auto;
}

.cg {
    width: 100%;
    overflow: hidden;
    background-image: url(../images/beij.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.cg ul {
    width: 1600px;
    max-width: var(--max);
    margin: var(--top100) auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: var(--top60);
    padding-top: 100px;
}

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

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

.cg ul li h2 {
    text-align: center;
    font-size: var(--size18);
    color: #000000;
    margin-top: 15px;
}

.cg ul li:hover {
    transform: scale(1.2);
}

.lodl {
    padding-top: 100px;
}

.tupian {
    width: 1600px;
    max-width: var(--max);
    margin: var(--top100) auto;
}

.tupian ul {
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: var(--top20);
    margin-top: var(--top30);
}

.tupian ul li {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.tupian ul li img {
    width: 100%;
    object-fit: cover;
}

.fc_img:hover .fangan_text p,
.fc_img:hover .fangan_text a,
.tupian ul li:hover .fangan_text p,
.tupian ul li:hover .fangan_text a {
    max-height: 50px;
    opacity: 1;
    margin-top: var(--top20);
}
.page{
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--top60);
  }
  .page .active,
  .page .total{
    display: inline-block;
    font-size: 12px;
    padding: 6px 8px;
    color: #000000;
    border: 1px solid #d9d9d9;
    margin: 0px 3px;
    line-height: 1;
  }
  .page .active{
    background: rgba(33, 122, 255, 1);
    border: 1px solid rgba(33, 122, 255, 1);
    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: #000000;
    border: 1px solid #d9d9d9;
    background: #fff;
  }
.wenan{
    width: 100%;
    overflow: hidden;
    position: relative;
}
.wenan img{
    width: 100%;
    height: auto;
}
.banner_text {
    width: 1440px;
    max-width: var(--max);
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 50px;
}
.banner_text h1{
    width: 100%;
    max-width: 100%;
    font-size: 3vw;
    color: rgba(255, 255, 255, 1);
    line-height: 1;
    font-family: 'bold';
    text-shadow: 3px 3px 2px #000000;
}
.banner_text p{
     width: 50%;
    max-width: 100%;
    font-size: 1.5vw;
    color: #ffffff;
    line-height: 1.2;
    margin-top: var(--top30);   
    text-shadow: 3px 3px 2px #000000;
}
.banner_text p::after{
    content: "";
    width: 50%;
    height: 1px;
    background: #ffffff;
    display: block;
    margin-top: var(--top30);
}
.gs{
    width: 100%;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.gs_max{
    width: 1600px;
    max-width: var(--max);
    background: rgba(255,255,255,0.11);
    backdrop-filter: blur(43px);
    margin: var(--top100) auto;
    float: right;
    padding: var(--top30) var(--top60);
    padding-right: 10%;
}
.gs_max>h2{
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    line-height: 1;
}
.gs_max>span{
    display: block;
    font-size: 40px;
    color: rgba(53, 55, 56, 0.3);
    font-family: 'bold';
    line-height: 1;
    text-transform: uppercase;
    margin-top: 10px;
}
.gs_max>p{
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    line-height: 1.5;
    margin-top: var(--top20);
}

.gs_max ul{
    width: 100%;
    overflow: hidden;
    margin-top: var(--top30);
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 5vw;
}
.gs_max ul li{
    width: 100%;
    overflow: hidden;
}
.gs_max ul li h2{
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    font-family: 'bold';
}
.gs_max ul li p{
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    line-height: 1.5;
    margin-top: var(--top20);
}
.gs_max>a{
    display: block;
    width: max-content;
    margin: auto;
    margin-top: var(--top30);
    background: rgba(0, 132, 255, 1);
    line-height: 40px;
    font-size: var(--size16);
    color: #ffffff;
    padding: 0 var(--top60);
    border-radius: 30px;
}
.footer{
    width: 100%;

    background: rgba(16, 16, 16, 1);
}
.footer_max{
    width: 1600px;
    max-width: var(--max);
    margin: auto;
    padding: var(--top60) 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.footer_ul{
    width: max-content;
    overflow: hidden;
}
.footer_ul h2{
    font-size: var(--size24);
    color: rgba(255, 255, 255, 1);
    font-family: 'bold';
    line-height: 1;
}
.footer_ul ul{
    width: 100%;
    overflow: hidden;
    margin-top: var(--top20);
}
.footer_ul ul li{
    width: 100%;
    overflow: hidden;
    font-size: var(--size18);
    color: rgba(119, 119, 119, 1);
    margin-top: 10px;
}
.footer_r{
    width: 55%;

}
.footer_top{
    width: 100%;
    overflow: hidden;
}
.footer_top ul{
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: var(--top30);
}
.footer_top ul li{
    width: 100%;
    overflow: hidden;
}
.footer_top ul li img{
    width: 100%;
    height: auto;
}
.footer_top ul li p{
    font-size: var(--size16);
    color: rgba(119, 119, 119, 1);
    margin-top: 10px;
    text-align: center;
}
.footer_bottom{
    width: 1600px;
    max-width: var(--max);
    margin: auto;

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

   display: flex;
       justify-content: center;
    flex-wrap: wrap;
    gap: var(--top30);
}
.footer_bottom ul li{
    width: 70px;
    position: relative;
}
.footer_bottom ul li a>img{
    width: 30px;
    max-width: 100%;
    height: auto;
    margin: auto;
}
.footer_bottom ul li p{
    font-size: 12px;
    color: #ffffff;
    margin-top: 15px;
    text-align: center;
}
.varchar{
    width: 120px;
    background: #ffffff;
    
    position: absolute;
    bottom: 70px;
    left: 50%;
    padding: 10px;
    transform: translateX(-50%) scale(0);
    transform-origin: bottom center;
}
.footer_bottom ul li:hover .varchar{
    transform:translateX(-50%) scale(1);
}
.varchar::after{
    content: "";
    width: 0px;
    height: 0px;
    border-top: 8px solid #ffffff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}
.varchar img{
    width: 100%;
    height: auto;
}







.beian{
    width: 1600px;
    max-width: var(--max);
    overflow: hidden;
    padding: var(--top60) 0 var(--top30);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.beian p{
    font-size: var(--size16);
    color: rgba(119, 119, 119, 1);
    margin: 0 10px;
}

.zhanapin{
    width: 100%;
    max-width: var(--max);
    overflow: hidden;
    margin-top: var(--top60);
}
.cailaio{
    width: 100%;
    overflow: hidden;
        font-size: var(--size14);
    color: rgba(51, 51, 51, 1);
    line-height: 1.5;
    margin-top: var(--top30);
}
.cailaio img{
    width: 100%;
    height: auto;
}
.zhanapin>a{
    display: block;
    width: max-content;
    margin: auto;
    margin-top: var(--top30);
    background: #45E071;
    font-size: var(--size14);
    color: #ffffff;
    border-radius: 40px;
    line-height: 40px;
    padding: 0 var(--top60);
}
.zhanapin>a:hover{
    border-radius: 60px;
    background: #000000;
    color: #ffffff;
}
.zhanapin form{
    width: max-content;
    max-width: 100%;
    overflow: hidden;
    margin: auto;
    margin-top: var(--top60);
}
.zhanapin form h2{
    width: 100%;
    font-size: var(--size24);
    color: #000000;
    line-height: 1;
    text-align: center;
}
.wenjians{
    width: max-content;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    margin-top: var(--top30);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

}
.upboxlae{
    position: relative;
    width: 150px;
    margin-right: 10px;
}
.upboxlae p{
    width: 100%;
    line-height: 40px;
    background: #00000050;
    color: #ffffff;
    font-size: var(--size14);
    text-align: center;
    border-radius: 40px;
}
.upinputname{
    font-size: var(--size14);
    color: #000000;
    margin: 0 10px;
}

#file{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}
.work_file{
    display: block;
    width: 150px;
    border: 1px solid #000000;
    font-size: var(--size14);
    color: #000000;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    border-radius: 40px;

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

}
.progress p{
        font-size: var(--size14);
    color: #000000;
    text-align: center;
}
.progress progress{
    width: 200px;
    max-width: 100%;
    margin: auto;
    display: block;
}
.submiata{
    display: block;
    width: 100%;
    margin: auto;
    margin-top: var(--top30);
    background: #008efd;
    font-size: var(--size14);
    color: #fff;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    border: transparent;
    border-radius: 40px;
}
.submiata:hover{
    border-radius: 60px;
    background: #000000;
    color: #ffffff;
}
.beijinhi{
    width: 100%;
    overflow: hidden;
    background: rgba(239, 243, 251, 1);
}
.shwo_zhaopin{
    width: 100%;
    overflow: hidden;

    border-radius: 20px;
    margin-top: var(--top30);
}
.shwo_zhaopin ul {
    width: 100%;
    overflow: hidden;
    text-align: c;
}

.shwo_zhaopin ul li {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #FFFFFF;
    border-radius: 20px;
    margin-top: 10px;
}
.shwo_zhaopin ul li .zhaopin_list{
    width: 33.33%;
}
.xinzi{
    width: 25%;
}