index.wxss 997 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* pages/invitation/verify/index.wxss */
  2. .container {
  3. width: 100%;
  4. font-size: 26rpx;
  5. box-sizing: border-box;
  6. padding: 30rpx 30rpx 60rpx 30rpx;
  7. }
  8. .container_title {
  9. width: 100%;
  10. /* background: bisque; */
  11. /* height: 90rpx; */
  12. /* line-height: 90rpx; */
  13. /* text-align: center; */
  14. box-sizing: border-box;
  15. padding: 0 10rpx;
  16. font-size: 28rpx;
  17. font-weight: bolder;
  18. border-left: 6rpx solid #000000;
  19. }
  20. .container_guest {
  21. margin-top: 30rpx;
  22. /* background-color: cadetblue; */
  23. }
  24. .container_guest-item {
  25. width: 100%;
  26. height: 90rpx;
  27. line-height: 90rpx;
  28. display: flex;
  29. flex-flow: row nowrap;
  30. justify-content: space-between;
  31. color: #303133;
  32. border-bottom: 1px solid #F2F6FC;
  33. box-sizing: border-box;
  34. padding: 0 20rpx;
  35. }
  36. .container_guest-item view:nth-last-child(odd) {
  37. color: #909399;
  38. }
  39. .container_verifyBtn {
  40. margin-top: 30rpx;
  41. width: 100%;
  42. background-color: #000000;
  43. color: #FFFFFF;
  44. height: 90rpx;
  45. line-height: 90rpx;
  46. text-align: center;
  47. }