@charset "utf-8";
 /* 业务模块样式 - Business */
.business main {
    overflow: hidden;
    width: 100%;
    height: auto;
    background: linear-gradient( 130deg, #eff0f4 2%, #e2e7f9 12%, rgba(229, 234, 250, 0) 40%, rgba(229, 234, 250, 0) 60%, #e2e7f9 85% );
}
.business main .bg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.business main .row {
    position: relative;
    z-index: 5
}

.business main .r1 {
    position: relative;
    z-index: 6;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center; padding-top:200px; padding-bottom:200px;
}
/* 默认圆形遮罩 */
.business main .r1::before {
    content: '';
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    height: 450px;
    transition: opacity 0.8s ease, background-image 0.5s ease;
    border-radius: 50%;
    margin-left: -225px;
    margin-top: -225px;
    z-index: 3;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

/* 鼠标悬停中间文字区域 → 圆形遮罩变深 */
.business main .r1:has(.msgItems:hover)::before {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.business main .r1 .bg .photo {
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    height: 450px;
    opacity: 0;
    transition: opacity 0.8s ease;
    border-radius: 50%;
    margin-left: -225px;
    margin-top: -225px;
    z-index:2
}
.business main .r1 .bg .photo.on { opacity: 1; }

.business main .r1 .bg .mask {
    position: absolute;
    right: 0;
    height: 100%;
    width: 100%;
    bottom: 0;
    z-index: 2;
}

.business main .r1 .inner {
    z-index: 10;
    position: relative;
    display: grid;
    grid-template-columns: 20% 60% 20%;
    -webkit-box-align: end;
    -webkit-align-items: end;
    -ms-flex-align: end;
    align-items: end;
    width: 90%;
    max-width: 1146px;
    min-height: 600px;
}

/* 左侧列表 */
.business main .r1 .inner .left .items {
    padding-bottom:0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}



/* 强制左侧菜单全部显示、不滚动、不居中 */
#leftSwiper,
#leftSwiper .swiper-wrapper {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    transform: none !important;
    transition: none !important;
    gap: 4px !important;
}
#leftSwiper .swiper-slide {
    height: auto !important;
}
.business main .r1 .inner .left .items .list {
    padding-left:22px;
    position: relative;
    margin: 4px 0;
    cursor: pointer;
    height:50px;
    display: flex;
    align-items: flex-start;
    background:none
}

.business main .r1 .inner .left .items .list>i {
    position: absolute;
    left: 0;
    top:3px;
    opacity: 0;
    transition: color .5s var(--ease),opacity .5s var(--ease);
    font-size:16px;
}

.business main .r1 .inner .left .items .list>span {
    color: rgba(0,47,165,0.5);
    transition: color .5s var(--ease);
    font-size:16px;
}

.business main .r1 .inner .left .items .list.on>i {
    opacity: 1;
    color:rgba(0,47,165,0.75);
}

.business main .r1 .inner .left .items .list.on>span {
    color: #002FA5;
}

/* 中间盒子 */
.business main .r1 .inner .box {
    width: 100%;
    height: 100%;
    position: relative;
}

.business main .r1 .inner .box .ringBox {
    position: absolute;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    left: 5px;
    top: 5px;
    transition: opacity 2s var(--ease),transform 2s var(--ease);
    transform: rotate(-120deg) scale3d(.8,.8,.8);
    opacity: 0; z-index:7
}

.business main .r1 .inner .box .ringBox.go {
    transform: rotate(0) scale3d(1,1,1);
    opacity: 1;
}

.business main .r1 .inner .box .ringBox .ring {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    border: 1px dashed rgba(255,255,255,0.15);
    border-radius: 50%;
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.business main .r1 .inner .box .ringBox .ring .dotItems {
    width: 1px;
    perspective: 5rem;
    position: absolute;
    transform-origin: 50% 50%;
    bottom: 50%;
    left: 50%;
    height: 50%;
}
#ringDots .dot:nth-child(1) .pic img {
    transform: rotate(0deg) !important;
}
#ringDots .dot:nth-child(2) .pic img {
    transform: rotate(36deg) !important;
}
#ringDots .dot:nth-child(3) .pic img {
    transform: rotate(-100deg) !important;
}
#ringDots .dot:nth-child(4) .pic img {
    transform: rotate(-60deg) !important;
}
#ringDots .dot:nth-child(5) .pic img {
    transform: rotate(-18deg) !important;
}
#ringDots .dot:nth-child(6) .pic img {
    transform: rotate(18deg) !important;    margin-top: -10px;
}

