setting.wxss 897 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .main {
  2. float: left;
  3. width: 100%;
  4. height: 100%;
  5. /* background-image: linear-gradient(#ff0000, #ffffff); */
  6. background-color: #f9fafc;
  7. }
  8. .main .one {
  9. position: fixed;
  10. z-index: 9999;
  11. width: 100%;
  12. height: 80rpx;
  13. line-height: 80rpx;
  14. background-color: #409eff;
  15. color: #ffffff;
  16. text-align: center;
  17. }
  18. .main .two {
  19. position: absolute;
  20. top: 80rpx;
  21. width: 100%;
  22. margin: 20rpx 0 0 0;
  23. }
  24. .main .two .content {
  25. float: left;
  26. width: 94%;
  27. height: 80rpx;
  28. line-height: 80rpx;
  29. margin: 0 20rpx;
  30. border-bottom: 1px solid #ccc;
  31. }
  32. .main .two .content text {
  33. float: left;
  34. width: 30%;
  35. font-size: 30rpx;
  36. }
  37. .main .two .content input {
  38. float: left;
  39. width: 70%;
  40. padding: 18rpx 0;
  41. }
  42. .main .two .save {
  43. float: left;
  44. width: 94%;
  45. margin: 60rpx 20rpx 0 20rpx;
  46. }
  47. .main .two .save button {
  48. border-radius: 50rpx;
  49. background-color: #ff0000;
  50. color: #ffffff;
  51. }