微信小程序
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

88 Zeilen
1.4 KiB

  1. /* pages/finance/voucher/voucher.wxss */
  2. .information_box{
  3. width: 80%;
  4. margin: 0 auto;
  5. }
  6. .information_box view{
  7. margin-bottom: 15px;
  8. display: flex;
  9. }
  10. .information_box view text{
  11. color: #ffffff;
  12. line-height: 1;
  13. display: block;
  14. }
  15. .information_box view text:nth-child(1){
  16. border-left: 3px solid #ffffff;
  17. padding-left: 10px;
  18. }
  19. .pure_top{
  20. height: 150px;
  21. }
  22. .pure_top::after {
  23. height: 150px;
  24. }
  25. .main-box{
  26. background: #ffffff;
  27. padding: 20px;
  28. width: 94%;
  29. margin: 0 auto;
  30. border-radius: 10px;
  31. box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.16);
  32. }
  33. .tab1{
  34. background-color: #ed7105;
  35. color: #ffffff;
  36. line-height: 1;
  37. display: inline-block;
  38. padding: 5px 12px;
  39. border-radius: 50px;
  40. }
  41. .tab2{
  42. background-color: #a2be66;
  43. display: inline-block;
  44. line-height: 18px;
  45. width: 18px;
  46. height: 18px;
  47. color: #ffffff;
  48. text-align: center;
  49. border-radius: 50%;
  50. margin-right: 5px;
  51. }
  52. .tit_box{
  53. display: flex;
  54. justify-content: space-between;
  55. margin-bottom: 10px;
  56. }
  57. .voucher_box{
  58. border-bottom: 1px dashed #e1e1e1;
  59. margin-top: 10px;
  60. }
  61. .tab_box{
  62. flex-shrink: 0;
  63. width: 100px;
  64. }
  65. .tit{
  66. display: -webkit-box;
  67. -webkit-box-orient: vertical;
  68. -webkit-line-clamp: 1;
  69. word-break: break-all;
  70. overflow: hidden;
  71. }
  72. .money{
  73. color: #e63a37;
  74. }
  75. .moneyCount{
  76. width: 94%;
  77. margin: 0 auto;
  78. border-bottom: 1px dashed #e1e1e1;
  79. padding: 20px;
  80. }
  81. .moneyCount view{
  82. display: flex;
  83. justify-content: space-between;
  84. margin-top: 10px;
  85. }