﻿.tool-page {
    display: grid;
    gap: 18px;
}

.tool-page > .tool-hero + .tool-card,
.tool-page > .tool-hero + .tool-two-col,
.tool-page > .tool-hero + .tool-stat-grid,
.tool-page > .tool-hero + .tool-note-columns,
.tool-page > .tool-card + .tool-card,
.tool-page > .tool-card + .tool-two-col,
.tool-page > .tool-card + .tool-note-columns,
.tool-page > .tool-stat-grid + .tool-card,
.tool-page > .tool-stat-grid + .tool-two-col,
.tool-page > .tool-two-col + .tool-note-columns {
    margin-top: 8px;
}

.tool-breadcrumb {
    margin-bottom: 18px;
}

.tool-hero,
.tool-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.82);
    background: rgba(255,255,255,0.9);
    box-shadow: 0 24px 60px rgba(17, 33, 54, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.tool-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 20px;
    padding: 30px;
    background:
        radial-gradient(circle at 0% 0%, rgba(239,127,94,0.18), rgba(239,127,94,0) 30%),
        radial-gradient(circle at 100% 100%, rgba(209,228,243,0.7), rgba(209,228,243,0) 38%),
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,249,240,0.92));
}

.tool-hero::before,
.tool-card::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.tool-hero::before {
    width: 220px;
    height: 220px;
    right: -70px;
    top: -100px;
    background: rgba(244,194,107,0.18);
}

.tool-card::after {
    width: 180px;
    height: 180px;
    left: -90px;
    bottom: -115px;
    background: rgba(209,228,243,0.26);
}

.tool-hero-copy,
.tool-hero-panel,
.tool-card > * {
    position: relative;
    z-index: 1;
}

.tool-kicker,
.tool-panel-title,
.tool-section-kicker,
.tool-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(19,34,56,0.08);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
    color: #132238;
}

.tool-kicker,
.tool-section-kicker {
    margin-bottom: 18px;
}

.tool-hero-copy h1,
.tool-card h2,
.tool-card h3 {
    margin: 0;
    color: #132238;
}

.tool-hero-copy h1 {
    font-size: clamp(34px, 4.1vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 900;
    max-width: 760px;
}

.tool-hero-copy p {
    margin: 18px 0 0;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.9;
    color: #5f6f84;
}

.tool-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.tool-meta span,
.tool-stat {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(19,34,56,0.08);
    box-shadow: 0 10px 22px rgba(17,33,54,0.05);
    font-size: 13px;
    font-weight: 800;
    color: #3f4f67;
}

.tool-hero-panel {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

.tool-panel,
.tool-cta-card {
    width: 100%;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.86);
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,249,253,0.92));
    padding: 24px;
    box-shadow: 0 18px 40px rgba(17,33,54,0.06);
}

.tool-panel-copy,
.tool-note-copy,
.tool-muted,
.tool-empty p,
.tool-card p {
    color: #617188;
    line-height: 1.8;
}

.tool-panel-copy,
.tool-card p {
    margin: 0;
    font-size: 14px;
}

