.cj {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 216px;
    margin-top: 50px;
}

.cj > div {
    padding: 16px;
    flex: 1;
    background-color: #ffffff;
    border: 1px solid var(--c);
    position: relative;
    border-radius: 6px;
    font-size: 16px;
    line-height: 24px;
}

.cj > div::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--c);
    border-right: 1px solid var(--c);
    transform: rotate(-45deg) translateX(-50%);
    background-color: #ffffff;
    left: 50%;
    z-index: 9;
    top: -10px;
}

.jg-title {
    text-align: center;
    font-size: 22px;
    line-height: 65px;
    margin-top: 50px;
    border-radius: 15px 15px 0 0;
    color: #ffffff;
    background: linear-gradient(90deg, rgba(129, 219, 178, 1) 0%, rgba(51, 195, 129, 1) 100%);
}

.jg {
    border: 1px solid #e2e2e4;
    border-top: none;
    border-radius: 0 0 15px 15px;
    padding: 30px 50px;
}

.jg i {
    font-style: normal;
    display: block;
    width: 130px;
    line-height: 40px;
    border-radius: 6px;
    background-color: #ffffff;
    text-align: center;
    color: #222222;
}

.jg-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 15px;
    margin-bottom: 10px;
}

.jg-grid .jg-tag {
    width: 100%;
}

.jg-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px dashed currentColor;
    padding: 10px;
}

.jg-tag i {
    width: 200px;
}

.jg-arrow {
    width: 40px;
    height: 25px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(56, 140, 242, 1) 100%);
    transform: rotate(90deg);
    clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);
}

.jg-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    border-radius: 6px;
    border: 1px solid currentColor;
    padding: 18px;
    align-content: start;
    width: 260px;
    align-items: center;
}

.jg-box i {
    width: 100%;
}

.jg-box h3 {
    text-align: center;
    grid-column: span 2;
    line-height: 30px;
}