.business main .r1 .inner .box .ringBox .ring .dotItems .dot {
    height: calc(100% + 4px);
    position: absolute;
    top: -4px;
    left: 0;
    transform-origin: 50% 100%;
    transition: opacity .5s cubic-bezier(.38,0,0,1);
    transform: rotate(calc(var(--deg) * 1deg));
}

.business main .r1 .inner .box .ringBox .ring .dotItems .dot .imgBox {
    display: block;
    pointer-events: auto;
    width:100px;
    height:100px;
    cursor: pointer;
    position: absolute;
    transform-origin: 50% 100%;
    left: -50px;
    top: -50px;
    transform: scale3d(1,1,1);
}

.business main .r1 .inner .box .ringBox .ring .dotItems .dot .imgBox .pic {
    width:100px;
    height:100px;
    position: absolute;
    left:0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1s var(--ease), transform 1s var(--ease), border-color 0.3s;
    transform: rotate(calc(var(--deg) * -1deg));
}

/* 激活态图片 */
.business main .r1 .inner .box .ringBox .ring .dotItems .dot:nth-child(1) .imgBox .pic {
    transform: rotate(calc(var(--deg) * -1deg)) scale(0.6) !important;
}
.business main .r1 .inner .box .ringBox .ring .dotItems .dot:nth-child(2) .imgBox .pic {
    transform: rotate(calc(var(--deg) * -1deg)) scale(0.65) !important;
}
.business main .r1 .inner .box .ringBox .ring .dotItems .dot:nth-child(3) .imgBox .pic {
    transform: rotate(calc(var(--deg) * -1deg)) scale(0.7) !important;
}
.business main .r1 .inner .box .ringBox .ring .dotItems .dot:nth-child(4) .imgBox .pic {
    transform: rotate(calc(var(--deg) * -1deg)) scale(0.82) !important;
}
.business main .r1 .inner .box .ringBox .ring .dotItems .dot:nth-child(5) .imgBox .pic {
    transform: rotate(calc(var(--deg) * -1deg)) scale(0.8) !important;
}
.business main .r1 .inner .box .ringBox .ring .dotItems .dot:nth-child(6) .imgBox .pic {
    transform: rotate(calc(var(--deg) * -1deg)) scale(0.9) !important;
}

/* 文字内容 */
.business main .r1 .inner .box .msgItems {
    z-index: 7;
    transition: opacity 2s var(--ease),transform 2s var(--ease);
    opacity: 0;
        position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    height: 450px;
    opacity: 0;
    transition: opacity 0.8s ease;
    border-radius: 50%;
    margin-left: -225px;
    margin-top: -225px;
	
}
.business main .r1 .inner .box .msgItems.go {
    opacity: 1;
    transform: scale(1);
}

.business main .r1 .inner .box .msgItems .msg {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    pointer-events: none;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s ease;
}
.business main .r1 .inner .box .msgItems .msg.on {
    opacity: 1;
    transform: translateY(30px);
    pointer-events: auto;
}

.business main .r1 .inner .box .msgItems .msg .til {
    text-align: center;
    margin: 0px auto;
    max-width:400px;
    transform: translateY(70px);
    transition: transform 0.5s ease;
}
.business main .r1 .inner .box .msgItems .msg h2 {
    font-size: 40px;
    color: #fff;
    line-height: 1;
    margin-bottom: 56px;
    font-weight: 500;
}

