monitor.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. body {
  2. color: var(--text-color);
  3. /* background: #101010; */
  4. padding: 20px;
  5. }
  6. .s-title {
  7. display: flex;
  8. justify-content: space-between;
  9. width: 100%;
  10. margin-bottom: 10px;
  11. }
  12. .s-title .tag {
  13. color: #aa00f5;
  14. font-size: 14px;
  15. padding: 2px;
  16. border: 1px solid #aa00f5;
  17. }
  18. .video-ctrl {
  19. width: 100%;
  20. margin-bottom: 10px;
  21. }
  22. .video-ctrl video {
  23. width: 100%;
  24. height: 300px;
  25. }
  26. .m-detail{
  27. display: flex;
  28. justify-content: space-between;
  29. }
  30. .detail-left{
  31. flex:2;
  32. }
  33. .detail-left img{
  34. width: 90%;
  35. }
  36. .detail-right{
  37. flex:3;
  38. margin-left: 10px;
  39. }
  40. .detail-right .detail-item{
  41. display: flex;
  42. justify-content: space-between;
  43. line-height: 2;
  44. align-items: center;
  45. font-size: 16px;
  46. }
  47. .detail-right .detail-item .di-l{
  48. color: var(--sub-text-color);
  49. flex: 2;
  50. }
  51. .detail-right .detail-item .di-r{
  52. flex: 3;
  53. text-align: right;
  54. }
  55. .settting,.cancel{
  56. text-align: right;
  57. margin: 10px auto 20px;
  58. }
  59. .settting span{
  60. color:#fff;
  61. font-size: 14px;
  62. padding: 4px 10px;
  63. background: #00b5ee;
  64. cursor: pointer;
  65. }
  66. .cancel span{
  67. color: #00b5ee;
  68. font-size: 14px;
  69. padding: 4px 10px;
  70. background: #fff;
  71. cursor: pointer;
  72. }
  73. a {
  74. text-decoration: none;
  75. }
  76. a:hover {
  77. text-decoration: none;
  78. }
  79. .tcdPageCode {
  80. padding: 0 0 5px 0;
  81. color: #ccc;
  82. text-align: right;
  83. }
  84. .tcdPageCode a {
  85. display: inline-block;
  86. color: #000;
  87. display: inline-block;
  88. height: 25px;
  89. line-height: 25px;
  90. padding: 0 8px;
  91. border: 1px solid #ddd;
  92. margin: 0 4px;
  93. vertical-align: middle;
  94. background: #fff;
  95. }
  96. .tcdPageCode a:hover {
  97. text-decoration: none;
  98. border: 1px solid #00b5ee;
  99. }
  100. .tcdPageCode span.current {
  101. display: inline-block;
  102. height: 25px;
  103. line-height: 25px;
  104. padding: 0 8px;
  105. margin: 0 4px;
  106. color: #fff;
  107. background-color: #00b5ee;
  108. border: 1px solid #00b5ee;
  109. vertical-align: middle;
  110. }
  111. .tcdPageCode span.disabled {
  112. display: inline-block;
  113. height: 25px;
  114. line-height: 25px;
  115. padding: 0 8px;
  116. margin: 0 4px;
  117. color: #bfbfbf;
  118. background: #f2f2f2;
  119. border: 1px solid #bfbfbf;
  120. vertical-align: middle;
  121. }