12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /* pages/manageOrderDetail/manageOrderDetail.wxss */
- page{
- height: 100%;
- background-color: #FFF2CC;
- }
- /* 设置全局边距 */
- .orderWrapper{
- padding-left: 30rpx;
- /* background-color: yellowgreen; */
- }
- /* 头部区域 */
- .orderHead{
- display: flex;
- position: relative;
- height: 200rpx;
- padding-top: 20rpx;
- }
- /* 头像 */
- .headImg{
- width: 160rpx;
- height: 160rpx;
- border-radius: 30rpx;
- position: absolute;
- right: 30rpx;
- }
- /* 设置内容样式 */
- .orderDetail,
- .courseNum,
- .orderPayStatus{
- margin-left: 20rpx;
- font-weight: bold;
- }
- .courseNum{
- color: #00B0F0;
- text-decoration: underline;
- }
- /* 支付状态字体样式 */
- .orderPayStatus{
- color: red;
- }
- /* 中部区域 */
- .orderMid{
- height: 220rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- }
- /* 底部区域 */
- .orderBottom{
- margin-top: 40rpx;
- height: 260rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- }
- /* 同意退款按钮 */
- .agreeRefund{
- display: flex;
- justify-content: center;
- }
- .refund{
- margin-top: 160rpx;
- margin-bottom: 60rpx;
- padding: 10rpx 30rpx;
- border-radius: 30rpx;
- background-color: #8FAADC;
- color: white;
- }
|