.tool-point-list,
.tool-link-stack,
.tool-note-list,
.tool-info-list {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.tool-point-list li,
.tool-link-stack li,
.tool-note-list li,
.tool-info-list li {
    margin: 0;
    color: #4c5b72;
    font-size: 14px;
    line-height: 1.8;
}

.tool-point-list li::before,
.tool-note-list li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    background: linear-gradient(135deg, #ef7f5e, #f4c26b);
    box-shadow: 0 0 0 5px rgba(239,127,94,0.12);
}

.tool-grid,
.tool-two-col,
.tool-three-col {
    display: grid;
    gap: 18px;
}

.tool-two-col {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.tool-three-col {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(260px, 0.82fr);
}

.tool-card {
    padding: 26px;
}

.tool-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.tool-card-head p {
    margin-top: 10px;
}

.tool-card-head .tool-chip {
    flex-shrink: 0;
}

.tool-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tool-btn,
.tool-page input[type='submit'],
.tool-page input[type='button'],
.tool-page button,
.tool-page .btn {
    appearance: none;
    border: 0;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(19,34,56,0.08);
    box-shadow: 0 12px 24px rgba(17,33,54,0.06);
    color: #132238;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.18s ease;
    cursor: pointer;
}

.tool-btn.primary,
.tool-page input[type='submit'],
.tool-page .btn.btn-primary,
.tool-btn.is-accent {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #ef7f5e, #f4c26b);
    box-shadow: 0 18px 30px rgba(239,127,94,0.24);
}

.tool-btn.secondary,
.tool-page .btn.btn-default {
    background: rgba(255,255,255,0.95);
}

.tool-btn.is-dark {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #132238, #2d4f75);
    box-shadow: 0 18px 30px rgba(19,34,56,0.18);
}

.tool-btn:hover,
.tool-page input[type='submit']:hover,
.tool-page input[type='button']:hover,
.tool-page button:hover,
.tool-page .btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.tool-form,
.tool-result-box,
.tool-note-box,
.tool-output-box,
.tool-side-box {
    border-radius: 24px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.72);
    padding: 20px;
}

.tool-form-grid {
    display: grid;
    gap: 16px;
}

.tool-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.tool-field {
    display: grid;
    gap: 10px;
}

.tool-field label,
.tool-label {
    font-size: 13px;
    font-weight: 900;
    color: #132238;
    letter-spacing: 0.04em;
}

.tool-page input[type='text'],
.tool-page input[type='number'],
.tool-page input[type='url'],
.tool-page select,
.tool-page textarea,
.tool-rich-input {
    width: 100%;
    min-height: 50px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(19,34,56,0.1);
    background: rgba(255,255,255,0.95);
    color: #132238;
    font-size: 15px;
    line-height: 1.7;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.tool-page textarea {
    min-height: 150px;
    resize: vertical;
}

.tool-page input:focus,
.tool-page select:focus,
.tool-page textarea:focus {
    outline: none;
    border-color: rgba(239,127,94,0.45);
    box-shadow: 0 0 0 4px rgba(239,127,94,0.12);
}

.tool-inline-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.tool-result-state {
    display: grid;
    gap: 16px;
}

.tool-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.86);
}

.tool-table th,
.tool-table td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(19,34,56,0.08);
    text-align: left;
    vertical-align: top;
}

.tool-table tr:last-child th,
.tool-table tr:last-child td {
    border-bottom: 0;
}

.tool-table th {
    width: 140px;
    font-size: 13px;
    font-weight: 900;
    color: #52637b;
    background: rgba(245,248,251,0.82);
}

.tool-table td {
    font-size: 15px;
    color: #132238;
    font-weight: 700;
}

.tool-table-shell {
    overflow-x: auto;
}

.tool-highlight {
    color: #ef7f5e;
}

.tool-empty {
    display: grid;
    gap: 12px;
    align-content: center;
    min-height: 220px;
}

.tool-empty strong {
    font-size: 22px;
    color: #132238;
}

.tool-note-box h3,
.tool-side-box h3,
.tool-result-box h3,
.tool-output-box h3 {
    font-size: 22px;
    line-height: 1.25;
    margin: 0 0 12px;
}

.tool-link-stack a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 18px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.88);
    color: #132238;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.tool-link-stack a::after {
    content: "→";
    color: #98a2b3;
    font-size: 18px;
}

.tool-link-stack a:hover {
    transform: translateX(2px);
    box-shadow: 0 14px 28px rgba(17,33,54,0.06);
}

.tool-option-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.tool-page .checkbox-inline,
.tool-page .radio-inline,
.tool-option-card {
    margin: 0;
    min-height: 56px;
    border-radius: 18px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.88);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 700;
    color: #31445d;
}

.tool-page .checkbox-inline input,
.tool-page .radio-inline input {
    margin-top: 0;
}

.tool-page .checkbox-inline .form-control,
.tool-page .radio-inline .form-control {
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 14px;
}

.tool-page hr {
    margin: 22px 0;
    border: 0;
    border-top: 1px solid rgba(19,34,56,0.08);
}

.tool-result-preview {
    display: grid;
    place-items: center;
    min-height: 280px;
    border-radius: 24px;
    border: 1px dashed rgba(19,34,56,0.12);
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.9));
    padding: 20px;
}

.tool-result-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(17,33,54,0.12);
}

.tool-table td a {
    color: #ef7f5e;
    text-decoration: none;
    font-weight: 800;
}

.tool-table td a:hover {
    text-decoration: underline;
}

.tool-code-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.tool-code-grid textarea {
    min-height: 300px;
    font-family: Consolas, Monaco, monospace;
    font-size: 14px;
}

.tool-reference-stack {
    display: grid;
    gap: 18px;
}

.tool-reference-card {
    border-radius: 24px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.78);
    padding: 20px;
}

.tool-reference-card h3 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.25;
}

.tool-reference-table th,
.tool-reference-table td {
    width: auto;
    min-width: 96px;
    text-align: center;
    white-space: nowrap;
}

.tool-reference-table th {
    background: rgba(245,248,251,0.92);
}

.tool-long-copy {
    display: grid;
    gap: 12px;
}

