common.scss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. .box{
  2. width: 100%;
  3. .top{
  4. width: 100%;
  5. display: flex;
  6. align-items: center;
  7. justify-content: center;
  8. background-color: #0080ff;
  9. padding: 50rpx 0;
  10. padding-top: 0;
  11. margin-top: -1rpx;
  12. //border-radius: 0 0 30rpx 30rpx;
  13. .title{
  14. font-size: 50rpx;
  15. font-weight: bold;
  16. color: #fff;
  17. }
  18. }
  19. .item{
  20. display: flex;
  21. align-items: center;
  22. margin: 0 60rpx;
  23. padding: 10rpx 0;
  24. min-height: 80rpx;
  25. border-bottom: 1rpx solid #f5f5f5;
  26. .l{
  27. flex: 4;
  28. display: flex;
  29. align-items: center;
  30. color: #191919;
  31. padding-right: 10rpx;
  32. }
  33. .r{
  34. flex: 10;
  35. display: flex;
  36. align-items: center;
  37. .btn{
  38. color: #0080ff;
  39. font-size: 28rpx;
  40. }
  41. .unit{
  42. color: #191919;
  43. font-size: 28rpx;
  44. border: 1rpx solid #eee;
  45. padding: 10rpx 15rpx;
  46. border-radius: 5rpx;
  47. }
  48. .img{
  49. margin: 30rpx 0;
  50. }
  51. .p-picker{
  52. width: 100%;
  53. display: flex;
  54. position: relative;
  55. background-color: #f7f7f7;
  56. padding: 20rpx;
  57. border-radius: 5rpx;
  58. .p-text{
  59. color: #191919;
  60. }
  61. .p-icon{
  62. position: absolute;
  63. right: 20rpx;
  64. top: 50%;
  65. transform: translateY(-50%);
  66. }
  67. }
  68. }
  69. }
  70. }
  71. .common-btn,.common-btn2{
  72. margin: 100rpx auto;
  73. width: 400rpx;
  74. height: 88rpx;
  75. font-weight: bold;
  76. display: flex;
  77. align-items: center;
  78. justify-content: center;
  79. border-radius: 10rpx;
  80. }
  81. .common-btn{
  82. color: #fff;
  83. font-size: 32rpx;
  84. background-color: #0080ff;
  85. }
  86. .common-btn2{
  87. color: #191919;
  88. font-size: 28rpx;
  89. background-color: #fff;
  90. border: 1px solid #eee;
  91. }