* {
    margin: 0px;
    padding: 0px;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
}

input,
textarea,
select,
button {
    outline: none;
    border: none;
}

@font-face {
    font-family: 'MySourceSerif';
    /* 保持自定义名称一致 */
    src: url('../font/SourceHanSerifCN-Bold.woff') format('woff'),
     url('../font/SourceHanSerifCN-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MiSans';
    src: url('../font/MiSans-Regular.woff') format('woff'),
        url('../font/MiSans-Regular.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

html {
    transition: font-size 0.3s ease;
    font-size: 10px;
    font-family: '微软雅黑', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'STHeiti', 'WenQuanYi Micro Hei', 'sans-serif';
}

body {
    font-size: 1.5rem;
    /* 15px - 这样更清晰 */
}

.container {
    width: 100%;
    max-width: 160rem;
    height: 100%;
    margin: 0 auto;
}

.nav {
    width: 100%;
    background: rgba(255, 255, 255, 0);
    height: 10rem;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999;
    transition: 0.5s ease;
}

.nav .container {
    max-width: 160.7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav .logo {
    height: 7.5rem;
    display: block;
    transition: 0.5s ease;
}

.nav .logo img {
    height: 100%;
    display: block;
    object-fit: contain;
}

.nav ul {
    display: flex;
    height: 100%;
}

.nav ul li {
    height: 100%;
    margin-right: 8.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav ul li:last-child {
    margin-right: 0px;
}

.nav ul li .title {
    font-weight: 400;
    font-size: 1.8rem;
    color: #fff;
}

.nav.active ul li .title {
    color: #333;
}


.nav.active {
    background: #ffffffb9;
    height: 8rem;
    box-shadow: 0px 0px 1rem 0.1rem #00000056;
    backdrop-filter: blur(0.5rem);
}

.nav.active .logo {
    height: 6.5rem;
}


.nav ul li.active .title {
    /*color: #206B0A ;*/
}

.banenr {
    width: 100%;
    /*height: 91.9rem;*/
    overflow: hidden;
}

.banenr .banner_swiper {
    width: 100%;
    height: 100%;
    display: block;
}

.banenr .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.banenr .swiper-slide .img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.banenr .swiper-slide .text {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banenr .swiper-slide .text h2 {
    font-weight: 500;
    font-size: 5.9rem;
    color: #FFFFFF;
    line-height: 1.3em;
    text-shadow: 0px 0.3rem 0.6rem rgba(0, 0, 0, 0.36);
    margin-bottom: 5.5rem;
}

.banenr .swiper-slide .text p {
    font-weight: 400;
    font-size: 3.1rem;
    color: #FFFFFF;
    line-height: 1.3em;
    text-shadow: 0px 0.3rem 0.6rem rgba(0, 0, 0, 0.48);
}

.banenr .swiper-pagination {
    display: flex;
    align-items: center;
    left: 16rem;
    bottom: 9.8rem;
}

.banenr .swiper-pagination .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #FFFFFF;
    opacity: 4.2;
    transition: 0.4s ease;
}

.banenr .swiper-pagination .swiper-pagination-bullet-active {
    width: 2.9rem;
    background: #206B0A;
    opacity: 1;
    border-radius: 0.6rem;
}

.banenr .Slide_downwards {
    position: absolute;
    bottom: 6.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.banenr .Slide_downwards img {
    width: 1.7rem;
    height: 2.5rem;
    display: block;
    margin: 0 auto;
    margin-bottom: 1.2rem;
}

.banenr .Slide_downwards span {
    text-align: center;
    font-weight: 400;
    font-size: 1.5rem;
    color: #FFFFFF;
}


.banenr .swiper-slide-active .text h2 {
    animation: bounceInUp 1s both;
    animation-delay: 0.0s;
}

.banenr .swiper-slide-active .text p {
    animation: bounceInUp 1s both;
    animation-delay: 0.1s;
}

@keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }

    75% {
        transform: translate3d(0, 10px, 0)
    }

    90% {
        transform: translate3d(0, -5px, 0)
    }

    to {
        transform: translateZ(0)
    }
}

.public_title {
    width: 100%;
    text-align: center;
}

.public_title h2 {
    font-weight: 600;
    font-size: 4rem;
    color: #185008;
    line-height: 1.3em;
    /* margin-bottom: 2rem; */
    font-family: 'Source Han Serif SC', 'MySourceSerif', serif;
    font-weight: 700;
}

.public_title h2::after {
    content: '';
    width: 60%;
    max-width: 16rem;
    height: 0.4rem;
    background: linear-gradient(to right, #18500800, #1850089c, #18500800);
    display: block;
    margin: 1.5rem auto;
}

.public_title p {
    font-weight: 500;
    font-size: 1.8rem;
    color: #A7A7A7;
    font-family: "MiSans", -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
    color: #185008;
}

.About {
    padding: 9rem 0px 7.8rem 0px;
    width: 100%;
    background: url(../images/8864.png) no-repeat center;
    background-size: cover;
}

.About .out {
    margin-top: 6rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.About .out .left {
    width: 47%;
    padding-top: 3.9rem;
    box-sizing: border-box;
    background: url(../images/0.png) no-repeat center;
    background-size: contain;
    
}

.About .out .left h3 {
    font-weight: 500;
    font-size: 2.8rem;
    color: #414141;
    margin-bottom: 4rem;
}

.About .out .left p {
    font-weight: 400;
    font-size: 1.9rem;
    line-height: 1.7em;
    color: #828282;
}

.About .out .left a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16.2rem;
    height: 5rem;
    border-radius: 2.5rem;
    border: 0.1rem solid #206B0A;
    font-weight: 400;
    font-size: 1.7rem;
    color: #206B0A;
    margin-top: 3.8rem;
}

.About .out .left a svg {
    height: 1.3rem;
    width: 1.3rem;
    fill: #206B0A;
}

.About .out .right {
    width: 49%;
}

.About .out .right img {
    width: 100%;
    display: block;
}

.About .icon_out {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 6.7rem;
}

.About .icon_out .box {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.About .icon_out .box .img {
    width: 5.8rem;
    width: 5.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;

}

.About .icon_out .box .img img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;

    object-fit: contain;
}

.About .icon_out .box span {
    font-weight: 500;
    font-size: 2.2rem;
    color: #2A2A2A;
}

.Resource_Matching {
    width: 100%;
    position: relative;
    height: 91.9rem;
}

.Resource_Matching .public_title {
    position: absolute;
    top: 9.6rem;
    left: 0px;
    z-index: 30;
}

.Resource_Matching .public_title h2,
.Resource_Matching .public_title p {
    color: #fff;
}

.Resource_Matching .public_title h2::after {
    background: linear-gradient(to right, #18500800, #ffffff9c, #18500800);
}

.Resource_Matching .img_box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
}

.Resource_Matching .img_box img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    visibility: hidden;
    opacity: 0;
    transition: 1s ease;
    /* transform: scale(1.2); */
}

.Resource_Matching .img_box img.active {
    opacity: 1;
    visibility: visible;
    /* transform: scale(1); */
}

.Resource_Matching .out {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 20;
    height: 100%;
    width: 100%;
}

.Resource_Matching .out .box {
    width: 15%;
    padding: 0px 3.1rem 12.7rem 3.3rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
    border-right: 0.1rem solid rgba(255, 255, 255, 0.34);
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s ease;
}



.Resource_Matching .out .box .txt {
    transform: translateY(85%);
    transition: 0.5s ease;
}

.Resource_Matching .out .box a {
    width: 18.3rem;
    height: 5.4rem;
    border-radius: 2.7rem;
    border: 0.1rem solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.6rem;
    color: #FFFFFF;
}

.Resource_Matching .out .box svg {
    fill: #FFF;
    width: 1.3rem;
    height: 1.3rem;
}

.Resource_Matching .out .box a:hover {
    background: #206B0A;
    color: #FFF;
    border: 0.1rem solid #206B0A;
}

.Resource_Matching .out .box a:hover svg {
    fill: #fff;
}

.Resource_Matching .out .box p {
    font-weight: 400;
    font-size: 1.8rem;
    color: #EEEEEE;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    /* 限制为两行 */
    overflow: hidden;
    line-height: 1.7em;
    margin-bottom: 6.4rem;
    margin-top: 5.3rem;
}

.Resource_Matching .out .box i {
    width: 4.9rem;
    height: 0.4rem;
    background: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    display: block;
}

.Resource_Matching .out .box h3 {
    font-weight: 500;
    font-size: 2.6rem;
    color: #FFFFFF;
    margin-bottom: 8.3rem;
}

.Resource_Matching .out .box span {
    font-weight: 400;
    font-size: 2.4rem;
    color: #FFFFFF;
    display: block;
    margin-bottom: 6.6rem;
}

.Resource_Matching .out .box.active {
    width: 25%;
}

.Resource_Matching .out .box.active {
    background: linear-gradient(229deg, rgb(32, 107, 10, 0.45) 0%, rgba(0, 104, 185, 0.45) 100%);
}

.Resource_Matching .out .box.active .txt {
    transform: translateY(0px)
}


.Case_Center {
    width: 100%;
    margin: 8rem 0px 11.9rem 0px;
}

.Case_Center .Case_swiper {
    margin-top: 6rem;
}

.Case_Center .Case_swiper .swiper-slide {
    width: 32%;
    margin-right: 2%;
}

.Case_Center .Case_swiper .swiper-slide .img {
    width: 100%;
    height: 40.5rem;
    display: block;
}

.Case_Center .Case_swiper .swiper-slide .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.swiper-button-prev,
.swiper-button-next {
    width: 5.5rem;
    height: 5.5rem;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev {
    left: 16rem;
}

.swiper-button-next {
    right: 16rem;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.8rem;
    color: #206B0A;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #206B0A;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
    color: #fff;
}

.form_bottom {
    width: 100%;
    height: 40.7rem;
    background: url(../images/10120.jpg) no-repeat center;
    background-size: cover;
    padding: 9.6rem 0px 11.3rem 0px;
    box-sizing: border-box;
}

.form_bottom form {
    position: relative;
    margin-top: 9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form_bottom form input {
    width: 43.2rem;
    height: 6.4rem;
    background: rgba(255, 255, 255, 0.57);
    border-radius: 0.4rem;
    padding: 0px 2.2rem;
    box-sizing: border-box;
    margin-right: 3.1rem;
    font-weight: 400;
    font-size: 1.7rem;
    color: #FFFFFF;
}

.form_bottom form input::placeholder {
    font-weight: 400;
    font-size: 1.7rem;
    color: #FFFFFF;
}

.form_bottom form input:nth-child(3) {
    margin-right: 0px;
    width: 67.1rem;
    padding-right: 20rem;
    box-sizing: border-box;
}

.form_bottom form button {
    position: absolute;
    right: 1rem;
    width: 18.3rem;
    height: 4.6rem;
    background: #206B0A;
    border-radius: 0.6rem;
    font-weight: 400;
    font-size: 1.4rem;
    color: #FFFFFF;
    text-transform: uppercase;
    cursor: pointer;
}

.form_bottom h2 {
    text-align: center;
    font-weight: 400;
    font-size: 4.4rem;
    color: #FFFFFF;
    text-shadow: 0px 0.3rem 0.6rem rgba(0, 0, 0, 0.48);
}


#footer {
    background: #333;
    /*border-top: 0.2rem solid #ECEFF4;*/
    padding: 4rem 0px 2rem 0px;
}

#footer ul {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem 1rem;
}

#footer ul li {
    border-right: 0.1rem solid #ffffff3f;
}

#footer ul li:last-child {
    margin-right: 0px;
}

#footer ul a {
    display: block;
    margin: 0px 1rem;
    box-sizing: border-box;
    color: #fff;
    font-size: 1.5rem;
}

#footer ul a:hover {
    /*color: #072B87 ;*/
}

