* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    background: #eef1f5;
    color: #303442;
    min-height: 100vh;
}

.tp20-hero {
    width: 100%;
}

.tp20-banner {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (min-width: 769px) {
    body.tp20-body-root {
        background-color: #eef1f5;
        background-image: var(--tp20-pc-bg);
        background-size: 100% auto;
        background-position: center top;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    .tp20-hero {
        max-width: 750px;
        margin: 0 auto;
    }

    .tp20-banner {
        width: 100%;
        max-width: 750px;
        margin: 0 auto;
    }
}

.tp20-page {
    max-width: 100%;
    margin: 0 auto;
    padding: 24px 16px 40px;
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 769px) {
    .tp20-page {
        max-width: 750px;
    }
}

.tp20-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(15, 35, 70, 0.08);
    overflow: hidden;
}

.tp20-body {
    padding: 28px 32px 32px;
}

.tp20-cta {
    display: block;
    width: 100%;
    max-width: 520px;
    margin: 0 auto 20px;
    padding: 16px 32px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(90deg, #3dd598 0%, #f06292 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.tp20-cta:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.tp20-cta:active {
    transform: translateY(0);
}

.tp20-tip {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    color: #7981a4;
    margin-bottom: 24px;
}

.tp20-lines {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.tp20-line-item {
    position: relative;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, #f06292, #64b5f6, #3dd598);
}

.tp20-line-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 13px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
}

.tp20-line-inner:hover {
    background: #fafbfd;
}

.tp20-line-name {
    font-size: 15px;
    font-weight: 500;
    color: #303442;
    white-space: nowrap;
}

.tp20-line-status {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.tp20-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3dd598;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp20-check svg {
    width: 12px;
    height: 12px;
    fill: #fff;
}

.tp20-ms {
    font-size: 14px;
    font-weight: 500;
    color: #3dd598;
    min-width: 48px;
    text-align: right;
}

.tp20-info {
    position: relative;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, #f06292, #64b5f6, #3dd598);
}

.tp20-info-inner {
    padding: 24px 28px;
    border-radius: 15px;
    background: #f8f9fb;
}

.tp20-info-title {
    font-size: 16px;
    font-weight: 600;
    color: #303442;
    margin-bottom: 12px;
}

.tp20-info-text {
    font-size: 14px;
    line-height: 1.8;
    color: #7981a4;
}

@media screen and (max-width: 768px) {
    .tp20-page {
        padding: 16px 12px 28px;
    }

    .tp20-body {
        padding: 20px 16px 24px;
    }

    .tp20-cta {
        font-size: 16px;
        padding: 14px 24px;
    }

    .tp20-lines {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tp20-line-name {
        font-size: 14px;
    }

    .tp20-info-inner {
        padding: 20px 18px;
    }
}
