common.scss 1.5 KB

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