#footer .out {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 90rem;
    justify-content: center;
    margin: 0 auto;
    gap: 1rem 1rem;
}

#footer .out .item {
    color: #fff;
    font-size: 1.5rem;
}

#footer {
    width: 100%;
    background: #2B2B2B;
}

.logo_out {
    width: 100%;
}

.logo_out .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3.9rem 0px 3.7rem 0px;
    box-sizing: border-box;
    border-bottom: 0.2rem solid #3a3a3a4f;
}

.logo_out .logo {
    height: 7.5rem;
    width: 100%;
    max-width: 17.5rem;
}

.logo_out .logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.logo_out .share {
    display: flex;
    align-items: center;
}

.logo_out .share span {
    font-weight: 400;
    font-size: 1.8rem;
    color: #EBEBEB;
    margin-right: 1.6rem;
}

.logo_out .share img {
    width: 4.2rem;
    height: 4.2rem;
    cursor: pointer;
}


.footer_out {
    padding: 6.3rem 0px 8.3rem 0px;
    width: 100%;
}

.footer_out .container {
    display: flex;
    justify-content: space-between;
}

.footer_out .left {
    width: 32%;
}

.footer_out .left .item {
    font-weight: 400;
    font-size: 1.8rem;
    color: #DCDCDC;
    margin-bottom: 4rem;
    display: block;
    line-height: 1.7em;
}

.footer_out .left .item:last-child {
    margin-bottom: 0px;
}

.footer_out .right {
    display: flex;
    width: 68%;
    padding-left: 10rem;
    box-sizing: border-box;
}

.footer_out .right .box {
    width: 25%;
}

.footer_out .right .box h3 {
    font-weight: 500;
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 3.9rem;
}

.footer_out .right .box ul {
    width: 100%;
}

.footer_out .right .box li {
    margin-bottom: 3.8rem;
}

.footer_out .right .box li:last-child {
    margin-bottom: 0px;
}

.footer_out .right .box li a {
    font-weight: 400;
    font-size: 1.7rem;
    color: #DCDCDC;
}

.Copyright {
    width: 100%;
    padding: 1.4rem 0px;
    border-top: 0.2rem solid #3A3A3A;
}

.Copyright .container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 0px 1rem;
}

.Copyright p,
.Copyright a {
    font-weight: 400;
    font-size: 1.4rem;
    color: #CCCCCC;
}

.Copyright .container .Technical_Support {
    right: 0px;
    position: absolute;
}

.banner_pages {
    width: 100%;
    /*height: 55rem;*/
    position: relative;
}

.banner_pages .img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.banner_pages .text {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 10;
    padding-top: 10rem;
    box-sizing: border-box;
}

.banner_pages .text .container {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.banner_pages .text .container h2 {
    font-weight: 500;
    font-size: 4.9rem;
    color: #FFFFFF;
    text-shadow: 0px 0.3rem 0.6rem rgba(0, 0, 0, 0.36);
}

.Resource_pages {
    margin: 9.7rem 0px 11rem 0px;
    width: 100%;
}

.Resource_pages .out {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 6rem 3.95%;
    margin-top: 8rem;
}

.Resource_pages .out .box {
    width: 30.7%;
}

.Resource_pages .out .box .img {
    width: 100%;
    height: 32.4rem;
    overflow: hidden;
}

.Resource_pages .out .box .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.5s ease;
}

.Resource_pages .out .box .text {
    width: 100%;
    padding: 4.6rem 3.7rem 2.9rem 4.3rem;
    box-sizing: border-box;
    background: #FFF;
    border: 0.1rem solid #EBE7E7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Resource_pages .out .box .text h3 {
    font-weight: 500;
    font-size: 2.2rem;
    color: #3E3E3E;
}

.Resource_pages .out .box:hover .img img {
    transform: scale(1.1);
}

.Resource_pages .out .box:hover .text h3 {
    color: #206B0A;
}

.Resource_pages .out .box .text .Moer {
    width: 4.8rem;
    height: 4.8rem;
    background: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.Resource_pages .out .box .text .Moer svg {
    height: 3rem;
    width: 3rem;
    fill: #7D7D7D;
}

.Cases_pages {
    margin: 10rem 0px;
    width: 100%;
}

.Cases_pages .out {
    margin-top: 6.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 5rem 2%;
}

.Cases_pages .out .box {
    width: 32%;
}

.Cases_pages .out .box .img {
    height: 34.8rem;
    width: 100%;
    overflow: hidden;
}

.Cases_pages .out .box .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.4s ease;
}

.Cases_pages .out .box .text {
    margin-top: 3rem;
    text-align: center;
}

.Cases_pages .out .box .text h3 {
    font-weight: 500;
    font-size: 2.2rem;
    color: #3E3E3E;
}

.Cases_pages .out .box:hover .img img {
    transform: scale(1.1);
    color: #206B0A;
}

.Cases_pages .out .box:hover .text h3 {
    color: #206B0A;
}

.News_Pages {
    margin: 10rem 0px;
    width: 100%;
}