.tool-long-copy p,
.tool-long-copy li {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: #52637b;
}

.tool-result-text {
    min-height: 120px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px dashed rgba(19,34,56,0.12);
    background: rgba(245,248,251,0.78);
    line-height: 1.9;
    color: #132238;
    font-size: 15px;
    word-break: break-word;
    white-space: pre-wrap;
}

.tool-rich-html {
    display: grid;
    gap: 18px;
}

.tool-rich-html h1,
.tool-rich-html h2,
.tool-rich-html h3,
.tool-rich-html h4 {
    margin: 0;
    color: #132238;
}

.tool-rich-html p,
.tool-rich-html li,
.tool-rich-html td,
.tool-rich-html th {
    line-height: 1.8;
}

.tool-rich-html table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.92);
}

.tool-rich-html th,
.tool-rich-html td {
    padding: 14px 16px;
    border-right: 1px solid rgba(19,34,56,0.08);
    border-bottom: 1px solid rgba(19,34,56,0.08);
    text-align: left;
    vertical-align: top;
    color: #31445d;
}

.tool-rich-html th {
    font-size: 13px;
    font-weight: 900;
    color: #52637b;
    background: rgba(245,248,251,0.92);
}

.tool-rich-html tr:last-child td,
.tool-rich-html tr:last-child th {
    border-bottom: 0;
}

.tool-rich-html td:last-child,
.tool-rich-html th:last-child {
    border-right: 0;
}

.tool-kinship-shell {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.92);
    box-shadow: 0 18px 40px rgba(17,33,54,0.06);
}

.tool-kinship-shell .qinshu_title {
    padding: 24px;
    display: grid;
    gap: 16px;
    background: linear-gradient(135deg, #3fb4d4, #7ad8e6);
}

.tool-kinship-shell .qinshu_title h3 {
    margin: 0;
    font-size: 18px;
    color: #fff;
    font-weight: 900;
}

.tool-kinship-shell .qinshu_title textarea {
    width: 100%;
    min-height: 92px;
    border: 0;
    resize: none;
    border-radius: 20px;
    padding: 16px 18px;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
    box-sizing: border-box;
}

.tool-kinship-shell .qinshu_title textarea::placeholder {
    color: rgba(255,255,255,0.75);
}

.tool-kinship-shell .qinshu_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.tool-kinship-shell .qinshu_table td {
    width: 25%;
    padding: 0;
    border-right: 1px solid rgba(19,34,56,0.08);
    border-bottom: 1px solid rgba(19,34,56,0.08);
}

.tool-kinship-shell .qinshu_table tr:last-child td {
    border-bottom: 0;
}

.tool-kinship-shell .qinshu_table td:last-child {
    border-right: 0;
}

.tool-kinship-shell button {
    width: 100%;
    min-height: 66px;
    border: 0;
    background: rgba(255,255,255,0.96);
    color: #132238;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.18s ease;
}

.tool-kinship-shell button:hover {
    background: rgba(245,248,251,0.96);
}

.tool-kinship-shell .qinshu_table tr:last-child td {
    background: linear-gradient(135deg, #ef7f5e, #f4c26b);
}

.tool-kinship-shell .qinshu_table tr:last-child button {
    background: transparent;
    color: #fff;
}

.tool-lunar-shell {
    display: grid;
    gap: 20px;
}

.tool-lunar-shell .boxabout {
    border-radius: 24px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.78);
    padding: 20px;
}

.tool-lunar-shell .boxabout p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.9;
    color: #52637b;
    text-indent: 0;
}

.tool-lunar-shell .boxabout p:last-child {
    margin-bottom: 0;
}

.tool-lunar-shell .yylFormConBg {
    border-radius: 28px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.88);
    padding: 24px;
    margin-top: 0;
}

.tool-lunar-shell .formInput + .formInput {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(19,34,56,0.08);
}

