12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /* pages/mine/myorder/list/index.wxss */
- page {
- background: #f1f1f1;
- }
- .custom-tabs {
- margin-bottom: 32rpx;
- }
- .search {
- background: #fff;
- }
- .t-search__input-container {
- border-radius: 32rpx !important;
- height: 64rpx !important;
- }
- .t-search__input {
- font-size: 28rpx !important;
- color: rgb(116, 116, 116) !important;
- }
- .pink {
- --td-tab-item-active-color: #e54970;
- --td-tab-track-color: #e54970;
- .t-tabs__scroll--top {
- border-bottom: 0 !important;
- height: 76rpx !important;
- }
- .t-tabs__item--top,
- .t-tabs__item--bottom {
- min-width: 150rpx !important;
- }
- .t-tabs__item {
- height: 60rpx !important;
- line-height: 60rpx !important;
- }
- }
- .order-card {
- background: #fff;
- border-radius: 20rpx;
- padding: 30rpx;
- margin: 24rpx;
- color: #333;
- &__head {
- display: flex;
- align-items: center;
- }
- &__items {
- border-top: 1px solid #ddd;
- border-bottom: 1px solid #ddd;
- padding: 30rpx 0;
- }
- &__button {
- border: 2px solid #333 !important;
- border-radius: 36rpx !important;
- min-width: 220rpx;
- font-weight: 600;
- &.pink {
- border-color: #e54970 !important;
- color: #e54970;
- }
- }
- .goodimage {
- width: 272rpx;
- height: 180rpx;
- border-radius: 2px;
- }
- }
|