.News_Pages .out {
    margin-top: 6rem;
}

.News_Pages .out .box {
    width: 100%;
    padding-bottom: 4.8rem;
    margin-bottom: 4.8rem;
    border-bottom: 0.1rem solid #DDDDDD;
}

.News_Pages .box a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.News_Pages .box .left {
    width: 45.2rem;
    height: 27.6rem;
    overflow: hidden;
}

.News_Pages .box .left img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.5s ease;
}

.News_Pages .box .right {
    width: calc(100% - 45.2rem);
    padding-left: 9rem;
    box-sizing: border-box;
}

.News_Pages .box .right h3 {
    font-weight: 500;
    font-size: 2.4rem;
    color: #333333;
    margin-bottom: 4.8rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.News_Pages .box .right p {
    font-weight: 400;
    font-size: 1.8rem;
    color: #666666;
    line-height: 1.7em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 限制为两行 */
    overflow: hidden;
}

.News_Pages .box .right .tiem_box {
    margin-top: 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.News_Pages .box .right .tiem_box time {
    font-weight: 400;
    font-size: 1.6rem;
    color: #999999;
}

.News_Pages .box .right .tiem_box .Moer {
    width: 15.4rem;
    height: 4.8rem;
    border: 0.1rem solid #206B0A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2.45rem;
    font-weight: 500;
    font-size: 1.4rem;
    color: #206B0A;
}

.News_Pages .box:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: none;
}

.News_Pages .box a:hover .right h3 {
    color: #206B0A;
}

.News_Pages .box a:hover .right .tiem_box .Moer {
    color: #fff;
    background: #206B0A;
}


.News_Pages .box a:hover .left img {
    transform: scale(1.1);
}

.Contact_pages {
    width: 100%;
    margin: 10rem 0px;
}

.Contact_pages .out {
    margin-top: 6.2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Contact_pages .out .box {
    width: 36.6rem;
    background: #FFFFFF;
    box-shadow: 0px 0.2rem 1.2rem 0.1rem rgba(0, 77, 159, 0.18);
    border-radius: 2rem;
    padding: 3.4rem 3.3rem 3rem 3.3rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.Contact_pages .out .box img {
    width: 7.8rem;
    height: 7.8rem;
    display: block;
    object-fit: contain;
    margin-bottom: 2.6rem;
}

.Contact_pages .out .box h3 {
    font-weight: 500;
    font-size: 2.2rem;
    color: #333333;
}

.Contact_pages .out .box i {
    width: 3.9rem;
    height: 0.4rem;
    background: #206B0A;
    display: block;
    margin: 2.4rem 0px 1.7rem 0px;
}

.Contact_pages .out .box p {
    font-weight: 400;
    font-size: 1.7rem;
    color: #888888;
    line-height: 1.7em;
    text-align: center;
}

/* 在线联系 */
.Feedback {
    width: 100%;
    background: #F7F7F7;
    padding-top: 7rem;
    padding-bottom: 9.7rem;
    box-sizing: border-box;
}

.Feedback .out {
    width: 100%;
}

.Feedback .out .title {
    margin-bottom: 5rem;
    display: flex;
    align-items: end;
}

.Feedback .out .title h2 {
    font-weight: 500;
    font-size: 3.6rem;
    color: #206B0A;
    display: flex;
    align-items: center;
}

.Feedback .out .title span i {
    display: block;
    margin: 0px 2.1rem 0px 1.9rem;
}

.Feedback .out .title span {
    font-weight: 400;
    font-size: 1.7rem;
    color: #666666;
    display: flex;
    align-items: center;
}

.Feedback .out form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.Feedback .out input {
    width: 48%;
    height: 4.6rem;
    background: #FFFFFF;
    border-radius: 0.4rem;
    border: 0.1rem solid #FFFFFF;
    font-weight: 400;
    font-size: 1.4rem;
    color: #666666;
    padding: 0px 1.2rem;
    box-sizing: border-box;
    margin-bottom: 4rem;
}

.Feedback .out textarea {
    width: 100%;
    height: 17rem;
    border: 0.01rem solid #fff;
    font-weight: 400;
    font-size: 1.4rem;
    color: #666666;
    padding: 1.8rem 2.1rem 1.8rem 2.1rem;
    box-sizing: border-box;
    background: #fff;
}

.Feedback .out .button {
    width: 100%;
}

.Feedback .out button {
    width: 47.7rem;
    height: 6.7rem;
    background: #206B0A;
    border-radius: 3.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
    cursor: pointer;
    border: none;
    margin: 0 auto;
    margin-top: 9.5rem;
}

.CAPTCHA {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 3rem;
}

.CAPTCHA input {
    margin-bottom: 0px !important;
    margin-right: 1rem !important;

}

.CAPTCHA img {
    width: 12rem;
    height: 4.8rem;
    display: block;
}


.Project_Introduction {
    width: 100%;
    margin: 10rem 0px;
}

.Project_Introduction .out {
    margin-top: 6.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.Project_Introduction .out .box {
    width: 32%;
    padding: 5rem 4rem;
    box-sizing: border-box;
    background: #F3F3F3;
    border-radius: 3rem;
}

.Project_Introduction .out .box h3 {
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 2rem;
    color: #333333;
}

.Project_Introduction .out .box .text {
    width: 100%;
}

.Project_Introduction .out .box .text p {
    color: #666666;
    font-size: 1.6rem;
    line-height: 1.8em;
}


.Cooperation_mode {
    width: 100%;
    margin: 10rem 0px;
}

.Cooperation_mode .out {
    margin-top: 6.5rem;
    display: flex;
    justify-content: space-between;
    background: #FFF;
    box-shadow: 0px 0px 1.2rem 0.1rem rgba(0, 0, 0, 0.19);
}

.Cooperation_mode .out .box {
    width: 50%;
    position: relative;
    cursor: pointer;
}

.Cooperation_mode .out .box .img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
    transition: 0.3s ease;
}

.Cooperation_mode .out .box .text {
    width: 100%;
    position: relative;
    z-index: 20;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 9.3rem 13.5rem 8.8rem 13.5rem;
    box-sizing: border-box;
}

.Cooperation_mode .out .box .text svg {
    width: 8rem;
    height: 8rem;
    fill: #206B0A;
    margin-bottom: 4.7rem;
}

.Cooperation_mode .out .box .text h3 {
    font-weight: bold;
    font-size: 2.6rem;
    color: #313131;
    margin-bottom: 4.2rem;
}

.Cooperation_mode .out .box .text p {
    text-align: center;
    font-weight: 400;
    font-size: 2rem;
    color: #888888;
    line-height: 1.8em;
}

.Cooperation_mode .out .box:hover .img {
    opacity: 1;
    visibility: visible;
}

.Cooperation_mode .out .box:hover .text {
    background: rgba(0, 0, 0, 0.45);
}

.Cooperation_mode .out .box:hover .text svg {
    fill: #FFF;
}

.Cooperation_mode .out .box:hover .text h3 {
    color: #fff;
}

.Cooperation_mode .out .box:hover .text p {
    color: #fff;
}

.Profit_calculation {
    width: 100%;
    padding: 7.6rem 0px 11.5rem 0px;
    background: url(../images/10127.jpg) no-repeat center;
    background-size: cover;
}

.Profit_calculation .public_title h2,
.Profit_calculation .public_title p {
    color: #FFF;
}

.Profit_calculation .out {
    margin-top: 7rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Profit_calculation .out .box {
    width: 48%;
    background: #ffffff4f;
    box-shadow: 0px 0.3rem 0.6rem 0.1rem rgba(0, 0, 0, 0.16), inset 0px 0.3rem 0.6rem 0.1rem #FFFFFF;
    border-radius: 1.5rem;
    border: 0.1rem solid #FFFFFF;
    backdrop-filter: blur(1.4rem);
    padding: 7.9rem 8.5rem 6.7rem 8.5rem;
    box-sizing: border-box;
    text-align: center;
}

.Profit_calculation .out .box h3 {
    font-weight: 500;
    font-size: 2.8rem;
    color: #FFFFFF;
    margin-bottom: 3.9rem;
}

.Profit_calculation .out .box p {
    text-align: center;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
    line-height: 2em;
}

.Profit_calculation .out .box:hover {
    background: #206B0A;
    border: 0.1rem solid #206B0A;
    box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16), inset 0px 3px 6px 1px rgba(255, 255, 255, 0.16);
}

.Operations_Support {
    margin: 10rem 0px;
    width: 100%;
}

.Operations_Support .out {
    width: 100%;
    margin-top: 6.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Operations_Support .out .left {
    width: 45%;
}

.Operations_Support .out .left h3 {
    font-weight: 500;
    font-size: 2.8rem;
    color: #414141;
    margin-bottom: 5rem;
}

.Operations_Support .out .left p {
    font-weight: 400;
    font-size: 1.9rem;
    color: #828282;
    line-height: 1.9em;
}

.Operations_Support .out .right {
    width: 50%;
    height: 39.7rem;
    position: relative;
}

.Operations_Support .out .right .box {
    width: 44rem;
    height: 27.7rem;
    position: absolute;

}

.Operations_Support .out .right .box:nth-child(1) {
    top: 0px;
    left: 0px;
}

.Operations_Support .out .right .box:nth-child(2) {
    bottom: 0px;
    right: 0px;
}

.Operations_Support .out .right .box .img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 20;
}

.Operations_Support .out .right .box .icon {
    width: 11rem;
    height: 11rem;
    display: block;
    position: absolute;
}

.Operations_Support .out .right .box .color {
    width: 8rem;
    height: 8rem;
    display: block;
    background: #206B0A;
    position: absolute;

}

.Operations_Support .out .right .box:nth-child(1) .icon {
    bottom: 0px;
    left: 0px;
    transform: translateY(100%) rotate(-180deg);
}

.Operations_Support .out .right .box:nth-child(1) .color {
    right: -0.8rem;
    top: -0.8rem;
}

.Operations_Support .out .right .box:nth-child(2) .icon {
    right: 0px;
    top: 0px;
    transform: translateY(-100%);
}

.Operations_Support .out .right .box:nth-child(2) .color {
    bottom: -0.8rem;
    left: -0.8rem;
}

.Development_history {
    width: 100%;
    padding: 7.7rem 0px 10rem 0px;
    background: url(../images/10123.jpg) no-repeat center;
    background-size: cover;
}

.Development_history .public_title h2,
.Development_history .public_title p {
    color: #FFF;
}

.Development_history .public_title h2::after {
    background: linear-gradient(to right, #18500800, #ffffff9c, #18500800);
}

.Development_history .out {
    position: relative;
}

.Development_history .out .swiper-button-prev {
    left: -10rem;
}

.Development_history .out .swiper-button-next {
    right: -10rem;
}

.Development_history .history_swiper {
    padding-top: 12rem;
    width: 100%;
}

.Development_history .history_swiper .swiper-slide {
    width: 25%;
}

.Development_history .history_swiper .swiper-slide .time_box {
    width: 100%;
    height: 1.8rem;
    position: relative;
}

.Development_history .history_swiper .swiper-slide .time_box::after {
    content: '';
    width: 100%;
    height: 0.28rem;
    background: rgba(255, 255, 255, 0.25);
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.Development_history .history_swiper .swiper-slide .time_box .dian {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: #206B0A;
    margin: 0 auto;
    position: absolute;
    transition: 0.7s ease;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.Development_history .history_swiper .swiper-slide .time_box .dian::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    border-radius: 50%;
    background: #216b0a77;
    transition: 0.7s ease;
    line-height: 1;
}

.Development_history .history_swiper .swiper-slide .time_box span {
    position: absolute;
    top: -7rem;
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    font-weight: bold;
    font-size: 3rem;
    color: #FFFFFF;
    width: max-content;
}

.Development_history .history_swiper .swiper-slide-active .time_box .dian {
    width: 2.9rem;
    height: 2.9rem;
}

.Development_history .history_swiper .swiper-slide-active .time_box .dian::after {
    width: 3.9rem;
    height: 3.9rem;
}

.Development_history .history_swiper .swiper-slide .text {
    padding: 5.7rem 6rem 0px 3rem;
    box-sizing: border-box;
    background: url(../images/3.png) no-repeat left top;
    background-position-y: 6rem;
}

.Development_history .history_swiper .swiper-slide .text p {
    font-weight: 400;
    font-size: 1.8rem;
    color: #FFFFFF;
    line-height: 2em;
}

.Honors_pages {
    padding-top: 7.1rem;
    padding-bottom: 12rem;
    width: 100%;
}

.Honors_pages .out {
    position: relative;
}

.Honors_pages .out .swiper-button-prev {
    left: -10rem;
    box-shadow: 0px 0px 1rem 0.1rem #00000018;
}

.Honors_pages .out .swiper-button-next {
    right: -10rem;
    box-shadow: 0px 0px 1rem 0.1rem #00000018;
}

.Honors_pages .Honors_swiper {
    margin-top: 4rem;
}

.Honors_pages .Honors_swiper .swiper-slide {
    width: 25%;
    padding: 1rem 2rem;
    box-sizing: border-box;
}

.Honors_pages .Honors_swiper .swiper-slide .box {
    background: #FFF;
    box-shadow: 0px 0.3rem 1.2rem 0.1rem rgba(0, 0, 0, 0.13);
    box-sizing: border-box;
    padding: 1rem 3.7rem 3.2rem 3.7rem;
    box-sizing: border-box;
}

.Honors_pages .Honors_swiper .swiper-slide .box .img {
    width: 100%;
    height: 38.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Honors_pages .Honors_swiper .swiper-slide .box .img img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.Honors_pages .Honors_swiper .swiper-slide .box .txt {
    margin-top: 2.5rem;
    padding-top: 2.7rem;
    width: 100%;
    border-top: 0.1rem solid #EBEBEB;
    text-align: center;
}

.Honors_pages .Honors_swiper .swiper-slide .box .txt h3 {
    font-weight: 400;
    font-size: 2.4rem;
    color: #555555;
}



.News_Detail {
    margin: 10rem 0px;
}

.News_Detail .list {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 2rem;
    justify-content: center;
}

.News_Detail .title {
    text-align: center;
}

.News_Detail .title h2 {
    color: #171717;
    font-size: 2.4rem;
    font-weight: bold;
}

.News_Detail .list .span {
    color: #555555;
    font-size: 1.4rem;
    display: block;
    margin: 0px 0.5rem;
}

.News_Detail .text {
    width: 100%;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 0.2rem solid #2b2b2b1e;
}

.News_Detail .text p {
    color: #313131;
    font-size: 1.6rem;
    line-height: 2em;
    /*margin: 1rem 0px;*/
}

.News_Detail .text img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 1rem 0px;
}

.menubtn {
    width: 28.44px;
    height: 28.44px;
    position: relative;
    cursor: pointer;
    display: none;
    align-items: center;
}

.menubtn span {
    display: block;
    width: 28.44px;
    height: 3px;
    background: #383635;
    position: relative;
    vertical-align: middle;
    -webkit-transition-duration: .3s, .3s;
    -moz-transition-duration: .3s, .3s;
    -ms-transition-duration: .3s, .3s;
    -o-transition-duration: .3s, .3s;
    transition-duration: .3s, .3s;
    -webkit-transition-delay: .3s, 0s;
    -moz-transition-delay: .3s, 0s;
    -ms-transition-delay: .3s, 0s;
    -o-transition-delay: .3s, 0s;
    transition-delay: .3s, 0s;
}

.menubtn span:after,
.menubtn span:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 3px;
    left: 0;
    background-color: #383635;
    -webkit-transition-duration: .3s, .3s;
    -moz-transition-duration: .3s, .3s;
    -ms-transition-duration: .3s, .3s;
    -o-transition-duration: .3s, .3s;
    transition-duration: .3s, .3s;
    -webkit-transition-delay: .3s, 0s;
    -moz-transition-delay: .3s, 0s;
    -ms-transition-delay: .3s, 0s;
    -o-transition-delay: .3s, 0s;
    transition-delay: .3s, 0s;
}

.menubtn span:before {
    top: -10px;
    -webkit-transition-property: top, transform;
    -moz-transition-property: top, transform;
    -ms-transition-property: top, transform;
    -o-transition-property: top, transform;
    transition-property: top, transform;
}

.menubtn span:after {
    bottom: -10px;
    -webkit-transition-property: bottom, transform;
    -moz-transition-property: bottom, transform;
    -ms-transition-property: bottom, transform;
    -o-transition-property: bottom, transform;
    transition-property: bottom, transform;
}

.menubtn.active span {
    background-color: transparent;
    -webkit-transition-delay: 0s, 0s;
    -moz-transition-delay: 0s, 0s;
    -ms-transition-delay: 0s, 0s;
    -o-transition-delay: 0s, 0s;
    transition-delay: 0s, 0s;
}

.menubtn.active span:after,
.menubtn.active span:before {
    -webkit-transition-delay: 0s, .3s;
    -moz-transition-delay: 0s, .3s;
    -ms-transition-delay: 0s, .3s;
    -o-transition-delay: 0s, .3s;
    transition-delay: 0s, .3s
}

.menubtn.active span:before {
    top: 0px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menubtn.active span:after {
    bottom: 0px;

    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.Mobile_navigation {
    width: 100%;
    background: #FFF;
    box-shadow: 0px 1rem 1rem #0000001e;
    padding: 2rem 0px;
    box-sizing: border-box;
    display: none;
}

.Mobile_navigation.show {
    display: block;
}

.Mobile_navigation ul li {
    width: 100%;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
}

.Mobile_navigation ul li .title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Mobile_navigation ul li .title a {
    width: 100%;
    color: #333;
    font-size: 1.8rem;
}

.Mobile_navigation ul li .title svg {
    width: 3rem;
    height: 3rem;
}

.Mobile_navigation ul li .list {
    width: 100%;
    padding: 1.5rem 2rem;
    box-sizing: border-box;
    display: none;
}

.Mobile_navigation ul li .list a {
    width: 100%;
    padding: 1rem 0px;
    display: block;
    color: #333;
    font-size: 1.6rem;
}

.Mobile_navigation ul li.active {
    background: #206B0A;
}

.Mobile_navigation ul li.active svg {
    fill: #FFF;
}

.Mobile_navigation ul li.active a {
    color: #FFF;
}

.Mobile_navigation ul {
    display: block !important;
}

.Mobile_navigation ul li {
    display: block !important;
}


.Pagination_out {
    display: flex;
    margin-top: 7rem;
    width: 100%;
    justify-content: center;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 2rem auto;
    border-radius: 0.4rem;
}

.pagination>li {
    display: inline;
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    z-index: 2;
    color: #206B0A;
    background-color: #eee;
    border-color: #ddd;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    background-color: #206B0A;
    border-color: #206B0A;
    cursor: default;
}

.Verification_code {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999999;
    width: 100%;
    height: 100%;
    background: #0000004d;
    display: none;
}

.Verification_code .out {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #FFF;
    padding: 1rem;
    box-sizing: border-box;
    box-shadow: 0px 0px 1rem 0.1rem #ffffff0a;
    height: 270px;
}

.Verification_code .out .title {
    width: 100%;
    padding-bottom: 2rem;
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
}

.Cases_pages_list {
    width: 100%;
}

.Cases_pages_list .out {
    margin: 7rem 0px;
    width: 100%;
    position: relative;
}

.Cases_pages_list .out .outer_layer_swiper {
    width: 100%;
}

.Cases_pages_list .out .swiper_out {
    width: 100%;
    display: flex;
    border-radius: 3.5rem;
    overflow: hidden;
    display: flex;
    padding: 8rem 7%;
    box-sizing: border-box;
    justify-content: space-between;
    /* height: 55rem ; */
    margin-top: 6rem;
}


.Cases_pages_list .out .internal_swiper {
    /* margin-top: 6rem ; */
    width: 54%;
    height: 41rem;
    margin: 0px;
}

.Cases_pages_list .out .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.Cases_pages_list .out .swiper-slide .img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.Cases_pages_list .out .swiper-slide .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.Cases_pages_list .out .swiper_out .text {
    padding: 4rem 2rem;
    box-sizing: border-box;
    text-align: left ;
    padding-top: 3%;
    height: 100%;
    width: 40%;
}

.Cases_pages_list .out .swiper_out .text h3 {
    color: #333 ;
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.Cases_pages_list .out .swiper_out .text p {
    color: #333;
    font-size: 2rem;
    margin: 2rem 0px;
}

.Cases_pages_list .out .swiper-pagination-bullet {
    background: #FFF;
    opacity: 1;
}

.Cases_pages_list .out .swiper-pagination-bullet-active {
    background: #D3AE78;
}

.Resource_Matching_pages {
    margin: 9rem 0px;
    overflow: hidden;
}

.Resource_Matching_pages .public_title {
    position: relative;
    z-index: 30;
}

.Resource_Matching_pages .out .swiper {
    margin-top: 4rem;
}

.Resource_Matching_pages .out .swiper-slide {
    width: 20%;
    height: 60rem;
    padding: 0px 1rem;
    box-sizing: border-box;
}

.Resource_Matching_pages .out .swiper-slide .img {
    width: 100%;
    height: 100%;
    overflow: hidden;

}

.Resource_Matching_pages .out .swiper-slide .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.Resource_Matching_pages .out .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    /* box-shadow: 0px 0px 0.6rem 0.1rem #0000002a ; */
}

.Resource_Matching_pages .out {
    position: relative;
    width: 100%;
}

.Resource_Matching_pages .out_2 {
    width: 100%;
    position: relative;
}

.Resource_Matching_pages .out_2 .ellipse {
    width: 95%;
    height: 15rem;
    /* background: #206B0A ; */
    border-radius: 50%;
    margin: 0 auto;
    transform: translateY(-50%) translateX(-50%);
    border: 0.2rem solid #eee;
    position: absolute;
    left: 50%;
}

.Resource_Matching_pages .out_2 .swiper-slide {
    width: 10%;
    display: flex;
    justify-content: center;
}

.Resource_Matching_pages .out_2 .swiper-slide .dian {
    width: 1rem;
    height: 1rem;
    background: #206B0A;
    border-radius: 50%;
}

.Resource_Matching_pages .out_2 .swiper {
    width: 100%;
    transform: translateY(7rem);
}

.Mask_layer {
    width: 130%;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 20;
    height: 14rem;
    background: #FFF;
    border-radius: 50%;
}

.Mask_layer_2 {
    top: auto;
    bottom: 0px;
    transform: translateX(-50%) translateY(50%);
}

.Resource_Matching_pages .out .swiper-slide a {
    position: relative;
    overflow: hidden;
}

.Resource_Matching_pages .out .swiper-slide .title {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    /* background: #0000003b ; */
    transition: 0.6s ease;
}

.Resource_Matching_pages .out .swiper-slide .title h3 {
    color: #fff;
    font-size: 2.4rem;
    letter-spacing: 0.1rem;
    font-weight: 500;
    text-align: center;
    text-shadow: 0px 0rem 0.5rem #000000e8;
}

.Resource_Matching_pages .out .swiper-slide .text {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 20% 5%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s ease;
}

.Resource_Matching_pages .out .swiper-slide .text h3 {
    color: #fff;
    font-size: 2.4rem;
    letter-spacing: 0.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.Resource_Matching_pages .out .swiper-slide .text p {
    color: #FFF;
    font-size: 1.6rem;
    line-height: 1.6em;
}

.Resource_Matching_pages .out .swiper-slide-active a .text,
.Resource_Matching_pages .out .swiper-slide a:hover .text {
    opacity: 1;
    visibility: visible;
}

.Resource_Matching_pages .out .swiper-slide-active a .title,
.Resource_Matching_pages .out .swiper-slide a:hover .title {
    transform: translate(10%, 10%);
    opacity: 0;
    visibility: hidden;
}


.Resource_Matching .SmallScreen {
    width: 100% ;
    display: none ;
    margin-top: 5rem ;
}

.Resource_Matching .SmallScreen .Smail_title {
    position: relative;
    padding: 0px 7%;
    box-sizing: border-box ;
    margin-bottom: 4rem ;
}

.Resource_Matching .SmallScreen .swiper {
    width: 100% ;
}

.Resource_Matching .SmallScreen .SmallScreen_swiper .swiper-slide {
    width: 33.333%  ;
    padding: 0px 0.5rem ;
    box-sizing: border-box ;
    font-size: 2rem ;
    font-weight: 500  ;
    position: relative;
    text-align: center ;
    padding-bottom: 0.6rem ;
}

.Resource_Matching .SmallScreen .SmallScreen_swiper .swiper-slide::after {
    width: 80% ;
    height: 0.1rem ;
    background: #000 ;
    position: absolute ;
    content: '';
    left: 50% ;
    transform: translateX(-50%);
    bottom: -0rem  ;
}

.Resource_Matching .SmallScreen .SmallScreen_swiper .swiper-slide-thumb-active {
    color: #185008 ;
}

.Resource_Matching .SmallScreen .SmallScreen_swiper .swiper-slide-thumb-active::after {
    background: #185008 ;
}

.Resource_Matching .SmallScreen .swiper-button-prev, .Resource_Matching .SmallScreen .swiper-button-next {
    background: none ;
    width: auto ;
    height: 100%;
    top: 0px;
    margin-top: 0px;
}

.Resource_Matching .SmallScreen .swiper-button-prev::after , .Resource_Matching .SmallScreen .swiper-button-next::after  {
    font-size: 2rem ;
}

.Resource_Matching .SmallScreen .text_out {
    width: 100% ;
    padding: 0px 5% 6rem 5% ;
    box-sizing: border-box ;
} 

.Resource_Matching .SmallScreen .text_out .box {
    width: 100% ;
}

.Resource_Matching .SmallScreen .text_out .box  p{
    color: #333 ;
    font-size: 1.8rem ;
    line-height: 1.8em ;
}

.Resource_Matching .SmallScreen .text_out .box a {
    padding: 1rem 2rem ;
    box-sizing: border-box ;
    background: #185008 ;
    color: #FFF ;
    font-weight: 500  ;
    font-size: 1.6rem ;
    display: block ;
    width: max-content ;
    margin-top: 2rem ;
}

.form_bottom #viscap-container {
    position: absolute !important;
    right: 21rem !important;
    width: auto !important;
}


#viscap-container #viscap-show-btn {
    padding: 0.6rem 1.2rem !important;
    margin-bottom: 0;
    font-size: 1.4rem !important;
}

#viscap-container {
    margin: 0px !important;
    width: 100% !important;
}

#viscap-container #viscap-show-btn {
    display: block !important;
}

#viscap-container #viscap-main {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10 !important;
}

#viscap-container #viscap-show-btn.verified {
    pointer-events: none !important;
}

/* .Resource_Matching_pages .Mask_layer {
    position: absolute ;
    top: 0px ;
    width: 100% ;
    background: #fff ;
    height: 15rem ;
    z-index: 20 ;
    border-radius: 50% ;
    transform: translateY(-50%);
} */

.Policy_support {
    width: 100%;
    background: url("../images/Policy_support.png") no-repeat center;
    background-size: cover;
    min-height: 87.9rem;
    padding: 6rem 0px 7rem 0px;
    box-sizing: border-box;
}

.Policy_support .max_width {
    width: 100%;
    max-width: 163.2rem;
    margin: 0 auto;
}

.Policy_support {
    position: relative;
    padding-left: 2%;
    box-sizing: border-box;
    overflow: hidden;
}

.Policy_support .out {
    margin-top: 7rem;
    width: 100%;
    position: relative;
}

.Policy_support .icon_logo {
    position: absolute;
    left: 50%;
    top: 26%;
    transform: translateX(-50%);
    width: 32.1rem;
}

.Policy_support .icon_logo img {
    width: 100%;
    height: 100%;
    display: block;
}

.Policy_support .out .box {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.Policy_support .out .box:nth-child(2) {
    margin-top: 7.6rem;
}

.Policy_support .out .box .item {}

.Policy_support .out .box .item .tit {
    display: flex;
    align-items: center;
    position: relative;
    width: max-content;
}

.Policy_support .out .box .item .tit h3 {
    color: #185008;
    font-size: 4rem;
}

.Policy_support .out .box .item .tit .icon {
    width: 3.8rem;
    height: 3.8rem;
    display: block;
    position: absolute;
    left: -1.3rem;
    top: 50%;
    transform: translateX(-100%) translateY(-50%);
}

.Policy_support .out .box .item .tit .xian {
    position: absolute;
    right: -2.5rem;
    transform: translateX(100%);
    top: 50%;
    width: 38.9rem;
    display: block;
}

.Policy_support .out .box .item .horizontal_bar {
    width: 17rem;
    height: 0.3rem;
    margin: 1.3rem 0px;
    background: linear-gradient(to right, #185008c9, #18500800, #18500800);
}

.Policy_support .out .box .item ul {
    width: 100%;
    list-style: disc;
    padding-left: 2em;
    box-sizing: border-box;
}


.Policy_support .out .box .item ul li {
    width: 100%;
    color: #185008;
    font-size: 2.3rem;
    line-height: 2em;
}

.Policy_support .out .box .item:nth-child(2) .tit {
    margin-left: auto;
}

.Policy_support .out .box .item:nth-child(2) .tit .xian {
    right: auto;
    left: 0px;
    transform: translateX(-125%);
}

.Policy_support .out .box .item:nth-child(2) .horizontal_bar {
    margin-left: auto;
    background: linear-gradient(to right, #18500800, #18500800, #185008c9);
}

.Policy_support .out .box .item:nth-child(2) ul {
    max-width: 33.6rem;
    padding-left: 0px;
    list-style: none;
}

.Policy_support .out .box .item:nth-child(2) ul li {
    text-indent: 2em;
    position: relative;
}

.Policy_support .out .box .item:nth-child(2) ul li::after {
    width: 0.8rem;
    height: 0.8rem;
    background: #185008;
    border-radius: 50%;
    position: absolute;
    left: 2.6rem;
    top: 2rem;
    content: '';
    display: block;
}

.Policy_support .out .box:nth-child(2) .item .tit .xian {
    top: -100%;
}

@media (max-width:1024px) {
    .nav ul {
        display: none;
    }

    .menubtn {
        display: flex;
    }

    .container {
        padding: 0px 5%;
        box-sizing: border-box;
    }

    .nav {
        background: #FFF;
    }

    .banenr {
        margin-top: 10rem;
        /*height: 50rem;*/
    }

    .banenr .swiper-slide .text {
        padding-bottom: 10%;
        box-sizing: border-box;
    }

    .banenr .swiper-slide .text h2 {
        font-size: 4rem;
        margin-bottom: 3rem;
    }

    .banenr .swiper-slide .text p {
        font-size: 2.4rem;
    }

    .About .out {
        flex-wrap: wrap;
        margin-top: 4rem ;
    }

    .About .out .left {
        width: 100%;
    }

    .About .out .right {
        width: 100%;
        /* margin-top: 4rem; */
    }

    .Resource_Matching .img_box {
        display: none;
    }

    .Resource_Matching {
        height: auto;
        margin-top: 9.6rem;
    }

    .Resource_Matching .public_title h2,
    .Resource_Matching .public_title p {
        color: #185008 ;
    }

    .Resource_Matching .public_title {
        position: relative;
        top: 0px;
        margin-bottom: 6rem;
    }

    .Resource_Matching .out {
        justify-content: space-between;
    }

    .Resource_Matching .out .box {
        width: 40% !important;
        flex: auto;
        padding: 0px;
        padding: 3rem;
        box-sizing: border-box;
        background: none !important;
    }

    .Policy_support .out .box .item .tit .xian {
        display: none !important;
    }

    .Resource_Matching .out .box .txt {
        transform: translateY(0px);
    }

    .Resource_Matching .out .box h3 {
        margin-bottom: 3rem;
        color: #333;
    }

    .Resource_Matching .out .box p {
        color: #333;
        margin: 2rem 0px;
    }

    .Resource_Matching .out .box a {
        border: 0.1rem solid #333;
        color: #333;
    }

    .Resource_Matching .out .box i {
        background: #333;
    }

    .Resource_Matching .out .box a svg {
        fill: #333;
    }

    .Resource_Matching .out .box span {
        margin-bottom: 3rem;
        color: #333;
    }

    .Resource_Matching .out .box:hover {
        background: none;
    }


    .Case_Center .Case_swiper .swiper-slide .img {
        height: 25rem;
    }

    .swiper-button-prev {
        left: 5%;
    }

    .swiper-button-next {
        right: 5%;
    }

    .form_bottom {
        height: auto;
    }

    .form_bottom form {
        flex-wrap: wrap;
        gap: 2rem 0px;
    }

    .form_bottom form input,
    .form_bottom form input:nth-child(3) {
        width: 100%;
        margin-right: 0px;

    }

    .form_bottom form button {
        position: static;
    }

    .form_bottom #viscap-container {
        position: static !important;
        width: 100% !important;
    }

    .footer_out .right {
        display: none;
    }

    .footer_out .left {
        width: 100%;
    }

    .logo_out .container {
        padding: 3.9rem 5% 3.7rem 5%;
    }

    .Copyright .container .Technical_Support {
        right: 5%;
    }

    .Development_history .history_swiper .swiper-slide {
        width: 50%;
    }

    .Honors_pages .Honors_swiper .swiper-slide {
        width: 33.33%;
    }

    .Honors_pages .Honors_swiper .swiper-slide .box .img {
        height: auto ;
    }

    .Honors_pages .Honors_swiper .swiper-slide .box .txt h3 {
        font-size: 2rem;
    }

    .Honors_pages .Honors_swiper .swiper-slide .box {
        padding: 1rem 2rem 2rem 2rem;
    }

    .Development_history .out .swiper-button-prev,
    .Honors_pages .out .swiper-button-prev {
        left: 0px;
    }

    .Development_history .out .swiper-button-next,
    .Honors_pages .out .swiper-button-next {
        right: 0px;
    }

    .banner_pages {
        margin-top: 10rem;
    }

    .banner_pages {
        /*height: 35rem;*/
    }

    .banner_pages .text {
        padding-top: 0px;
    }

    .Cooperation_mode .out .box .text {
        padding: 3rem;
    }

    .Cooperation_mode .out .box .text svg {
        margin-bottom: 2rem;
    }

    .Cooperation_mode .out .box .text h3 {
        margin-bottom: 2rem;
    }

    .Profit_calculation .out .box {
        padding: 4rem 3rem;
    }

    .Project_Introduction .out .left {
        width: 100%;
    }

    .Project_Introduction .out .right {
        margin-top: 4rem;
        width: 100%;
    }

    .Cooperation_mode .out {
        flex-wrap: wrap;
    }

    .Cooperation_mode .out .box {
        width: 100%;
    }

    .Operations_Support .out {
        flex-wrap: wrap;
    }

    .Operations_Support .out .left {
        width: 100%;
    }

    .Operations_Support .out .right {
        width: 100%;
        margin-top: 5rem;
    }

    .Resource_pages .out {
        justify-content: space-between;
    }

    .Resource_pages .out .box {
        width: 48%;
    }

    .Cases_pages .out .box .img {
        height: 21rem;
    }

    .News_Pages .box .left {
        width: 30%;
    }

    .News_Pages .box .right {
        width: 70%;
        padding-left: 5%;
    }

    .Contact_pages .out .box {
        width: 48%;
        margin-bottom: 3rem;
    }

    .Contact_pages .out .box:last-child {
        margin-bottom: 0px;
    }

    .Resource_Matching_pages .out .swiper-slide {
        width: 44%;
    }

    .Policy_support .out {
        padding: 0px 4%;
        padding-left: 6%;
        box-sizing: border-box;
    }

}

@media (max-width:768px) {
    .banenr {
        /*height: 38rem;*/
    }

    .Project_Introduction .out .box {
        width: 100%;
        margin: 1.5rem 0px;
    }

    .Project_Introduction .out {
        margin-top: 4rem;
    }

    .banenr .swiper-slide .text h2 {
        font-size: 3.5rem;
    }

    .banenr .swiper-slide .text p {
        font-size: 2rem;
    }

    .banenr .Slide_downwards {
        bottom: 3rem;
    }

    .Case_Center .Case_swiper .swiper-slide {
        width: 48%;
    }

    .form_bottom form {
        flex-wrap: wrap;
    }

    .form_bottom {
        height: auto;
    }

    .form_bottom form input {
        margin-right: 0px;
        /*margin-bottom: 3rem;*/
    }

    .form_bottom form input:nth-child(3) {
        width: 100%;
    }

    .form_bottom form button {
        position: static;
    }

    .Honors_pages .Honors_swiper .swiper-slide {
        width: 50%;
    }

    .banner_pages {
        /*height: 22rem;*/
    }

    .Project_Introduction .out .left {
        height: auto;
    }

    .Profit_calculation .out .box {
        width: 100%;
        margin-bottom: 2rem;
    }

    .Profit_calculation .out .box:last-child {
        margin-bottom: 0px;
    }

    .Resource_pages .out .box .img {
        height: 23rem;
    }

    .Resource_pages .out .box .text {
        padding: 2rem 2rem;
    }

    .Resource_pages .out .box .text h3 {
        font-size: 1.8rem;
    }

    .Resource_pages .out .box .text .Moer {
        width: 4rem;
        height: 4rem;
    }

    .Resource_pages .out .box .text .Moer svg {
        height: 2rem;
        width: 2rem;
    }

    .Cases_pages .out {
        justify-content: space-between;
    }

    .Cases_pages .out .box {
        width: 48%;
    }

    .Policy_support .out .box {
        flex-wrap: wrap;
    }

    .Policy_support .out .box .item {
        width: 49.5%;
        margin: 0.5rem 0px;
        border: 0.1rem solid #185008 ;
        border-radius: 2rem ;
        padding: 1rem 1.5rem ;
        box-sizing: border-box ;
    }

    .Policy_support .out .box .item:nth-child(2) .tit,
    .Policy_support .out .box .item:nth-child(2) .horizontal_bar {
        margin-left: 0px;
    }

    .Policy_support .out .box:nth-child(2) {
        margin-top: 0px;
    }

    .Policy_support .icon_logo {
        display: none;
    }

    .Policy_support {
        background-size: 100% 100%;
    }

    .Policy_support .out {
        margin-top: 5rem;
    }

    .Policy_support .out .box .item .horizontal_bar {
        background: linear-gradient(to right, #185008c9, #18500800, #18500800) !important;
    }

    .Policy_support .out .box .item ul {
        list-style: none;
        padding-left: 0px;
    }

    .Policy_support .out .box .item:nth-child(2) ul li::after {
        display: none
    }

    .Policy_support .out .box .item:nth-child(2) ul li {
        text-indent: inherit;
    }
    
    .Policy_support .out .box .item .tit .icon {
        /* display: none; */
        position: relative ;
        left: 0px ;
        top: 0px ;
        transform: translate(0px);
        width: 3rem ;
        height: 3rem ;
        margin-right: 1rem ;
    }

}

@media (max-width:520px) {

    .Mask_layer {
        width: 145%;
        display: none !important;
    }

    .Resource_Matching_pages .out .swiper-slide {
        width: 85%;
        height: auto;
        min-height: 41rem;
    }

    .Resource_Matching_pages .out .swiper-slide .text {
        padding: 10%;
        box-sizing: border-box;
    }

    .swiper-button-prev {
        left: 2%;
    }

    .swiper-button-next {
        right: 2%;
    }

    .nav {
        height: 8rem;
    }

    .nav .logo {
        height: 6rem;
    }

    .banenr {
        margin-top: 8rem;
    }

    .banenr .swiper-slide .text {
        padding-bottom: 0px;
    }

    .banenr .swiper-slide .text h2 {
        font-size: 2.4rem;
        margin-bottom: 2rem;
    }

    .banenr .swiper-slide .text p {
        font-size: 1.5rem;
    }

    .banenr .Slide_downwards {
        display: none;
    }

    .banenr .Slide_downwards span {
        font-size: 1.4rem;
    }

    .About {
        padding: 6rem 0px;
    }

    .About .out .left {
        padding-top: 0px;
        display: none ;
    }

    .About .out .left h3 {
        font-size: 2.4rem;
        margin-bottom: 2rem;
    }

    .About .out .left p {
        font-size: 1.6rem;
    }

    .About .out .left a,
    .Resource_Matching .out .box a {
        width: 14rem;
        height: 4rem;
        font-size: 1.4rem;
    }

    .About .icon_out {
        gap: 3rem 0px;
        padding: 0px 5% ;
        box-sizing: border-box ;
        margin-top: 4rem ;
    }

    .About .icon_out .box .img {
        width: 4.6rem;
        height: 4.6rem ;
        margin-bottom: 2rem;
    }

    .About .icon_out .box {
        width:25%;
    }

    .About .icon_out .box span {
        font-size: 1.6rem ;
    }

    .Resource_Matching {
        margin-top: 6rem;
    }

    .Resource_Matching .out .box {
        width: 100% !important;
    }

    .Resource_Matching .out .box h3 {
        font-size: 2rem;
    }

    .Resource_Matching .out .box span {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .Resource_Matching .out .box p {
        font-size: 1.5rem;
    }

    .Resource_Matching .public_title {
        margin-bottom: 3rem;
    }

    .Case_Center {
        margin: 6rem 0px;
    }

    .Case_Center .Case_swiper {
        margin-top: 4rem ;
    }

    .Case_Center .Case_swiper .swiper-slide {
        width: 50%;
    }

    .Case_Center .Case_swiper .swiper-slide .img {
        height: 19rem ;
    }

    .form_bottom {
        padding: 6rem 0px;
    }

    .form_bottom h2 {
        font-size: 3.2rem;
    }

    .form_bottom form {
        margin-top: 4rem;
    }

    .form_bottom form input {
        height: 4.5rem;
        font-size: 1.5rem;
        /*margin-bottom: 2rem;*/
    }

    .footer_out {
        padding: 3rem 0px;
    }

    .footer_out .left .item {
        margin-bottom: 2rem;
        font-size: 1.6rem;
    }

    .logo_out .container {
        padding: 2rem 5%;
    }

    .logo_out .logo {
        height: 6.5rem;
    }

    .logo_out .share span {
        font-size: 1.6rem;
        margin-right: 0.6rem;
    }

    .logo_out .share img {
        width: 3.5rem;
        height: 3.5rem;
    }

    .Copyright p,
    .Copyright a {
        font-size: 1.3rem;
    }

    .Copyright .container {
        flex-wrap: wrap;
    }

    .Copyright .container .Technical_Support {
        position: static;
    }

    .banner_pages .text .container h2 {
        font-size: 3rem;
    }

    .Development_history .history_swiper .swiper-slide {
        width: 100%;
    }

    .Development_history .history_swiper .swiper-slide .time_box span {
        font-size: 2.4rem;
        left: 50% ;
        transform: translateX(-50%);
    }

    .Development_history .history_swiper .swiper-slide .text p {
        font-size: 1.5rem;
    }

    .Development_history .history_swiper .swiper-slide .text {
        padding: 3rem;
        background: none ;
        text-align: center ;
    }

    

    .banner_pages {
        margin-top: 8rem;
        /*height: 15rem;*/
    }

    .banner_pages .text .container h2 {
        font-size: 2.4rem;
    }

    .Honors_pages .Honors_swiper .swiper-slide {
        padding: 1rem 0.6rem ;
    }

    .Honors_pages .Honors_swiper .swiper-slide .box {
        padding: 1rem ;
    }

    .Honors_pages .Honors_swiper .swiper-slide .box .txt {
        padding-top: 1rem ;
    }

    .Project_Introduction {
        margin: 6rem 0px;
    }

    .Project_Introduction .out .right h3 {
        font-size: 2.4rem;
        margin-bottom: 2rem;
    }

    .Project_Introduction .out .right p {
        font-size: 1.6rem;
    }

    .Cooperation_mode {
        margin: 6rem 0px;
    }

    .Cooperation_mode .out .box .text h3 {
        font-size: 2rem;
    }

    .Cooperation_mode .out .box .text p {
        font-size: 1.6rem;
    }

    .Cooperation_mode .out .box .text svg {
        width: 6rem;
        height: 6rem;
    }

    .Cooperation_mode .out {
        background: none;
        box-shadow: none;
    }

    .Cooperation_mode .out .box {
        margin-bottom: 2rem;
        background: #FFF;
        box-shadow: 0px 0px 1.2rem 0.1rem rgba(0, 0, 0, 0.19);
    }

    .Cooperation_mode .out .box:last-child {
        margin-bottom: 0px;
    }

    .Profit_calculation {
        padding: 6rem 0px;
    }

    .Profit_calculation .out .box h3 {
        font-size: 2rem;
    }

    .Profit_calculation .out .box p {
        font-size: 1.5rem;
    }

    .Operations_Support {
        margin: 6rem 0px;
    }

    .Operations_Support .out .left h3 {
        font-size: 2.4rem;
        margin-bottom: 2rem;
    }

    .Operations_Support .out .left p {
        font-size: 1.6rem;
    }

    .Operations_Support .out .right .box {
        width: 100%;
        height: auto;
        position: static;
        margin-bottom: 3rem;
    }

    .Operations_Support .out .right .box:last-child {
        margin-bottom: 0px;
    }

    .Operations_Support .out .right {
        height: auto;
        gap: 2rem 0px;
    }

    .Operations_Support .out .right .box .icon,
    .Operations_Support .out .right .box .color {
        display: none;
    }

    .Resource_pages {
        margin: 6rem 0px;
    }

    .Resource_pages .out {
        margin-top: 4rem;
        gap: 2rem 0px;
    }

    .Resource_pages .out .box {
        width: 100%;
    }

    .Cases_pages {
        margin: 6rem 0px;
    }

    .Cases_pages .out {
        margin-top: 4rem;
    }

    .News_Pages .box a {
        flex-wrap: wrap;
    }

    .News_Pages .box .left {
        width: 100%;
        height: auto;
    }

    .News_Pages .box .right {
        margin-top: 4rem;
        width: 100%;
        padding-left: 0px;
    }

    .News_Pages .box .right h3 {
        margin-bottom: 2rem;
    }

    .News_Pages .box .right .tiem_box {
        margin-top: 4rem;
    }

    .News_Pages {
        margin: 6rem 0px;
    }

    .Contact_pages {
        margin: 6rem 0px;
    }

    .Contact_pages .out .box img {
        height: 6rem;
        width: 6rem;
    }

    .Contact_pages .out .box {
        width: 100%;
    }

    .Feedback .out input {
        width: 100%;
        margin-bottom: 2rem;
    }

    .CAPTCHA {
        width: 100%;
    }

    .Feedback .out button {
        width: 100%;
        height: 4rem;
        margin-top: 4rem;
    }

    .Feedback {
        padding: 6rem 0px;
    }

    .Feedback .out .title h2 {
        font-size: 2.4rem;
    }


    .News_Detail {
        margin: 6rem 0px;
    }

    .Policy_support .out .box .item .tit h3 {
        font-size: 2.4rem;
    }

    .Policy_support .out .box .item ul li {
        font-size: 1.5rem;
    }

    .Policy_support .out {
        padding-left: 0px ;
        padding-right: 0px ;
    }

    .Policy_support {
        min-height: auto ;
        padding-left: 0px ;
        padding: 6rem 5% ;
        box-sizing: border-box ;
    }

    .Resource_Matching .public_title h2::after {
        background: linear-gradient(to right, #18500800, #1850089c, #18500800) ;
    }

    .Resource_Matching .out {
        display: none ;
    }

    .Resource_Matching .public_title {
        padding: 0px 5% ;
        box-sizing: border-box ;
    }

    .Resource_Matching .SmallScreen {
        display: block ;
    }

    .swiper-button-prev:hover::after, .swiper-button-next:hover::after{
        color: #185008 ;
    }

    .banenr .swiper-pagination {
        bottom: 3rem ;
        left: 50% ;
        transform: translateX(-50%);
        width: auto ;
    }

    .Cases_pages_list .out .internal_swiper {
        height: 26.4rem ;
    }

    .Cases_pages_list .out .swiper_out {
        flex-wrap: wrap ;
        flex-direction: column-reverse ;
    }

    .Cases_pages_list .out .internal_swiper {
        width: 100% ;
    }

    .Cases_pages_list .out .swiper_out .text {
        width: 100% ;
    }
    

}

@media (min-width: 1025px) and (max-width:1800px) {

    .Development_history .out .swiper-button-prev,
    .Honors_pages .out .swiper-button-prev {
        left: 0px;
    }

    .Development_history .out .swiper-button-next,
    .Honors_pages .out .swiper-button-next {
        right: 0px;
    }

    .Resource_Matching .out .box h3 {
        font-size: 2.4rem;
    }
}







/* 超大屏幕 (1921px+) */
@media (min-width: 1921px) {
    html {
        font-size: 10px;
    }
}

/* 大桌面 (1601px - 1920px) */
@media (min-width: 1601px) and (max-width: 1920px) {
    html {
        font-size: calc(100vw / 192);
    }
}

/* 中桌面 (1441px - 1600px) */
@media (min-width: 1441px) and (max-width: 1600px) {
    html {
        font-size: calc(100vw / 180);
    }
}

/* 小桌面 (1025px - 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
    html {
        font-size: calc(100vw / 180);
    }
}

/* 平板横屏 (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    html {
        font-size: calc(100vw / 102.4);
    }
}

/* 平板竖屏/大手机 (521px - 768px) */
@media (min-width: 521px) and (max-width: 768px) {
    html {
        font-size: calc(100vw / 76.8);
    }
}

/* 平板竖屏/中手机 (521px - 768px) */
@media (max-width: 520px) {
    html {
        font-size: calc(100vw / 52);
    }
}