.tool-lunar-shell .choiceCon {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.tool-lunar-shell .choiceCon span {
    float: none;
    padding: 0;
    line-height: 1.6;
    color: #31445d;
    font-size: 14px;
    font-weight: 700;
}

.tool-lunar-shell .margin_f_45 {
    margin-left: 0;
}

.tool-lunar-shell .select_outer {
    float: none;
}

.tool-lunar-shell .select_outer select {
    min-height: 44px;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid rgba(19,34,56,0.1);
    background: rgba(255,255,255,0.96);
}

.tool-lunar-shell a.aSubmit,
.tool-lunar-shell a.aSubmitB {
    width: auto;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ef7f5e, #f4c26b);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 16px 28px rgba(239,127,94,0.18);
}

.tool-lunar-shell .pResult {
    width: auto;
    min-height: 58px;
    margin: 16px 0 0;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(245,248,251,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.8;
    box-sizing: border-box;
}

.tool-size-shell .hd {
    margin-bottom: 18px;
}

.tool-size-shell .hd h2 {
    margin: 0;
}

.tool-size-shell .box {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 18px;
}

.tool-size-shell .size_left {
    display: grid;
    gap: 12px;
}

.tool-size-shell .size_left > div {
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.84);
}

.tool-size-shell .size_left h3 {
    margin: 0 0 10px;
}

.tool-size-shell .size_left h3 span,
.tool-size-shell .size_left ul li {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(245,248,251,0.9);
    color: #31445d;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.tool-size-shell .size_left ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.tool-size-shell .size_right .right_form {
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.88);
}

.tool-size-shell .size_right form p {
    margin: 0 0 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tool-size-shell .size_right form span {
    flex: 1 1 220px;
    display: grid;
    gap: 8px;
    color: #31445d;
    font-size: 14px;
    font-weight: 700;
}

.tool-size-shell .size_right input[type='text'] {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid rgba(19,34,56,0.1);
    box-sizing: border-box;
}

.tool-size-shell .size_right .cmsc {
    align-items: center;
}

.tool-size-shell .size_right .cmsc .input-submit {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ef7f5e, #f4c26b);
    color: #fff;
    border: 0;
    font-weight: 800;
}

.tool-size-shell .size_right .cmsc input[type='text'] {
    flex: 1 1 180px;
}

.tool-size-shell .size_right h2 {
    margin: 0 0 14px;
}

.tool-size-shell .size_right table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 14px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.96);
}

.tool-size-shell .size_right td,
.tool-size-shell .size_right th {
    padding: 10px 12px;
    border-right: 1px solid rgba(19,34,56,0.08);
    border-bottom: 1px solid rgba(19,34,56,0.08);
    text-align: center;
    font-size: 14px;
    color: #31445d;
}

.tool-size-shell .size_right tr:last-child td,
.tool-size-shell .size_right tr:last-child th {
    border-bottom: 0;
}

.tool-size-shell .size_right td:last-child,
.tool-size-shell .size_right th:last-child {
    border-right: 0;
}

.tool-size-shell .size_right .p {
    font-size: 14px;
    line-height: 1.9;
    color: #52637b;
}

.tool-ems-panel .bd {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 20px;
}

.tool-ems-panel .step1,
.tool-ems-panel .step2 {
    float: none;
    width: auto;
    max-width: none;
    margin: 0;
}

.tool-ems-panel h3 {
    margin: 0 0 12px;
    color: #132238;
    font-size: 20px;
    line-height: 1.35;
}

.tool-ems-panel dl {
    margin: 0;
    border-radius: 24px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.76);
    overflow: hidden;
}

.tool-ems-panel dt,
.tool-ems-panel dd {
    border-bottom: 1px solid rgba(19,34,56,0.08);
}

.tool-ems-panel dt:last-of-type,
.tool-ems-panel dd:last-of-type {
    border-bottom: 0;
}

.tool-ems-panel dt {
    float: none;
    width: auto;
    margin: 0;
    padding: 16px 18px 0;
    color: #ef7f5e;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-align: left;
}

.tool-ems-panel dd {
    padding: 12px 18px 16px;
}

.tool-ems-panel dd a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    margin: 0 8px 8px 0;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.92);
    color: #31445d;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.18s ease;
}

.tool-ems-panel dd a.active,
.tool-ems-panel dd a:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #ef7f5e, #f4c26b);
    box-shadow: 0 14px 28px rgba(239,127,94,0.18);
}

.tool-ems-panel .search,
.tool-ems-panel .visit {
    width: auto;
    margin: 0 0 18px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.78);
}

.tool-ems-panel .search p,
.tool-ems-panel .visit p {
    margin: 0 0 14px;
    text-align: left;
}

.tool-ems-panel .search p:last-child,
.tool-ems-panel .visit p:last-child {
    margin-bottom: 0;
}

.tool-ems-panel .input-text,
.tool-ems-panel .input-code {
    width: 100%;
}

.tool-ems-panel .code {
    display: none;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tool-ems-panel .code img {
    max-height: 40px;
    border-radius: 12px;
}

.tool-ems-panel .links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.tool-ems-panel .links a {
    margin: 0;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 18px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.92);
    display: flex;
    align-items: center;
    color: #31445d;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.tool-ems-panel .links a:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(17,33,54,0.06);
}

.tool-embed {
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.92);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.86);
}

