@font-face {
    font-family: 'PlusJakartaSans';
    src: url('/www/web/fonts/PlusJakartaSans-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'PlusJakartaSans-Bold';
    src: url('/www/web/fonts/PlusJakartaSans-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'PlusJakartaSans-SemiBold';
    src: url('/www/web/fonts/PlusJakartaSans-SemiBold.ttf') format('truetype');
}
@font-face {
    font-family: 'PlusJakartaSans-Regular';
    src: url('/www/web/fonts/PlusJakartaSans-Regular.ttf') format('truetype');
}

a {
    text-decoration: none;
    color: #010101;
}


.page {
    background-color: rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
    margin: 0px auto;
   
}
.index-page {
     background-image: url(/www/web/images/page_bg.png);
    background-size: 100% 629px;
    background-position: top;
    background-repeat: no-repeat;
}
.hide {
    display: none;
}

.carousel {
            overflow: hidden;
            width: 100%;
            position: relative;
            margin: 0 auto;
            margin-top: 52px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
            align-items: center;
            height: 25vw;
            padding:0; /* 新增：给轨道两侧留白 */
            gap:1.5%;
        }

        .carousel-item {
            flex: 0 0 92%; /* 缩小项目宽度 */
            height: 25vw;
            margin: 0; /* 新增：项目间距 */
            transition: all 0.5s ease;
            opacity: 0.5;
            transform: scale(1);
            cursor: pointer;
            border-radius: 8px;
            background-size: cover;
            background-position: center;
            position: relative;
          
            text-align: center;
            border-radius: 32px;
           
        }

        .carousel-item.active {
            opacity: 1;
            transform: scale(1);
            z-index: 2;
            margin: 0 ; /* 增大活动项外边距 */
        }
        
        .carousel-item img{
            border-radius: 32px;
            width: 100%;
            height: 100%;
            object-fit: cover;
       
        }


.header {
    
    height: 64px;
   
    justify-content: space-between;
    margin: 0px 100px;
    align-items: center;
    gap: 83px;

}
.header a {
    text-decoration: none;
   color: rgba(1, 1, 1, 1);
}
.header a:hover {
    color: rgba(132, 63, 255, 1);
}
.header .logo {
    width: 157px;
    height: 20px;
    margin-right: 17px;
   
}



.header .nav .text {
    
    height: 23px;
    overflow-wrap: break-word;
    color: rgba(1, 1, 1, 1);
    font-size: 14px;
    font-family: 'PlusJakartaSans-Bold';
    text-align: center;
    white-space: nowrap;
    line-height: 23px;
    
    cursor: pointer;
}

.header .nav .text-active a{
    color: rgba(132, 63, 255, 1) !important;
}

.header .login-box {
    flex: 1;
}
.header .login {
    width:152px;
    height: 36px;
   background-image:url("/www/web/images/button_login.png");
   background-size: 100%;
   background-position: center;
   background-repeat: no-repeat;

   border-radius: 8px;
    cursor: pointer;
    float: right;
    text-align: center;
}

.header .login .text {
    width: 41px;
    height: 36px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    font-family: 'PlusJakartaSans-SemiBold';
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    line-height: 36px;

}

.header .users {
  
    flex: 1;
}

.header .line {
    height: 1px;
    overflow: hidden;
}
.header  .user {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
    cursor: pointer;
    position: relative;
    gap: 10px;
}
.header  .user .picture {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.header .user .show {
    width: 16px;
    height: 16px;
}
.home-top {
    height: 572px;
    margin: 0px 100px;
    display: flex;
    justify-content: space-between;
    gap: 109px;
}
.home-top .home-top-left ._left_box{
    margin-top: 96px;
}
.home-top .home-top-left ._left_box .text{
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: bold;
    font-size: 48px;
    color: #010101;
    line-height: 80px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}
.home-top .home-top-left ._left_box .gradient-text{
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: bold;
    font-size: 56px;

    line-height: 80px;
    text-align: left;
    font-style: normal;
    text-transform: none;
   
    background: linear-gradient(to right, #FF7BF9, #B74CFB, #7B44FB);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.home-top .home-top-right {
    width: 630px;
}
.home-top .select-btns {
    margin-top: 32px;
    display: flex;
    gap: 24px;

}
.home-top .select-btns .sel-btn {
    width: 225px;
    height: 56px;
    border-radius: 8px;
    border: 1px solid #843FFF;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: normal;
    font-size: 16px;
    color: #843FFF;
    line-height: 56px;
    text-align: center;
    font-style: normal;
    cursor: pointer;
}
.home-top .select-btns .sel-btn-active  {
    border: 0px;
    background-image: url("/www/web/images/sel_btn.png");
    color: #fff;
}
.home-top .select-btns .sel-btn a {
    color: #843FFF;
}
.home-top .select-btns .sel-btn-active a {
    color: #fff;
}
/*
.home-top .select-btns .sel-btn a:hover {
    color: #fff;
}
.home-top .select-btns .sel-btn:hover a {
    color: #fff;
}
.home-top .select-btns .sel-btn:hover {
    border: 0px;
    background-image: url("/www/web/images/sel_btn.png");
    color: #fff;
}
*/
.home-data-total {
    margin: 0px 100px;
    margin-top: 59px;
    display: flex;
    justify-content: space-between;
  
}
.home-data-total .total-box{
    text-align: left;
   
}
.home-data-total .total-box .num {
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: bold;
    font-size: 56px;
    color: #010101;
    line-height: 70px;
    text-align: center;
    font-style: normal;
    cursor: pointer;
} 
.home-data-total .total-box .clip {
    background: linear-gradient(to right, #FF7BF9, #B74CFB, #7B44FB);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
/*
.home-data-total .total-box .num:hover {
    
}
*/
.home-data-total .total-box .des {
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: 400;
    font-size: 24px;
    color: #010101;
    line-height: 30px;
    text-align: center;
    font-style: normal;
    margin-top: 5px;
}
.featured-projects {
    margin: 0px 100px;
    margin-top: 40px;
}
.featured-projects .featured-items {
    display: flex;
    justify-content: space-between;
    gap: 95px; 

}
.featured-projects .featured-items:not(:first-child) {
    margin-top: 32px;
}
.featured-projects .featured-items .item {
    box-sizing: border-box; 
    width:calc((100% - 95px - 95px) / 3);
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E9E9E9;
   
    display: grid;
    grid-template-rows: 53% 47%; /* 明确指定两行高度 */
    
}
.featured-projects .featured-items .item .img {
    width: 100%;
    overflow:hidden ;
}
.featured-projects .featured-items .item .img img {
    width: 100%; /* 让图片宽度适应容器宽度 */
    height: 100%; /* 让图片高度适应容器高度 */
    object-fit: cover; 
    border-radius: 16px 16px 0 0;
}
.featured-projects .featured-items .item .project{
  
    padding: 0px 24px 0px;
    margin-top: -30px;
}
.featured-projects .featured-items .item .project-logo {
   
}
.featured-projects .featured-items .item .project-logo img {
    box-sizing: border-box; 
    width: 56px;
    height: 56px;

    border:2px solid #FFFFFF;
    border-radius: 28px;
}
.featured-projects .featured-items .item .project-name{
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: bold;
    font-size: 18px;
    color: #010101;
    line-height: 23px;
    text-align: left;

    margin-top: 8px;
}
.featured-projects .featured-items .item .project-des {
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    line-height: 24px;
    text-align: left;
    font-style: normal;
    margin-top: 8px;
    min-height: 72px;
}
.featured-projects .featured-items .item .project-moneys1 {
    margin-top: 16px;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    line-height: 24px;
    text-align: left;
    font-style: normal;
}
.featured-projects .featured-items .item .project-moneys1 span {
    display: inline-block;
}
.featured-projects .featured-items .item .project-moneys1  .num{
    background: linear-gradient(to right, #FF7BF9, #B74CFB, #7B44FB);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-right: 8px;
    font-weight: bold;
}
.featured-projects .featured-items .item .project-qs {
    margin-top: 16px;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: bold;
    font-size: 24px;
    color: #00C544;
    line-height: 24px;
    text-align: left;
    font-style: normal;

}
.featured-projects .featured-items .item .project-qs .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("/www/web/images/icon_liner.png");
    background-size: 20px 19px;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 3px;
}
.featured-projects .featured-items .item .project-moneys2 {
    margin-top: 16px;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
font-weight: 400;
font-size: 14px;
color: #666666;
line-height: 24px;
text-align: left;
font-style: normal;
}
.featured-projects .featured-items .item .project-moneys2 span {
    display: inline-block;
}
.featured-projects .featured-items .item .project-moneys2  .num{
    color: #010101;
    margin-right: 8px;
     font-weight: bold;
}
.featured-projects .view-more {
    margin: 56px auto 24px;
    width: 350px;
    height: 64px;
    line-height: 64px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #843FFF;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: normal;
    font-size: 18px;
    color: #843FFF;

    text-align: center;
    font-style: normal;
    cursor: pointer;
}
.featured-projects .view-more a {
    color: #843FFF;
}
.product {
    margin: 0px 100px;
    
}
.product .product-items {
    display: flex;
    justify-content: space-between;
    margin-top: 136px;
    gap:70px;
}
.product .product-items .item {
    flex: 1;
}
.product .product-items .line {
     width: 1px;
}
.product .product-items .line span{
    display: inline-block;
    width: 1px;
    height: 247px;
    border: 1px solid #EDEDED;
}
.product .product-items .item .sub{
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
font-weight: bold;
font-size: 28px;
color: #12141D;
line-height: 35px;
text-align: left;
font-style: normal;
margin-top: 36px;
}
.product .product-items .item .des {
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: 400;
    font-size: 18px;
    color: #666666;
    line-height: 30px;
    text-align: left;
    font-style: normal;
    margin-top: 17px;
}
.map {

    height: 711px;
    margin-top: 130px;
    background-image: url(/www/web/images/map_bg.png);
    background-size: 100% 711px;
    background-position: top;
    background-repeat: no-repeat;
    padding:0px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.map .map-left .map-title {
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
font-weight: bold;
font-size: 56px;
color: #93989A;
line-height: 70px;
text-align: left;
font-style: normal;
text-transform: none;
background: linear-gradient(to right, #FF7BF9, #B74CFB, #7B44FB);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.map .map-left .map-des{
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: 400;
    font-size: 18px;
    color: #666666;
    line-height: 30px;
    text-align: left;
    font-style: normal;
    margin-top: 16px;
}
.map .map-right img {
    width: 100%;
    height: 100%;
}
.popup {
    display: none;
    position: absolute;
    right: 100px;
    top: 62px;
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    width: 206px;
    height: 137px;
    border: 2px solid rgba(243, 243, 243, 1);
    margin: -2px 0 0 -2px;
    z-index: 1000;
}
.popup .userinfo {
      margin-top: 20px;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;

}
.popup .userinfo .user-icon {
     width: 40px;
    height: 40px;
    border-radius: 50%;
}
.popup .userinfo .text {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
  text-overflow: ellipsis;

    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
font-weight: 600;
font-size: 14px;
color: #010101;
line-height: 21px;
text-align: left;
font-style: normal;
text-transform: none;
}

.popup .out {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    cursor: pointer;

}
.popup .out .out-icon {
    width: 20px;
    height: 20px;
}
.popup .out .text {
    flex: 1;
    overflow: hidden;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
font-weight: normal;
font-size: 14px;
color: #E23434;
line-height: 18px;
text-align: left;
font-style: normal;
text-transform: none;

}
.swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
}


.swiper-slide {

    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  
}

.swiper-button-next{
    width: 50px !important;
    height: 50px !important;
    background-image: url('/www/web/images/right.png');
}
.swiper-button-prev {
    width: 50px !important;
    height: 50px !important;
    background-image: url('/www/web/images/left.png');
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: '' !important;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: '' !important;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 21px;
}
.gradient-subtitle {
    width: 300px;
    margin: 0px 100px;
    margin-top: 120px;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-size: 32px;
    font-weight: bold;
    line-height: 40px;
    text-align: left;
    text-transform: none;
    background: linear-gradient(to right, #FF7BF9, #B74CFB, #7B44FB);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.subtitle-des {
    margin: 0px 100px;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: 400;
    font-size: 18px;
    color: #93989A;
    line-height: 23px;
    text-align: left;
    font-style: normal;
    margin-top: 4px;
}
.subtitle {

    height: 28px;
    overflow-wrap: break-word;
    color: rgba(1, 1, 1, 1);
    font-size: 28px;
    font-family: Syne-Bold;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 28px;
    margin: 56px auto 40px;
}



.text-group_3 {
    height: 64px;
    margin: 24px 0 18px 0px;
}

.text_12 {
    width: 140px;
    height: 31px;
    overflow-wrap: break-word;
    color: rgba(1, 1, 1, 1);
    font-size: 24px;
    font-family: 'PlusJakartaSans-SemiBold';
    text-align: left;
    white-space: nowrap;
    line-height: 31px;
}

.text_13 {
    width: 346px;
    height: 29px;
    overflow-wrap: break-word;
    color: rgba(147, 152, 154, 1);
    font-size: 16px;
    font-family: 'PlusJakartaSans-Regular';

    text-align: left;
    white-space: nowrap;
    line-height: 29px;
    margin-top: 4px;
}

.overview {
    margin: 0px 100px;
    padding: 0px;
    position: relative;
}

.sub-title {
    text-align: center;
    height: 28px;
    font-family: Syne, Syne;
    font-weight: bold;
    font-size: 28px;
    color: #010101;
    line-height: 28px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin: 67px 0 42px 0px;
}

.overview .tabs {
    height: 52px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}

.overview .tabs .tab {
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: bold;
    font-size: 16px;
    color: #010101;
    line-height: 52px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    cursor: pointer;
    padding: 0px 24px;

}
.overview .tabs .tab:hover{
    background: #F7F9FA;;
    border-radius: 15px;
  

}

.overview .tabs .active {
    height: 52px;
    background: #F2EBFF;
    border-radius: 15px;
    color: #843DFF;


}

.overview .list {
    margin-top: 59px;
    margin-bottom: 30px;
}

.overview .list .list-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: normal;
    font-size: 16px;
    color: #010101;

    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 10px;
}

.overview .list .list-flex .project {
    width: 30%;
}

.overview .list .list-flex .tag {
    width: 30%;
}

.overview .list .list-flex .intro {
    flex: 1;
}

.overview .list .list-content-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
     font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: normal;
    font-size: 16px;
    color: #010101;

    text-align: left;
    font-style: normal;
    text-transform: none;
 
    border-bottom: 1px solid #F3F3F3;

}
.overview .list .list-content-flex:last-child{
    border-bottom: none;
}
.overview .list .list-content-flex .project {
    width: 30%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

.overview .list .list-content-flex .tag {
    width: 30%;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: normal;
    font-size: 14px;
    color: #010101;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.overview .list .list-content-flex .intro {
    flex: 1;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: normal;
    font-size: 14px;
    color: #010101;
    text-align: left;
    font-style: normal;
    text-transform: none;
    line-height: 23px;
}

.overview .list .list-content-flex .project .num {
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: normal;
    font-size: 14px;
    color: #93989A;
    line-height: 94px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    width:20px;
}

.overview .list .list-content-flex .project .listlogo {
    width: 54px;
    height: 54px;
     border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: #ddd;
       
 
}
.overview .list .list-content-flex .project .listlogo img {
    width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.overview .list .list-content-flex .project .name {
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: bold;
    font-size: 14px;
    color: #010101;
    line-height: 94px;
    text-align: left;
    font-style: normal;
    text-transform: none;

}
.overview .list .list-content-flex .project .name a {
    text-decoration: none;
    color: #010101;
}
.overview .list .list-content-flex .project .name a:hover {
    color: #010101;
}

.overview .list .list-line {
    height: 1px;
    background: #F3F3F3;
  
}


.overview .unlock {
    width: 100%;
    padding-top: 178px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#fff));
    background-image: linear-gradient(-180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    position: absolute;
    left: 0;
   
    bottom: 0;
    z-index: 10;
}


.overview .unlock .btn {
    width: 260px;
    height: 48px;
    margin: 0px auto;
  
   background: #843DFF;
   border-radius: 8px;
    line-height: 48px;
    text-align: center;
    border-radius: 12px;

    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;

    text-align: center;
    font-style: normal;
    text-transform: none;
    cursor: pointer;
    
}

.footer {
    height: 500px;
    background: url(/www/web/images/footerBg.png) 100% no-repeat;
    background-size: 100% 100%;
}

.footer .footerContent {
   
    margin: 0px 100px;
    padding: 61px 0px 64px 0px;
}

.footTop {
    display: flex;
    justify-content: space-between;
    gap: 300px;
}

.footTop .left {
    width: 400px;
}

.footTop .left .webTitle {
    height:35px;

    background-image: url('/www/web/images/foot-logo.png');
    background-size: 276px 35px;
    background-position: left center;
    background-repeat: no-repeat;
  
}

.footTop .left .adviceDesc {
    width: 378px;
    height: 58px;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: 400;
    font-size: 14px;
    color: #93989A;
    line-height: 29px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin: 48px 0px 28px 0px;
}

.footTop .left .adviceSubmit {
    width: 378px;
    height: 64px;
    background: #20222E;
    border-radius: 32px;
    margin-top: 28px;
    display: flex;
    justify-content: space-between;
}

.footTop .left .adviceSubmit .input {
    height: 26px;
    width: 200px;
    background: #20222E;
    margin-top: 20px;
    border: none;
    outline: none;
    margin-left: 20px;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: 400;
    font-size: 14px;
    color: #93989A;
    line-height: 26px;
    text-align: left;
    font-style: normal;
    text-transform: none;

}

.footTop .left .adviceSubmit .icon {
    height: 40px;
    width: 120px;
    background-image: url('/www/web/images/btn_Subscribe.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: bold;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 40px;
    text-align: center;
    font-style: normal;
    margin-right: 10px;
    margin-top: 12px;
}

.footTop .right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 100px;
}

.footTop .right .listTitle {
    height: 26px;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 26px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.footTop .right ul {
    list-style-type: none;
    padding-left: 0px;
    margin-left: 0px;
    list-style-position: inside;
    margin-top: 40px;

}

.footTop .right ul li {
    height: 40px;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: 400;
    font-size: 14px;
    color: #93989A;
    line-height: 40px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    list-style-type: none;
}
.footTop .right ul li a {
    text-decoration: none;
    color: #93989A;
}
.footTop .right ul li a:hover {
    color: #93989A;
}

.footLine {
   
    height: 2px;
    background: #242634;
    margin: 0px auto;
    margin-top: 60px;
}

.footBottom {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 45px;
}

.footBottom .bText {
    flex: 1;
    height: 26px;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 26px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.footBottom .bText1 {
    width: 150px;
    height: 26px;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: 400;
    font-size: 14px;
    color: #93989A;
    line-height: 26px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}


.org-page {
    
    margin: 0px 100px;
    padding: 0px;
}
.org-page .h-title {
   
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: bold;
    font-size: 28px;
    color: #010101;
    line-height: 35px;
    text-align: left;
    font-style: normal;
    margin-top:48px ;
    text-transform: none;
   
}
.org-page .h-title span {
     background: linear-gradient(to right, #FF7BF9, #B74CFB, #7B44FB);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.org-page .h-desc {
   font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: 400;
    font-size: 14px;
    color: #93989A;
    line-height: 24px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-top: 8px;
}
.org-page .search-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 97px;
}
.org-page .search-bar .search {
    width: 340px;
    height: 52px;
    background: #F7F9FA;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:10px;
 }
 .org-page .search-bar .search .icon {
        width: 36px;
        height: 52px;
        background-image: url('/www/web/images/search-icon.png');
        background-size: 24px 24px;
        background-repeat: no-repeat;
        background-position: right center;
 }
 .org-page .search-bar .search .input {
    flex: 1;
 }
  .org-page .search-bar .search input {
    width: 100%;
    height: 52px;
    border:none;
    outline: none;
        background: #F7F9FA;
    border-radius: 16px;
  }
.org-page .tabs {
    flex:1;
    height: 52px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}
.org-page .tabs .tab {
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: bold;
    font-size: 16px;
    color: #010101;
    line-height: 52px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: #F7F9FA;
    border-radius: 16px;
    
}
.org-page .tabs .tab:hover {
     height: 52px;
    background: #F2EBFF;
    border-radius: 16px;
    color: #843DFF;
    padding: 0px 24px;
}
.org-page .tabs .active {
    height: 52px;
    background: #F2EBFF;
    border-radius: 16px;
    color: #843DFF;
    padding: 0px 24px;
    
}

.org-page .tabs-two {
    height: 52px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}
.org-page .tabs-two .tab-two {
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: bold;
    font-size: 16px;
    color: #010101;
    line-height: 52px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: #F7F9FA;
    border-radius: 16px;
     padding: 0px 24px;
     display: flex;
     align-items: center;
     cursor: pointer;
    
}
.org-page .tabs-two .tab-two img {
    margin-right: 5px;
}
.org-page .tabs-two .tab-two:hover {
     height: 52px;
    background: #FEF1FE;
    border-radius: 16px;

    color: #FC7FF9;
    padding: 0px 24px;
}
.org-page .tabs-two .active {
   height: 52px;
    background: #FEF1FE;
    border-radius: 16px;
  
    color: #FC7FF9;
    padding: 0px 24px;
    
}
.org-page .search-bar-1 {
    margin-top: 32px;
}

.org-page .list {
    margin-top: 59px;
}
.org-page .list .list-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: normal;
    font-size: 16px;
    color: #010101;
}
.org-page .list .list-flex .project {
    width: 30%;
}
.org-page .list .list-flex .tag {
    width: 30%;
}
.org-page .list .list-flex .intro {
    flex: 1;
}

.org-page .list .list-content-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 7px;
    border-bottom:1px solid #F3F3F3;
}
.org-page .list .list-content-flex:last-child{
     border:none;
}
.org-page .list .list-content-flex .project {
    width: 30%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}
.org-page .list .list-content-flex .tag {
    width: 30%;
}
.org-page .list .list-content-flex .intro {
    flex: 1;
}
.org-page .list .list-content-flex .project .num{
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: normal;
    font-size: 16px;
    color: #93989A;
    line-height: 94px;
    text-align: center;
    font-style: normal;
    text-transform: none;
}
.org-page .list .list-content-flex .project .logo{
    width: 54px;
    height: 54px;
}
.org-page .list .list-content-flex .project .name{
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: bold;
    font-size: 14px;
    color: #010101;
    line-height: 94px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}
.org-page .list .list-line {
    height: 1px;
    background: #F3F3F3;;
}

/* 模糊遮盖层 */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 82vh; /* 覆盖容器高度的70% */
  background: linear-gradient(
    to top, 
    rgba(255, 255, 255, 0.95) 20%,
    rgba(255, 255, 255, 0.4) 80%,
    transparent 100%
  );
  backdrop-filter: blur(8px);
  mask-image: linear-gradient(
    to top, 
    black 20%, 
    transparent 100%
  );
  pointer-events: none; /* 允许穿透点击 */
}

.org-page .unlock {
    margin-top: 40px;
}
.org-page .unlock .btn {
    width: 260px;
    height: 48px;
    margin: 0px auto;
  background: #843DFF;
   border-radius: 8px;
    line-height: 48px;
    text-align: center;
    border-radius: 12px;
    
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;

    text-align: center;
    font-style: normal;
    text-transform: none;
}
.apply-box {
    width: 840px;
    padding-bottom: 56px;
    background: #FFFFFF;
    box-shadow: 0px 4px 100px 0px rgba(202, 202, 202, 0.2);
    border-radius: 16px;
    border: 1px solid #F3F3F3;
    margin: 88px auto;
}
.apply-box .h-title {
    height: 30px;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: bold;
    font-size: 24px;
    color: #010101;
    line-height: 30px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin: 0px auto;
    margin-top: 56px;
}
.apply-box .h-desc {
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
font-weight: normal;
font-size: 16px;
color: #93989A;
line-height: 21px;
text-align: center;
font-style: normal;
text-transform: none;
margin-top: 12px;
}
.apply-box .selects .select{
    width: 540px;
    height: 53px;
    background: #F7F9FA;
    border-radius: 12px;
    margin: 0px auto;
    margin-top: 27px;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: normal;
    font-size: 14px;
    color: #93989A;
    line-height: 53px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    cursor: pointer;
}
.apply-box .selects .active{
    background:#F2EBFF;
    color:#843DFF;
}
.apply-box .selects .or {
    width: 540px;
    height: 21px;
    margin: 0px auto;
    margin-top: 27px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.apply-box .selects .or .line {
    height: 1px;
    width: 238px;
    background: #F3F3F3;;
}
.apply-box .selects .or .text{
    flex: 1;
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: normal;
    font-size: 16px;
    color: #93989A;
    line-height: 21px;
    text-align: center;
    font-style: normal;
    text-transform: none;
}
.select-btn {
    margin: 0px auto;
    margin-top: 57px;
    width: 540px;
    height: 56px;
   /*background: #843DFF;
   border-radius: 8px;*/
    font-family: 'PlusJakartaSans', 'PlusJakartaSans';
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 56px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    cursor: pointer;
    background-image: url('/www/web/images/select-btn.png');
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center;

}