All checks were successful
continuous-integration/drone/push Build is passing
阶段一:全局覆盖 - 新增 dark-override.css (450+ 行),覆盖所有 Element UI 组件暗色样式 - 输入框、表格、Tabs、弹窗、按钮、分页、复选框、下拉框等 - 侧边栏、顶栏、主内容区暗色背景 - 滚动条、日期选择器、消息面板等 - header.php 引入 dark-override.css 阶段二:页面独立 CSS 暗色化(22 个文件) - 白色背景 #fff → #161b22 - 浅灰背景 #F3F5F9 → #0d1117 - 深色文字 #171725/#1E2736 → #E6E8EB - 灰色文字 #8692B0 → #8B949E - 浅色边框 #E6E7EB → rgba(255,255,255,0.06) - 悬停背景 #F5F7FA → #21262d
204 lines
4.0 KiB
CSS
204 lines
4.0 KiB
CSS
.order-detail {
|
|
font-size: 0.14rem;
|
|
}
|
|
.page-top {
|
|
padding-bottom: 0.2rem;
|
|
display: flex;
|
|
align-items: center;
|
|
border-bottom: 1px solid rgba(255,255,255,0.06);
|
|
margin-bottom: 0.4rem;
|
|
}
|
|
.page-top .back-btn {
|
|
cursor: pointer;
|
|
width: 0.24rem;
|
|
height: 0.26rem;
|
|
}
|
|
.page-top .back-btn img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.page-top .top-title {
|
|
margin-left: 0.25rem;
|
|
font-size: 0.28rem;
|
|
color: #E6E8EB;
|
|
}
|
|
.order-info {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding-right: 0.85rem;
|
|
}
|
|
.order-info .info-left .order-user {
|
|
font-size: 0.18rem;
|
|
color: #E6E8EB;
|
|
}
|
|
.order-info .info-right {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
.order-info .info-right .order-status {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 0.18rem;
|
|
}
|
|
.order-info .info-right .go-pay {
|
|
text-align: center;
|
|
}
|
|
.order-info .info-right .go-pay .pay-text {
|
|
margin-top: 0.15rem;
|
|
cursor: pointer;
|
|
font-size: 0.14rem;
|
|
color: var(--color-primary);
|
|
}
|
|
.order-info .info-right .go-pay .pay-text:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.order-info .info-right .go-pay .pay-info {
|
|
margin-top: 0.1rem;
|
|
font-weight: bold;
|
|
font-size: 0.14rem;
|
|
color: #E6E8EB;
|
|
}
|
|
.order-info .pay-status {
|
|
border-radius: 0.03rem;
|
|
padding: 0.05rem 0.14rem;
|
|
font-size: 0.16rem;
|
|
color: #FFFFFF;
|
|
}
|
|
.order-info .Unpaid-text {
|
|
background: var(--color-danger);
|
|
}
|
|
.order-info .Wait {
|
|
background: var(--color-warning);
|
|
}
|
|
.order-info .Unpaid {
|
|
background: var(--color-danger);
|
|
}
|
|
.order-info .Paid-text {
|
|
background: var(--color-primary);
|
|
}
|
|
.order-info .Refunded-text {
|
|
background: var(--color-danger);
|
|
}
|
|
.order-info .order-num {
|
|
margin-top: 0.13rem;
|
|
color: #E6E8EB;
|
|
font-size: 0.14rem;
|
|
}
|
|
.order-info .order-num .num-text {
|
|
color: #666B80;
|
|
}
|
|
.order-info .order-data {
|
|
margin-top: 0.04rem;
|
|
}
|
|
.self-field {
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: 0.04rem;
|
|
}
|
|
.self-field .self-num {
|
|
display: flex;
|
|
color: #E6E8EB;
|
|
font-size: 0.14rem;
|
|
}
|
|
.self-field .self-num .field-name {
|
|
flex-shrink: 0;
|
|
}
|
|
.self-field .self-num .self-text {
|
|
white-space: pre;
|
|
color: #666B80;
|
|
}
|
|
.order-table {
|
|
margin-top: 0.33rem;
|
|
border-radius: 0.03rem;
|
|
border: 0.01rem solid #E6E7EB;
|
|
}
|
|
.order-table .table-title {
|
|
font-size: 0.14rem;
|
|
background: #FAFBFF;
|
|
height: 0.46rem;
|
|
line-height: 0.46rem;
|
|
padding-left: 0.2rem;
|
|
border-bottom: 0.01rem solid #E6E7EB;
|
|
}
|
|
.order-table .table-item {
|
|
margin: 0 0.2rem;
|
|
min-height: 0.5rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
font-size: 0.14rem;
|
|
}
|
|
.order-table .table-item .des,
|
|
.order-table .table-item .money {
|
|
color: #E6E8EB;
|
|
}
|
|
.order-table .table-item .des-text {
|
|
margin-right: 0.5rem;
|
|
color: #666B80;
|
|
}
|
|
.order-table .table-item .money-text {
|
|
color: #666B80;
|
|
}
|
|
.order-table .order-item {
|
|
border-bottom: 0.01rem dashed #E6E7EB;
|
|
}
|
|
.order-table .title-item {
|
|
border-bottom: 0.01rem solid #E6E7EB;
|
|
}
|
|
.order-table .total-money {
|
|
color: #E6E8EB;
|
|
margin-right: 0.3rem;
|
|
}
|
|
.order-transaction {
|
|
margin-top: 0.4rem;
|
|
}
|
|
.order-transaction .table-top,
|
|
.order-transaction .table-bottom {
|
|
font-size: 0.14rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
border-bottom: 0.01rem solid #E6E7EB;
|
|
}
|
|
.order-transaction .table-top {
|
|
color: #E6E8EB;
|
|
padding: 0.13rem 0.2rem 0.14rem;
|
|
}
|
|
.order-transaction .table-bottom {
|
|
padding: 0.13rem 0.2rem;
|
|
color: #666B80;
|
|
}
|
|
.order-transaction .w-200 {
|
|
width: 2rem;
|
|
}
|
|
.order-transaction .flex-1 {
|
|
flex: 1;
|
|
text-align: center;
|
|
}
|
|
.order-transaction .text-r {
|
|
text-align: right;
|
|
}
|
|
.order-transaction .no-list {
|
|
height: 60px;
|
|
line-height: 60px;
|
|
border-bottom: 0.01rem solid #E6E7EB;
|
|
text-align: center;
|
|
color: #909399;
|
|
font-size: 14px;
|
|
}
|
|
.down-pag {
|
|
margin-top: 0.8rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.down-pag .el-button {
|
|
height: 0.32rem;
|
|
border-radius: 0.03rem;
|
|
border: 0.01rem solid var(--color-primary);
|
|
font-size: 0.14rem;
|
|
color: var(--color-primary);
|
|
}
|