/* ======================
   PC 端：默认隐藏
====================== */
.business main .r1 .inner .box .msgItems .msg small {
    font-size: 14px;
    color: #fff;
    display: block;
    line-height: 21px;
    opacity: 0;
    overflow: hidden;
    max-height: 0;
    margin-top: 0;
    transition: all 0.5s ease; max-width:280px; margin:0px auto
}

/* PC 端 hover 显示 */
.business main .r1 .inner .box .msgItems:hover .msg .til {
    transform: translateY(0);
}
.business main .r1 .inner .box .msgItems:hover .msg small {
    opacity: 1;
    max-height: 200px;
    margin-top: 10px;
}

.business main .r1 .inner .box .msgItems .msg p {
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 0.16rem;
    line-height: 1.6;
    max-width: 80%;
}

/* 按钮组 */
.business main .r1 .inner .set {
    display: flex;
    justify-content: flex-end;
}
.business main .r1 .inner .set .prevEl{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center; margin-right:8px;
}
.business main .r1 .inner .set .nextEl{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 圆环图标正常环形分布，不重叠 */
.business main .r1 .inner .box .ringBox .ring .dotItems .dot {
    transform: rotate(calc(var(--deg) * 1deg)) !important;
}
/* 图片反向转正，不旋转 */
.business main .r1 .inner .box .ringBox .ring .dotItems .dot .pic {
    transform: rotate(calc(var(--deg) * -1deg)) !important;
    transition: transform 0.4s ease;
}
/* 激活项放大 */
/* 统一基础样式（关键） */
.business main .r1 .inner .box .ringBox .ring .dotItems .dot .pic {
  display: block;
  transform-origin: center center; /* 让缩放从中心开始 */
}
.business main .r1 .inner .box .ringBox .ring .dotItems .dot:nth-child(1) .imgBox .pic {
    transform: rotate(calc(var(--deg) * -1deg)) scale(0.6) !important;
}
.business main .r1 .inner .box .ringBox .ring .dotItems .dot:nth-child(2) .imgBox .pic {
    transform: rotate(calc(var(--deg) * -1deg)) scale(0.65) !important;
}
.business main .r1 .inner .box .ringBox .ring .dotItems .dot:nth-child(3) .imgBox .pic {
    transform: rotate(calc(var(--deg) * -1deg)) scale(0.7) !important;
}
.business main .r1 .inner .box .ringBox .ring .dotItems .dot:nth-child(4) .imgBox .pic {
    transform: rotate(calc(var(--deg) * -1deg)) scale(0.82) !important;
}
.business main .r1 .inner .box .ringBox .ring .dotItems .dot:nth-child(5) .imgBox .pic {
    transform: rotate(calc(var(--deg) * -1deg)) scale(0.8) !important;
}
.business main .r1 .inner .box .ringBox .ring .dotItems .dot:nth-child(6) .imgBox .pic {
    transform: rotate(calc(var(--deg) * -1deg)) scale(0.9) !important;
}





.business main .section_title_jingzheng{
    position: absolute;
    left:50%;
    top: 60px;
    width: 1146px;
    margin-left:-573px;
}
.fazhan p{ line-height:2}

@media screen and (max-width: 768px) {
    .business main .r1 {
        height: auto;
        min-height: auto;
        padding: 50px 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 90px;
    }

    .business main .section_title_jingzheng {
        position: absolute;
        left: 30px;
        top: 30px;
        width: 90%;
        margin: 0;
        text-align: left;
    }
    .business main .section_title_jingzheng .section-title {
        font-size: 22px !important;
        line-height: 1.8;
        margin: 0 !important;
    }

    .business main .r1 .bg .photo {
        width: 200px;
        height: 200px;
        margin-left: -100px;
        margin-top: -100px;
        z-index: 2;
        top:40%;
        left: 50%;
    }
    .business main .r1::before {
        width: 200px;
        height: 200px;
        margin-left: -100px;
        margin-top: -100px;
        z-index: 3;
        top:40%
    }

    .business main .r1 .inner {
        width: 95%;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    #leftSwiper {
        width: 100%;
        order: 2;
        margin-top: 40px;
        position: relative;
        z-index: 10;
    }
    #leftSwiper,
    #leftSwiper .swiper-wrapper {
        height: auto !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
        transform: none !important;
        transition: none !important;
        gap: 8px !important;
    }
    #leftSwiper .swiper-slide {
        height: auto !important;
        width: auto !important;
    }
    .business main .r1 .inner .left .items .list {
        padding: 8px 12px;
        height: auto;
        background: rgba(255,255,255,0);
        border-radius: 4px;
        margin: 0;
    }
    .business main .r1 .inner .left .items .list > span {
        font-size: 13px;
        white-space: nowrap;
    }
    .business main .r1 .inner .left .items .list > i {
        font-size: 12px;
        position: absolute;
        left: -4px;
        top: 50%;
        opacity: 0;
        font-size: 14px;
        margin-top: -8px;
    }

    .business main .r1 .inner .box {
        order: 1;
        width: 280px;
        height: 280px;
        margin: 0 auto;
        padding-top:75px;
    }
    .business main .r1 .inner .box .msgItems{
      position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    opacity: 0;
    transition: opacity 0.8s ease;
    border-radius: 50%;
    margin-left: -100px;
    margin-top: -100px;
    }

    .business main .r1 .inner .box .ringBox .ring .dotItems .dot .imgBox .pic {
        width: 60px;
        height: 60px;
        left: 0;
    }
    

    .business main .r1 .inner .box .msgItems .msg {
        padding: 0 15px;
    }
    .business main .r1 .inner .box .msgItems .msg .til {
        max-width: 260px;
        transform: translateY(10px) !important;
    }
    .business main .r1 .inner .box .msgItems .msg h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    /* ======================
       移动端：强制直接显示 small
    ====================== */
    .business main .r1 .inner .box .msgItems .msg small {
        opacity: 1 !important;
        max-height: 200px !important;
        margin-top: 10px !important;
        font-size: 12px !important;
        line-height: 1.5 !important;
        display: block !important;
    }

    .business main .r1 .inner .set {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 0px;
        margin-top: 15px;
    }
	.business main .r1 .inner .set .prevEl {
    margin-right: 8px;
}

    .business main .r1 .inner .box .ringBox .ring .dotItems .dot {
        transform: rotate(calc(var(--deg) * 1deg)) !important;
    }
    .business main .r1 .inner .box .ringBox .ring .dotItems .dot .pic {
        transform: rotate(calc(var(--deg) * -1deg)) !important;
    }
    .intro-content {
        margin-top: -60px;
    }
    .section-title {
        font-size: 22px !important;
    }
    .service-slide-title {
        font-size: 22px !important;
    }
    .business main .r1 .inner .box .ringBox .ring .dotItems .dot .imgBox {
        display: block;
        pointer-events: auto;
        width: 4rem;
        height: 2.2rem;
        cursor: pointer;
        position: absolute;
        transform-origin: 50% 100%;
        left: -2rem;
        top: -1.1rem;
        transform: scale3d(1,1,1);
    }
    .business main .r1 .inner .box .ringBox .ring .dotItems .dot .imgBox .pic {
        width: 50px;
        height: 50px;
        left: 0;
    }
}

@media screen and (max-width: 768px) {
.business main .r1 .inner .box .ringBox {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        left: 10px;
        top: 50%;
        margin-top: -105px;
    }

}
@media screen and (max-width:395px) {
.business main .r1 .inner .box .ringBox {
        margin-top: -85px;
    }

}
@media screen and (max-width:390px) {
.business main .r1 .inner .box .ringBox {
      
    }

}