.package-category-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.package-category-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 40px;
    padding: 0 24px;
    border: 1px solid #dcdfe6;
    background: #ffffff;
    color: #303133;
    box-sizing: border-box;
}

.package-category-btn.is-active {
    border-color: #0064ff;
    background: #0064ff;
    color: #ffffff;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    gap: 12px;
}

.package-card {
    position: relative;
    min-height: 246px;
    padding: 20px 20px 18px;
    border: 1px solid #dcdfe6;
    background: #ffffff;
    box-sizing: border-box;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.package-card:hover {
    border-color: #3385ff;
}

.package-card.is-active {
    border-color: #0064ff;
    box-shadow: inset 0 0 0 1px #0064ff;
}

.package-card-check {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    width: 30px;
    height: 30px;
    padding: 2px 3px 0 0;
    background: #0064ff;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    box-sizing: border-box;
}

.package-card-check::after {
    content: '\2713';
    color: #ffffff;
}

.package-card-title {
    min-height: 28px;
    /*color: #ff7d00;*/
    color:#000000;
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    overflow-wrap: anywhere;
}
.ping_ip_class{
    z-index: 5!important;
}
.package-card-name {
    min-height: 40px;
    margin-top: 8px;
    color: #606266;
    font-size: 13px;
    line-height: 20px;
    overflow-wrap: anywhere;
}

.package-card-divider {
    margin: 12px 0;
    border-top: 1px dashed #d9ecff;
}

.package-spec-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.package-spec-list li {
    position: relative;
    min-height: 22px;
    padding-left: 14px;
    color: #303133;
    font-size: 14px;
    line-height: 22px;
    overflow-wrap: anywhere;
}

.package-spec-list li::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #dcdfe6;
}

.package-spec-list span {
    color: #606266;
}

.package-state {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #dcdfe6;
    color: #909399;
    font-size: 14px;
}

.package-state-error {
    color: #f56c6c;
}

.package-system-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px;
}

.package-system-card {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 104px;
    padding: 18px 20px;
    border: 1px solid #dcdfe6;
    background: #ffffff;
    color: #303133;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
    transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.package-system-card:hover {
    border-color: #3385ff;
}

.package-system-card.is-active {
    border-color: #0064ff;
    background: #f3f7ff;
    box-shadow: inset 0 0 0 1px #0064ff;
}

.package-system-icon {
    display: inline-flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 14px;
    color: #0064ff;
    font-size: 21px;
    font-weight: 600;
}

.package-system-icon img {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.package-system-text {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
}

.package-system-text strong,
.package-system-text small {
    display: block;
    overflow-wrap: anywhere;
}

.package-system-text strong {
    color: #303133;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.package-system-text small {
    color: #909399;
    font-size: 12px;
    line-height: 18px;
}

.package-login-box {
    max-width: 760px;
}

.package-bottom-bar .bottom-config-detail {
    height: auto;
    min-height: 68px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
    .package-bottom-bar .bottom-config-detail {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .package-category-btn {
        min-width: 140px;
        flex: 1 1 140px;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .package-system-grid {
        grid-template-columns: 1fr;
    }

    .package-bottom-bar .bottom-config-detail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