.tool-embed iframe {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    transition: height 0.2s ease;
}
.tool-iframe-note {
    margin-top: 18px;
}

.holiday-panel .jieri {
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.96);
}

.holiday-panel .tip {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(19,34,56,0.08);
    background: rgba(245,248,251,0.92);
    text-align: center;
    line-height: 1.9;
    color: #4f6078;
}

.holiday-panel a.cRed {
    color: #d24b31;
}

.holiday-panel a.cBlue {
    color: #2d78c7;
}

.holiday-panel a.cGreen {
    color: #1f8b55;
}

.holiday-panel .jieri a:hover {
    color: #ef7f5e;
}

.holiday-panel dl {
    overflow: hidden;
    position: relative;
    padding-left: 150px;
    border-bottom: 1px dashed rgba(19,34,56,0.1);
    background: linear-gradient(180deg, rgba(248,251,254,0.95), rgba(255,255,255,0.98));
}

.holiday-panel dt {
    float: left;
    width: 150px;
    height: 100%;
    margin-left: -150px;
    text-align: center;
}

.holiday-panel dd {
    overflow: hidden;
    min-height: 90px;
    padding: 14px 0;
    background: rgba(255,255,255,0.96);
}

.holiday-panel dd ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.holiday-panel dd li {
    float: left;
    width: 30%;
    min-height: 40px;
    padding-left: 3%;
    line-height: 1.7;
    display: flex;
    align-items: center;
}

.holiday-panel .infoBox {
    position: absolute;
    top: 50%;
    left: 0;
    width: 150px;
    height: 100%;
    text-align: center;
}

.holiday-panel .info {
    position: relative;
    top: -25px;
}

.holiday-panel .description p {
    padding: 20px 18px;
    margin: 0;
    text-align: center;
    line-height: 1.9;
}

.tool-catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.tool-catalog-card {
    min-height: 100%;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.86);
    box-shadow: 0 16px 34px rgba(17,33,54,0.06);
}

.tool-catalog-card h3 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 12px;
}

.tool-catalog-card h3 a {
    color: #132238;
    text-decoration: none;
}

.tool-catalog-card h3 a:hover {
    color: #ef7f5e;
}

.tool-catalog-card p {
    margin: 0;
}

.tool-subnav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.tool-subnav a {
    min-height: 44px;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.88);
    color: #324660;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.18s ease;
}

.tool-subnav a:hover,
.tool-subnav a.is-active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #ef7f5e, #f4c26b);
    box-shadow: 0 16px 28px rgba(239,127,94,0.2);
}

.tool-detail-copy {
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.72);
    color: #5f6f84;
    line-height: 1.9;
}

.tool-unit-group {
    display: grid;
    gap: 14px;
}

.tool-unit-block {
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.8);
}

.tool-unit-block h3 {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.2;
}

.tool-unit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.tool-unit-item {
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.92);
}

.tool-unit-item p {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 800;
    color: #31445d;
    line-height: 1.5;
}

.tool-unit-item p:last-child {
    margin-bottom: 0;
}

.tool-unit-item .input-text {
    width: 100%;
}

.tool-code-sections {
    display: grid;
    gap: 18px;
}

.tool-code-block {
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.84);
}

.tool-code-block h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.25;
}

.tool-code-block textarea {
    min-height: 130px;
    font-family: Consolas, Monaco, monospace;
    font-size: 14px;
}

.tool-select-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.tool-select-row strong {
    color: #132238;
    font-size: 14px;
}

.tool-calendar-shell {
    padding: 24px;
}

.tool-calendar-shell .rili-content {
    width: auto;
    max-width: 100%;
}

.tool-calendar-shell .rili-left,
.tool-calendar-shell .rili-right {
    float: none;
}

.tool-calendar-shell .rili-left {
    width: 100%;
    min-height: auto;
    height: auto;
    border-radius: 26px;
    border-color: rgba(19,34,56,0.08);
    background-color: rgba(255,255,255,0.96);
    box-shadow: 0 18px 40px rgba(17,33,54,0.06);
    background-position: 24px 18px;
}

.tool-calendar-shell .ltop span,
.tool-calendar-shell .ldays,
.tool-calendar-shell .rtop span,
.tool-calendar-shell .rtime span,
.tool-calendar-shell .rbottom span {
    width: 100%;
}

.tool-calendar-shell .ltop {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
}

.tool-calendar-shell .ltop span {
    float: none;
    width: auto;
    height: auto;
    line-height: 1.7;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    text-align: left;
}

.tool-calendar-shell .ltop p {
    float: none;
    margin: 0;
    height: auto;
    line-height: 1.7;
    font-size: 13px;
}

