agreement.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /* pages/invoice/agreement/agreement.wxss */
  2. page{
  3. height: 100%;
  4. }
  5. .page-agreement{
  6. display: flex;
  7. height: 100%;
  8. padding: 0 60rpx;
  9. box-sizing: border-box;
  10. flex-direction: column;
  11. }
  12. .page-agreement .top-tip{
  13. height:114rpx;
  14. line-height: 114rpx;
  15. background:rgba(44,48,57,1);
  16. text-align: center;
  17. color: #ffffff;
  18. font-size: 32rpx;
  19. margin: 30rpx 0 40rpx 0;
  20. }
  21. .page-agreement .top-tip .icon{
  22. display: inline-block;
  23. vertical-align: middle;
  24. width: 40rpx;
  25. height: 40rpx;
  26. margin-top: -6rpx;
  27. margin-right: 20rpx;
  28. }
  29. .page-agreement .agreement-content{
  30. flex: 1;
  31. border:2px solid rgba(151,151,151,.18);
  32. padding: 40rpx;
  33. overflow: scroll;
  34. margin-bottom: 20rpx;
  35. box-sizing: border-box;
  36. }
  37. .page-agreement .agreement-content .view-text{
  38. font-size: 24rpx;
  39. color: #161616;
  40. line-height: 1.8;
  41. }
  42. .page-agreement .agreement-tool{
  43. color: #9B9B9B;
  44. font-size: 24rpx;
  45. height: 50rpx;
  46. line-height: 50rpx;
  47. margin-bottom: 30rpx;
  48. }
  49. .page-agreement .agreement-tool .icon{
  50. display: inline-block;
  51. vertical-align: middle;
  52. width: 32rpx;
  53. height: 32rpx;
  54. margin-right: 10rpx;
  55. margin-top: -4rpx;
  56. }
  57. .page-agreement .step-tool{
  58. margin-left: -40rpx;
  59. margin-right: -40rpx;
  60. }
  61. /*.step-tool{
  62. display: flex;
  63. justify-content: space-between;
  64. margin-bottom: 40rpx;
  65. }*/
  66. /*
  67. .step-tool .step-btn{
  68. display: flex;
  69. align-items: center;
  70. justify-content: center;
  71. width:100rpx;
  72. height:100rpx;
  73. background:rgba(236,238,243,1);
  74. }
  75. .step-tool .step-btn:hover{
  76. background:rgba(236,238,243,0.8);
  77. }
  78. .step-tool .step-btn.disable{
  79. background: none;
  80. }
  81. .step-tool .step-btn.active{
  82. background:rgba(29,182,150,1);
  83. }
  84. .step-tool .step-btn.active{
  85. background:rgba(29,182,150,.8);
  86. }
  87. .step-tool .step-btn .icon{
  88. display: inline-block;
  89. vertical-align: middle;
  90. width: 32rpx;
  91. height: 32rpx;
  92. margin-right: 10rpx;
  93. margin-top: -4rpx;
  94. }
  95. */