:root {
    --astro-page-bg: #f5f5f5;
    --astro-panel-border: #dddddd;
    --astro-panel-head: #f5f5f5;
    --astro-text-main: #333333;
    --astro-line: #eeeeee;
    --astro-btn: #9bc271;
    --astro-btn-hover: #8bb264;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--astro-page-bg);
    color: var(--astro-text-main);
    font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
}

.astro-wrap {
    max-width: 760px;
    margin: 18px auto 36px;
}

.astro-panel {
    border: 1px solid var(--astro-panel-border);
    background: #ffffff;
    margin-bottom: 16px;
}

.astro-panel-title {
    height: 42px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-bottom: 1px solid var(--astro-panel-border);
    background: var(--astro-panel-head);
    font-size: 14px;
    font-weight: 700;
}

.astro-panel-title .icon {
    margin-right: 6px;
    color: #444444;
    font-size: 13px;
}

.astro-panel-body {
    padding: 14px 16px 18px;
}

.astro-tip {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: #444444;
}

.astro-divider {
    border: 0;
    border-top: 1px solid var(--astro-line);
    margin: 12px 0 18px;
}

.astro-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.astro-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
    text-align: center;
    line-height: 1.8;
}

.astro-label {
    min-width: 120px;
    text-align: right;
    font-size: 14px;
    font-weight: 700;
    color: #222222;
}

.astro-input,
.astro-select {
    height: 34px;
    padding: 0 8px;
    border: 1px solid #bfbfbf;
    border-radius: 4px;
    background: #ffffff;
    color: #333333;
    font-size: 14px;
    outline: none;
}

.astro-input:focus,
.astro-select:focus {
    border-color: #8fb96d;
}

.astro-name {
    width: 176px;
}

.astro-select.wide {
    min-width: 176px;
}

.astro-select.mid {
    min-width: 118px;
}

.astro-select.short {
    min-width: 74px;
}

.astro-radio {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0 2px;
    font-size: 14px;
    color: #222222;
    cursor: pointer;
}

.astro-radio input {
    margin: 0;
}

.astro-subsection {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
}

.astro-coords {
    display: none;
    width: 100%;
}

.astro-btn-wrap {
    padding-top: 6px;
}

.astro-btn {
    min-width: 82px;
    height: 38px;
    border: 0;
    border-radius: 4px;
    background: var(--astro-btn);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    padding: 0 18px;
}

.astro-btn:hover {
    background: var(--astro-btn-hover);
}

.astro-desc {
    border-top: 1px solid var(--astro-line);
    margin-top: 8px;
    padding-top: 14px;
    font-size: 14px;
    line-height: 2;
    color: #333333;
}

.astro-intro p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 2;
    color: #333333;
}

.astro-section-title {
    width: 100%;
    max-width: 620px;
    margin: 2px 0 0;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: #8b6a47;
}

.astro-section-divider {
    width: 100%;
    border: 0;
    border-top: 1px solid var(--astro-line);
    margin: 4px 0 2px;
}

@media (max-width: 768px) {
    .astro-wrap {
        margin: 12px;
    }

    .astro-form {
        align-items: stretch;
    }

    .astro-row,
    .astro-subsection {
        justify-content: flex-start;
    }

    .astro-label {
        min-width: 100%;
        text-align: left;
    }

    .astro-name,
    .astro-select.wide,
    .astro-select.mid,
    .astro-select.short {
        min-width: 0;
        width: auto;
        max-width: 100%;
    }

    .astro-section-title {
        max-width: 100%;
    }
}