/* 容器内边距 */
.manual-body {
    padding: 10px 0;
}

/* 每一行的布局 */
.size-row {
    margin-bottom: 15px;
    /* 行间距 */
}

/* 标签样式 */
.size-row label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #555;
    margin-bottom: 6px;
    /* 标签和输入框的间距 */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 输入框外层容器 (模拟输入框边框) */
.input-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    padding: 0 10px;
    height: 40px;
    transition: all 0.2s ease;
}

/* 获得焦点时高亮外层容器 */
.input-wrapper:focus-within {
    border-color: #1890ff;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.1);
}

/* 真正的输入框本体 */
.input-wrapper input {
    flex: 1;
    /* 占据剩余空间 */
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    background: transparent;
    width: 50%;
    /* 防止被挤压 */
}

/* 中间竖线分割 */
.input-wrapper .divider {
    width: 1px;
    height: 16px;
    background-color: #eee;
    margin: 0 10px;
}

/* Inch 文字样式 */
.cm-display {
    font-size: 13px;
    color: #999;
    /* 灰色辅助色 */
    white-space: nowrap;
    /* 防止换行 */
    font-weight: 500;
    user-select: none;
}

/* 滑块微调 */
.slider-container {
    margin-top: 5px;
}

input[type=range] {
    width: 100%;
    cursor: pointer;
}