html {
    /* 浏览器默认字体大小16px,所以62.5% 实际为 10px，也就是说rem的单位开始以10px作为相对大小 */
    font-size: 62.5%;
    height: 155.9rem;
}

/* 滚动条 */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: #0003;
    border-radius: 10px;
    transition: all .2s ease-in-out;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

/* 滚动条 */

.page-content {
   min-height: 100%;
    background: #f5f7fa;
    border-radius: 2px;
    padding: 20px;
    overflow: hidden;
    min-height: calc(100vh - 60px);
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-start {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-content {
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: none;
  margin-bottom: 16px;
}
.search-content:first-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.search-content-one{
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: none;
  margin-bottom: 16px;
}
.search-content:last-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.flex-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;

}

.flex-column {
    display: flex;
    flex-direction: column !important;
}

.flex-row {
    display: flex;
    flex-direction: row !important;
}

.text_right {
    text-align: left;
}

.text_left {
    text-align: left;
}

.text_center {
    text-align: center;
}

.text-bold {
    font-weight: 550;
}

.text-hidden {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-pointer {
    cursor: pointer;
}

/* ----------------------------------------------------------- */
/* 单页基础样式 */
.page-content {
    display: flex;
    flex-direction: column;
}

.filter-content {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.data-content {
    width: 100%;
    flex: 1;
    padding:  15px;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #fff;
    border-radius: 8px;
}

.paging-content {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px;
    box-sizing: border-box;
}

/* 单页基础样式 */
/* ----------------------------------------------------------- */
/* 刷新按钮 */
.refresh-icon {
    color: var(--default-color) !important;
    font-size: 20px !important;
    transition: all 2s;
}

/* 刷新按钮 */
/* ----------------------------------------------------------- */
/* 顶部选择器基础样式 */
.filter-content .item-select {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.filter-content .select-title {
    padding: 0 10px 0 0;
    color: #606266;
    font-size: 14px;
    white-space: nowrap;
	margin-bottom: 8px;
	font-weight: 500;
	
}

.filter-content .el-select {
    width: 100px;
    border: 0;
}

.filter-content .el-select-mini {
    width: 100px;
}

.filter-content .search {
    width: 200px;
}

.time-select {
    width: 300px;
}

/* 顶部选择器基础样式 */
/* ----------------------------------------------------------- */
/* 表单提交选择器/输入框基础样式 */
.input-content {
    width: 100%;
    margin-top: 10px;
}

.input-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.input-item .item-title {
    color: #7E84A3;
    font-size: 14px;
    line-height: 42px;
}

.input-item .el-select {
    width: 100%;
}

/* 表单提交选择器/输入框基础样式 */
/* ----------------------------------------------------------- */
/* 按钮基础样式 */
.default-button {
    border-color: var(--default-color) !important;
    background: var(--default-color) !important;
    color: #ffffff !important;
}

.error-button {
    background: var(--error-color) !important;
    border-color: var(--error-color) !important;
    color: #fff !important;
}

.warning-button {
    border-color: var(--warning-color) !important;
    color: #fff !important;
}

.hui-button {
    background: var(--grey-color) !important;
    border-color: var(--grey-color) !important;
    color: #fff !important;
}

/* 按钮基础样式 */
/* ----------------------------------------------------------- */
/* 弹窗基础样式 */
.dialog-popup .el-dialog__header,
.dialog-popup .el-message-box__header {
    /* background: #F5F7FC !important; */
    /* padding: 0 25px; */
    /* margin-top:20px; */
    height: 25px;
    box-sizing: border-box;
    color: #5A607F;
}

.dialog-popup .el-message-box__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px 0 0 ;
}
.el-message-box__container{
    padding:15px 0
}

.dialog-popup .el-message-box__close {
    color: #F0142F !important;
}

.dialog-popup .el-dialog__body {
    padding: 0;
    max-height: 625px;
    min-height: 150px;
    overflow: auto;
}

.dialog-content {
    padding: 5px;
    box-sizing: border-box;
}

.my-header {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.my-header .title-class {
    color: #5A607F;
    font-size: 16px;
}

.dialog-footer .cancel {
    color: var(--default-color);
    /* background: transparent !important; */
    background: #ffffff;
}

.dialog-footer .affirm {
    border-color: var(--default-color);
    background: var(--default-color);
    color: #ffffff;
}

.dialog-popup .dialog-content {
    padding: 10px 10px;
    box-sizing: border-box;
}

/* 表单容器 */
.form-container {
    padding: 10px;
}

.dialog-popup h1{
	color: #5A607F;
}
/* 表单区块 */
.form-section {
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.form-section:last-child {
    margin-bottom: 0;
}

.section-header {
    padding: 14px 16px;
    background: #fafafa;
    border-bottom: 1px solid #e8e8e8;
}

.section-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #303133;
}

/* 运营详情抽屉分区标题（支付/退款/对账等） */
.detail-drawer-section-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: 0.02em;
}

.detail-card :deep(.el-card__header) {
    padding: 14px 18px;
}

.section-body {
    padding: 16px;
}

/* 表单项 */
.form-item {
    margin-bottom: 16px;
}

.form-item:last-child {
    margin-bottom: 0;
}

.item-label {
    display: inline-block;
    margin: 8px 0px;
    font-size: 14px;
    color: #606266;
    font-weight: 500;
}

.item-label.required::after {
    content: "*";
    color: #f56c6c;
    margin-left: 4px;
}

.full-width {
    width: 100%;
}

/* 底部按钮 */
.dialog-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 12px 0;
}

.dialog-footer .el-button {
    min-width: 80px;
}

/* 必填标记 */
.required {
    color: #f56c6c;
}

/* 信息文本样式 */
.success-text {
    color: var(--success-color);
}

.error-text {
    color: var(--error-color);
}

.amount_deduction {
    margin-right: 10px;
}

/* 单选框组 */
.el-radio-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* 输入框基础样式 */
:deep(.el-input__inner) {
    font-size: 14px;
}

:deep(.el-select .el-input__inner) {
    font-size: 14px;
}

/* 滚动条优化 */
:deep(.el-scrollbar__wrap) {
    overflow-x: hidden;
}
.backgroun_fff{
    background:var(--white-color) !important;
}
/* 弹窗基础样式 */
/* ----------------------------------------------------------- */
/* 边距 */
.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}
.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-30 {
    margin-top: 30px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mt-30 {
    margin-top: 30px;
}

.ml-15 {
    margin-left: 15px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

/* 标题 */
/* ----------------------------------------------------------- */
.h1_title{
    border-bottom: 1px solid #e4e7ed;
    box-sizing: border-box;
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #303133;
}

.span-title {
  padding: 0 10px 0 0;
  color: #606266;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 500;
  text-align: left;
}

.col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.but {
  justify-content: end
}