index.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. .xr-info {
  2. position: absolute;
  3. right: 0;
  4. top: 0;
  5. width: 300rpx;
  6. height: 100rpx;
  7. padding: 20rpx;
  8. background-color: #000;
  9. border-radius: 5px 0 0 5px;
  10. }
  11. .info-text {
  12. font-size: 20rpx;
  13. line-height: 30rpx;
  14. padding: 0;
  15. color: #fff;
  16. white-space: nowrap;
  17. overflow: hidden;
  18. text-overflow: ellipsis;
  19. }
  20. .info-text.title {
  21. font-size: 24rpx;
  22. line-height: 40rpx;
  23. font-weight: bold;
  24. }
  25. .info-process {
  26. position: relative;
  27. margin-top: 10rpx;
  28. background-color: #fff;
  29. height: 16rpx;
  30. border-radius: 5rpx;
  31. }
  32. .info-process .info-bar {
  33. position: absolute;
  34. left: 0;
  35. top: 0;
  36. width: 0%;
  37. height: 100%;
  38. background-color: green;
  39. border-radius: 5rpx;
  40. }
  41. .xr-res-panel {
  42. margin: 10rpx 20rpx;
  43. }
  44. .res-row {
  45. padding: 10rpx;
  46. vertical-align: middle;
  47. text-align: center;
  48. }
  49. .res-name, .res-btn {
  50. display: inline-block;
  51. margin-right: 20rpx;
  52. border-radius: 10rpx;
  53. }
  54. .res-name {
  55. font-size: 22rpx;
  56. background-color: #000;
  57. padding: 0 20rpx;
  58. line-height: 60rpx;
  59. color: #fff;
  60. }
  61. .res-btn {
  62. font-size: 26rpx;
  63. background-color: #fff;
  64. padding: 0 30rpx;
  65. line-height: 70rpx;
  66. border: 1px solid #000;
  67. }
  68. .res-btn.on {
  69. background-color: forestgreen;
  70. color: #fff;
  71. transition: all 0.2s;
  72. }