.tool-calendar-shell .ltop select {
    width: auto;
    min-width: 78px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
}

.tool-calendar-shell .ltop select[style*='width:40px'] {
    min-width: 64px;
}

.tool-calendar-shell .ltop input[type='button'] {
    min-height: 42px;
    padding: 0 16px;
}

.tool-calendar-shell #ganzhi {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    color: #617188;
}

.tool-calendar-shell .rili-right {
    width: 100%;
    margin-left: 0;
    margin-top: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
}

.tool-calendar-shell .rtime,
.tool-calendar-shell .rbottom,
.tool-calendar-shell .rtop {
    margin-bottom: 0;
    border-radius: 24px;
    border-color: rgba(19,34,56,0.08);
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(17,33,54,0.06);
}

.tool-calendar-shell .rtime span,
.tool-calendar-shell .rbottom span,
.tool-calendar-shell .rtop span {
    width: auto;
    min-height: 100%;
    padding: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,249,253,0.94));
}

.tool-calendar-shell .lnotice {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(245,248,251,0.9);
    border: 1px solid rgba(19,34,56,0.06);
}

.tool-calendar-shell #loading {
    height: auto !important;
    padding: 120px 0 80px !important;
}

.tool-calendar-shell .ldays td {
    height: 64px;
}

.tool-calendar-shell .ldays td a {
    border-radius: 16px;
}

.tool-calendar-shell .ldays .th {
    border-radius: 12px;
}

.tool-note-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.tool-directory-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
}

.tool-directory-nav a {
    display: grid;
    gap: 6px;
    min-height: 92px;
    padding: 16px 18px;
    border-radius: 22px;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,249,253,0.94));
    border: 1px solid rgba(19,34,56,0.08);
    box-shadow: 0 12px 28px rgba(17,33,54,0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.tool-directory-nav a:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(17,33,54,0.08);
}

.tool-directory-nav strong {
    color: #132238;
    font-size: 16px;
    font-weight: 900;
}

.tool-directory-nav span {
    color: #6c7b90;
    font-size: 13px;
    line-height: 1.7;
}

.tool-directory-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.tool-directory-section {
    scroll-margin-top: 24px;
}

.tool-phone-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.tool-phone-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(245,249,253,0.95);
    border: 1px solid rgba(19,34,56,0.06);
}

.tool-phone-list span {
    color: #34455d;
    font-size: 15px;
    line-height: 1.6;
}

