12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /* pages/exportorderdetail/exportorderdetail.wxss */
- @import "../../styles/main.less";
- page {
- background-color: #F7F7F7;
- /* 身体 */
- .body {
- width: 93%;
- margin: 0 auto;
- .row {
- .row();
- &:not(:first-child) {
- margin-top: 30rpx;
- }
- }
- .row2 {
- display: flex;
- justify-content: space-between;
- margin-top: 48rpx;
- .dark-button {
- .dark-button()
- }
- .light-button {
- .light-button()
- }
- }
- .box {
- background-color: @whiteColor;
- border-radius: @borderRadius;
- margin-top: 30rpx;
- padding: 0 36rpx;
- .box-title {
- padding: 30rpx 0;
- color: @darkFontColor;
- font-size: 32rpx;
- font-weight: 500;
- display: flex;
- justify-content: space-between;
- .dark-button {
- .dark-button(12rpx, 86rpx, 44rpx, 24rpx)
- }
- }
- .box-main {
- width: 100%;
- color: @lightFontColor;
- font-size: 32rpx;
- text {
- white-space: normal;
- word-break: break-all;
- }
- }
- }
- }
- .tanchu {
- .popup-have-button()
- }
- }
|