.structure{
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.structure-bg {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #fff;
    background-image: url(./structure-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.structure-content {
    position: absolute;
    width: 100%;
    aspect-ratio: 16/9;
    top: 0;
    z-index: 1;
    overflow: hidden;
}

.structure-content-item{
    position: absolute;
    top: 461px;
    left: 553px;

    /* text-align: center; */
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.structure-content-item-text{
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    white-space: nowrap;
    top: -40px;

    cursor: pointer;
    position: absolute;

    transform: scale(1);
    transition: transform 0.3s ease;
}

.structure-content-item-icon{
    width: 56px;
    height: 90px;
    margin-top: 10px;
}

.third-stage{
    padding: 12px;
    width: 520px;
    background-color: #ffffff99;
    border: 1px solid #FFF;
    backdrop-filter: blur(5px);
    position: absolute;
    border-radius: 8px;
    bottom: 99px;
    display: none;

    cursor: pointer;
}

.third-stage-title{
    color: #0363e9;
    font-family: "OPPOSans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}

.third-stage-content{
    color: #4e5969;
    font-family: "OPPOSans";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-top: 12px;
}

.third-stage-itemList{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 12px;
}

.third-stage-item{
    width: calc(50% - 10px);
    padding: 8px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.third-stage-item-icon{
    padding-right: 8px;
}

.third-stage-item-icon>img{
    width: 32px;
    height: 32px;
}

.third-stage-item-text{
    color: #4e5969;
    font-family: "Source Han Sans CN";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    flex: 1;
}

.third-stage-item-rigth-icon{
    display: none;
}

.third-stage-item-rigth-icon>img{
    width: 16px;
    height: 16px;
}

.third-stage-item:hover>.third-stage-item-text{
    color: #0363e9;
}


.third-stage-item:hover>.third-stage-item-rigth-icon{
    display: block;
}


.scale-mouseover {
    /* 初始状态 */
    transform: scale(0);
}


.scale-mouseleave {
    /* 初始状态 */
    transform: scale(1);
}



.ripple {
    display: block;
    animation: ripple 0.2s ease-out;
}

@keyframes ripple {
    0% {
        /* border-radius: 50%; */
        transform: scale(0.5) translateY(100px);
        opacity: 0.2;
        /* width: 100px; */
        /* height: 100px; */
    }
    50%{
        opacity: 1;
    }
    100% {
        transform:  scale(1) translateY(0px);
        
        /* border-radius: 8px; */
        /* height: auto; */
    }
}


.structure-content-tab{
    position: absolute;
    top: 410px;
    left: 40px;
    width: 160px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    z-index: 2;
}

.tab-btn{
    width: 160px;
    display: flex;
    background-color: #ffffff33;
    color: #1D2129;
    padding: 10px 0;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    align-items: center;
    gap: 7px;
    
}

.tab-btn img{
width: 20px;
height: 20px;
    
}

.pitch{
    background-color: #fff;
    color: #0363E9;
}

.hospital-content{
    display: none;
    position: absolute;
    width: 100%;
    aspect-ratio: 16/9;
    top: 0;
    z-index: 1;
}