.tool-phone-list strong {
    flex-shrink: 0;
    color: #132238;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

@media (max-width: 1080px) {
    .tool-hero,
    .tool-two-col,
    .tool-three-col,
    .tool-code-grid {
        grid-template-columns: 1fr;
    }

    .tool-option-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tool-catalog-grid,
    .tool-unit-grid,
    .tool-subnav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tool-directory-grid {
        grid-template-columns: 1fr;
    }

    .tool-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .holiday-panel dd li {
        width: 47%;
        padding-left: 3%;
    }
}

@media (max-width: 767px) {
    .tool-breadcrumb {
        margin-bottom: 14px;
    }

    .tool-hero,
    .tool-card,
    .tool-calendar-shell {
        border-radius: 24px;
    }

    .tool-hero,
    .tool-card,
    .tool-calendar-shell {
        padding: 20px;
    }

    .tool-hero-copy h1 {
        font-size: 32px;
    }

    .tool-meta {
        gap: 8px;
    }

    .tool-meta span,
    .tool-stat,
    .tool-kicker,
    .tool-panel-title,
    .tool-section-kicker,
    .tool-chip {
        min-height: 36px;
        padding: 0 14px;
        font-size: 12px;
    }

    .tool-inline-form {
        grid-template-columns: 1fr;
    }

    .tool-option-grid,
    .tool-note-columns,
    .tool-calendar-shell .rili-right,
    .tool-ems-panel .bd,
    .tool-ems-panel .links,
    .tool-size-shell .box {
        grid-template-columns: 1fr;
    }

    .tool-catalog-grid,
    .tool-unit-grid,
    .tool-subnav {
        grid-template-columns: 1fr;
    }

    .tool-directory-grid {
        grid-template-columns: 1fr;
    }

    .tool-stat-grid {
        grid-template-columns: 1fr;
    }

    .tool-phone-list li {
        align-items: flex-start;
        flex-direction: column;
    }

    .tool-unit-block,
    .tool-code-block,
    .tool-catalog-card {
        padding: 18px;
    }

    .holiday-panel dl {
        padding-left: 0;
    }

    .holiday-panel dt {
        float: none;
        width: auto;
        margin-left: 0;
        padding-top: 18px;
    }

    .holiday-panel .infoBox {
        position: static;
        width: auto;
        height: auto;
    }

    .holiday-panel .info {
        top: 0;
    }

    .holiday-panel dd {
        padding: 14px 16px 18px;
    }

    .holiday-panel dd li {
        float: none;
        width: 100%;
        min-height: 34px;
        padding-left: 0;
    }

    .tool-calendar-shell .rili-left {
        padding: 14px;
        background-position: 16px 16px;
    }

    .tool-calendar-shell .ltop span {
        float: none;
        height: auto;
        line-height: 1.8;
    }

    .tool-calendar-shell .ldays td {
        height: 58px;
        padding: 4px 2px;
    }

    .tool-calendar-shell .ldays td span {
        font-size: 22px;
    }

    .tool-lunar-shell .choiceCon {
        align-items: stretch;
    }

    .tool-lunar-shell .choiceCon span.xiaoshi {
        display: none;
    }

    .tool-lunar-shell .select_outer,
    .tool-lunar-shell .select_outer select,
    .tool-lunar-shell a.aSubmit,
    .tool-lunar-shell a.aSubmitB {
        width: 100%;
    }
}

.legacy-tool-shell {
    display: grid;
    gap: 24px;
}

.legacy-tool-shell > .hd {
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(19,34,56,0.08);
}

.legacy-tool-shell .hd,
.legacy-tool-shell .bd,
.legacy-tool-shell .ft {
    display: grid;
    gap: 18px;
}

.legacy-tool-shell .hd h1,
.legacy-tool-shell .hd h2,
.legacy-tool-shell .hd h3,
.legacy-tool-shell .ft h2,
.legacy-tool-shell .ft h3 {
    margin: 0;
    color: #132238;
}

.legacy-tool-shell .sub,
.legacy-tool-shell .hd p,
.legacy-tool-shell .ft p,
.legacy-tool-shell .ft li,
.legacy-tool-shell .bd p,
.legacy-tool-shell .bd li,
.legacy-tool-shell .bd td,
.legacy-tool-shell .bd th {
    line-height: 1.8;
}

.legacy-tool-shell a {
    color: #25486a;
    transition: color 0.2s ease;
}

.legacy-tool-shell a:hover {
    color: #ef7f5e;
    text-decoration: none;
}

.legacy-tool-shell .search form,
.legacy-tool-shell .buttons,
.legacy-tool-shell .control,
.legacy-tool-shell .period,
.legacy-tool-shell .switch,
.legacy-tool-shell .row.tlink12,
.legacy-tool-shell .btn-group-vertical,
.legacy-tool-shell .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.legacy-tool-shell .search form > * {
    margin: 0;
}

.legacy-tool-shell .search .input-text,
.legacy-tool-shell .search input[type='text'],
.legacy-tool-shell .search input[type='search'] {
    flex: 1 1 260px;
}

.legacy-tool-shell .search .input-submit,
.legacy-tool-shell .search input[type='submit'],
.legacy-tool-shell .search input[type='button'] {
    width: auto;
    min-width: 116px;
}

.legacy-tool-shell .btn-group-vertical {
    flex-direction: column;
    align-items: stretch;
}

.legacy-tool-shell .mod-tab,
.legacy-tool-shell .ClassHead-wrap,
.legacy-tool-shell .mod-tab-wrap,
.legacy-tool-shell .switch1,
.legacy-tool-shell .switch2 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.legacy-tool-shell .mod-tab a,
.legacy-tool-shell .ClassHead-wrap a,
.legacy-tool-shell .mod-tab-wrap a,
.legacy-tool-shell .switch1 > *,
.legacy-tool-shell .switch2 > * {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.9);
    color: #132238;
    font-weight: 800;
}

.legacy-tool-shell .mod-tab a.current,
.legacy-tool-shell .ClassHead-wrap a.CHeadcur,
.legacy-tool-shell .mod-tab-wrap a.current,
.legacy-tool-shell .switch1 .selected,
.legacy-tool-shell .switch2 .selected {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #ef7f5e, #f4c26b);
    box-shadow: 0 14px 26px rgba(239,127,94,0.22);
}

.legacy-tool-shell .search,
.legacy-tool-shell .detail,
.legacy-tool-shell .result,
.legacy-tool-shell .about,
.legacy-tool-shell .tabcont,
.legacy-tool-shell .box,
.legacy-tool-shell #newAlexa,
.legacy-tool-shell #result,
.legacy-tool-shell #resultBox,
.legacy-tool-shell .gupiao,
.legacy-tool-shell .yanglao,
.legacy-tool-shell .sanwei,
.legacy-tool-shell .CorContent,
.legacy-tool-shell .Tool-MainWrap {
    border-radius: 24px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.92);
    padding: 20px;
    box-shadow: 0 12px 30px rgba(19,34,56,0.06);
}

