@import url("../css/bootstrap.css");

body {
    background: #fcfcfc;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

:root {
    --color-blue: #1296db;
    --border-color: #f1f1f1;
}

.content {
    padding: 50px 0;
}

.mui-bar-tab .mui-tab-item .mui-tab-label {
    margin-top: 5px;
}

.list-item {
    width: 100%;
    background: #fff;
}

.list-item .item-head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.list-item .item-head .tt {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    line-height: 35px;
    flex-grow: 1;
    width: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: break-all;
}


.item-group {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.item-group .item-item {
    flex-grow: 1;
    flex-basis: 0;
}

.item-group .item-item .lb {
    font-size: 14px;
    color: #999999;
    line-height: 32px;
}

.item-group .item-item .vl {
    font-size: 14px;
    line-height: 32px;
}

.mui-input-row label {
    width: 25%;
}

.mui-input-row label ~ input, .mui-input-row label ~ select, .mui-input-row label ~ textarea {
    width: 75%;
}

.mui-input-row .must {
    font-size: 14px;
    color: red;
}

.mui-toast-container {
    /* 取消底部定位，改为垂直居中 */
    bottom: auto !important;
    top: 40% !important;
    /* 水平居中 + 垂直居中偏移（抵消自身高度） */
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    /* 可选：调整提示框宽度，适配居中视觉 */
    width: auto !important;
    max-width: 80%;
}

.mui-toast-message {
    /* 背景半透明，提升体验 */
    background: rgba(0, 0, 0, 0.7) !important;
    /* 文字居中 */
    text-align: center;
    /* 内边距调整 */
    padding: 12px 20px !important;
    /* 圆角 */
    border-radius: 8px !important;
}

.radio-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.radio-group .mui-radio .lb {
    width: unset;
    text-align: left;
    padding-top: 4px;
    padding-bottom: 0;
    line-height: 42px;
}
.mui-popover-action .popover-header{
    font-size:18px;
    line-height: 42px;
    white-space: nowrap;
    height: 42px;
    overflow:hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}
#review-form{
    padding-top:10px;
}
.search-bar{
    display:flex;
    justify-content: flex-start;
    align-items: center;
    position: sticky;
    padding:5px 10px;
    top:0px;
    z-index:10;
}
.search-bar>input{
    margin:0;
}
.to-top{
    position: fixed;
    right:10px;
    bottom:80px;
    z-index:10;
    background:rgba(0,0,0,0.7);
    width:30px;
    height:30px;
    border-radius: 15px;
    overflow:hidden;
    color:#ffffff;
    font-size:14px;
    text-align: center;
    line-height: 30px;
}