| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- @import "../../../../themes/page.scss";
- @import "../../searc-list.scss";
- /* module/diet/pages/diet-info/diet-info.wxss */
- .diet-box{
- background: #fff;
- border-radius: 12px;
- margin-top: -30px;
- }
- /* order-list.wxss */
- .tab-container {
- display: flex;
- justify-content: space-around;
- background-color: #f8f8f8;
- padding: 10px 0;
- }
- .tab {
- flex: 1;
- text-align: center;
- padding: 10px;
- cursor: pointer;
- }
- .tab:hover {
- background-color: #e0e0e0;
- }
- .tab.active {
- font-weight: bold;
- border-bottom: 2px solid #007aff; /* 选中状态的下划线 */
- }
- .order-address { color: #333; }
- .change-address { color: #1aad19; margin-left: 8rpx; font-size: 24rpx; }
- /* miniprogram/module/article/pages/order-list/order-list.wxss */
- .page-scroll__container {
- padding: 16rpx;
- background: #f7f8fa;
- }
- .order-card {
- background: #fff;
- border-radius: 20rpx;
- box-shadow: 0 4rpx 16rpx rgba(0,0,0,0.04);
- margin-bottom: 24rpx;
- padding: 24rpx;
- }
- .order-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 28rpx;
- margin-bottom: 24rpx;
- }
- .order-status {
- font-weight: bold;
- }
- .order-status.status-pending { color: #D54941; }
- .order-status.status-received { color: #1D6FF6; }
- .order-status.status-completed { color: #2BA471; }
- .order-status.status-closed { color: #999; }
- .order-user {
- color: #888;
- font-size: 24rpx;
- margin-bottom: 24rpx;
- display: flex;
- flex-direction: column;
- gap: 4rpx;
- background-color: #F6F6F6;
- padding: 10px;
- border-radius:8px;
- }
- .order-body {
- display: flex;
- align-items: flex-start;
- margin-bottom: 16rpx;
- }
- .order-img {
- width: 120rpx;
- height: 120rpx;
- border-radius: 12rpx;
- margin-right: 20rpx;
- }
- .order-info {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- height: 120rpx;
- }
- .order-title {
- font-size: 28rpx;
- font-weight: 600;
- margin-bottom: 8rpx;
- }
- .order-doctor,
- .order-time {
- font-size: 24rpx;
- color: #888;
- }
- .order-footer {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: flex-end;
- }
- .order-price {
- display: flex;
- margin-bottom: 16px;
- }
- .order-amount {
- color: #D54941;
- font-weight: bold;
- font-size: 32rpx;
- margin-left: 8rpx;
- }
- .order-actions {
- display: flex;
- gap: 20rpx;
- transition: none !important;
- }
- .order-actions .t-button {
- margin: 0 !important;
- }
- // 针对 t-design 按钮的自定义样式
- .outline-btn {
- background: #fff !important;
- border: 1px solid #1890ff !important; // 主色边框
- color: #1890ff !important; // 主色文字
- box-shadow: none !important;
- border-radius: 30rpx !important;
- transition: none !important;
- // margin-right: 20rpx !important;
- }
- .outline-btn.cancel {
- border-color: #ccc !important;
- color: black !important;
- margin-right: 20rpx;
- transition: none !important;
- }
- .contact {
- font-size: 28rpx;
- color: black;
- margin-bottom: 10rpx;
- font-weight: bold;
- display: flex
- }
- .line{
- width: 100%;
- height: 1px;
- background-color: #eee;
- margin: 24rpx 0;
- }
- .name{
- margin-right: 20rpx;
- }
|