.legacy-tool-shell .tabcont ul,
.legacy-tool-shell .calendar-tips,
.legacy-tool-shell .cal,
.legacy-tool-shell .cal-yl2 {
    padding: 0;
    margin: 0;
    list-style: none;
}

.legacy-tool-shell .tabcont li,
.legacy-tool-shell .calendar-tips li,
.legacy-tool-shell .cal li,
.legacy-tool-shell .cal-yl2 li {
    list-style: none;
}

.legacy-tool-shell .tabcont li a,
.legacy-tool-shell .tabcont li p,
.legacy-tool-shell .calendar-tips li,
.legacy-tool-shell .cal li,
.legacy-tool-shell .cal-yl2 li {
    display: block;
    margin: 0;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(245,248,251,0.82);
}

.legacy-tool-shell input[type='text'],
.legacy-tool-shell input[type='number'],
.legacy-tool-shell input[type='password'],
.legacy-tool-shell textarea,
.legacy-tool-shell select,
.legacy-tool-shell .form-control,
.legacy-tool-shell .input-text {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(19,34,56,0.12);
    background: #fff;
    color: #132238;
    box-sizing: border-box;
}

.legacy-tool-shell textarea {
    min-height: 140px;
    resize: vertical;
}

.legacy-tool-shell input[type='submit'],
.legacy-tool-shell input[type='button'],
.legacy-tool-shell button,
.legacy-tool-shell .btn,
.legacy-tool-shell .input-button,
.legacy-tool-shell .input-submit {
    appearance: none;
    border: 1px solid rgba(19,34,56,0.08);
    border-radius: 999px;
    padding: 11px 18px;
    background: rgba(255,255,255,0.96);
    color: #132238;
    font-weight: 800;
}

.legacy-tool-shell table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(19,34,56,0.08);
    background: rgba(255,255,255,0.94);
}

.legacy-tool-shell table th,
.legacy-tool-shell table td {
    padding: 12px 14px;
    border-right: 1px solid rgba(19,34,56,0.08);
    border-bottom: 1px solid rgba(19,34,56,0.08);
    vertical-align: top;
}

.legacy-tool-shell table th {
    color: #4e627d;
    background: rgba(245,248,251,0.9);
    font-weight: 900;
}

.legacy-tool-shell table tr:last-child td,
.legacy-tool-shell table tr:last-child th {
    border-bottom: 0;
}

.legacy-tool-shell table td:last-child,
.legacy-tool-shell table th:last-child {
    border-right: 0;
}

.legacy-tool-shell img {
    max-width: 100%;
    height: auto;
}

.legacy-tool-shell iframe {
    width: 100%;
    max-width: 100%;
    border: 0;
    border-radius: 20px;
    background: transparent;
}

.legacy-tool-shell .tabcont ul,
.legacy-tool-shell .list,
.legacy-tool-shell .calendar-tips,
.legacy-tool-shell .cal,
.legacy-tool-shell .cal-yl2,
.legacy-tool-shell #resultlist {
    display: grid;
    gap: 12px;
}

.legacy-tool-shell #newAlexa,
.legacy-tool-shell .Tool-MainWrap,
.legacy-tool-shell .CorContent {
    overflow: hidden;
}

.legacy-tool-shell .map {
    display: block;
    width: 100%;
    height: auto;
}

.legacy-tool-shell .clearfix::after,
.legacy-tool-shell .period::after,
.legacy-tool-shell .sanwei::after {
    content: '';
    display: block;
    clear: both;
}

@media (max-width: 768px) {
    .legacy-tool-shell .search form,
    .legacy-tool-shell .buttons,
    .legacy-tool-shell .control,
    .legacy-tool-shell .period,
    .legacy-tool-shell .switch,
    .legacy-tool-shell .row.tlink12,
    .legacy-tool-shell .mod-tab,
    .legacy-tool-shell .ClassHead-wrap,
    .legacy-tool-shell .mod-tab-wrap,
    .legacy-tool-shell .switch1,
    .legacy-tool-shell .switch2 {
        flex-direction: column;
        align-items: stretch;
    }

    .legacy-tool-shell .Tool-MainWrap,
    .legacy-tool-shell .CorContent,
    .legacy-tool-shell #newAlexa,
    .legacy-tool-shell .tabcont,
    .legacy-tool-shell .search,
    .legacy-tool-shell .box {
        padding: 16px;
    }
}
