@charset "utf-8";
/* 外部链接跳转提示页 jump.php */

body.jump-body {
    background: #f5f5f5;
}

.jump-page {
    width: var(--kx-page-width, 1300px);
    max-width: 100%;
    margin: 0 auto;
    padding: 15px 15px 40px;
    box-sizing: border-box;
}

.jump-panel {
    max-width: 640px;
    margin: 48px auto 0;
    padding: 36px 40px 32px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
    box-sizing: border-box;
    text-align: center;
}

.jump-panel-body {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    text-align: left;
}

.jump-icon {
    flex-shrink: 0;
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ff8a00;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 56px;
    text-align: center;
}

.jump-icon::before,
.jump-icon::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 12px;
    background: #ff8a00;
    border-radius: 2px;
}

.jump-icon::before {
    top: -4px;
    right: 6px;
    transform: rotate(25deg);
}

.jump-icon::after {
    top: -2px;
    right: -2px;
    height: 10px;
    transform: rotate(55deg);
}

.jump-icon span {
    display: block;
    line-height: 56px;
}

.jump-text {
    flex: 1;
    min-width: 0;
    padding-top: 2px;
}

.jump-title {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    font-weight: 700;
}

.jump-url-row {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    word-break: break-all;
}

.jump-url {
    color: #333;
}

.jump-tip {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #999;
}

.jump-go {
    display: inline-block;
    min-width: 140px;
    height: 40px;
    padding: 0 28px;
    border-radius: 4px;
    background: #2f89fc;
    color: #fff !important;
    font-size: 16px;
    line-height: 40px;
    text-decoration: none !important;
}

.jump-go:hover {
    background: #1a78f0;
    color: #fff !important;
}

@media (max-width: 640px) {
    .jump-panel {
        margin-top: 24px;
        padding: 24px 20px 20px;
    }
    .jump-panel-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
