certificateDetail.css 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. .project {
  2. height: 0.7rem;
  3. line-height: 0.7rem;
  4. background: #1AA1E6;
  5. font-size: 0.24rem;
  6. color: #FFFFFF;
  7. font-weight: bold;
  8. }
  9. .project-content {
  10. margin: 0.3rem 0;
  11. justify-content: center;
  12. align-items: stretch;
  13. }
  14. /* 考试 */
  15. .test-box {
  16. width: 8.9rem;
  17. /* min-height: 8.12rem;
  18. */
  19. background: #FFFFFF;
  20. border-radius: 0rem 0rem 0rem 0rem;
  21. opacity: 1;
  22. border: 0.03rem solid #FFFFFF;
  23. position: relative;
  24. padding: 0.3rem;
  25. box-sizing: border-box;
  26. }
  27. .test-title {
  28. font-size: 0.18rem;
  29. font-family: Source Han Sans CN-Bold, Source Han Sans CN;
  30. font-weight: bold;
  31. color: #1AA1E6;
  32. line-height: 0.36rem;
  33. text-align: center;
  34. }
  35. .table {
  36. font-size: 0.16rem;
  37. align-items: flex-start;
  38. margin-top: 0.3rem;
  39. }
  40. .border {
  41. border: 0.01rem solid #DEDEDE;
  42. }
  43. .border-left {
  44. border-left: 0.01rem solid #DEDEDE;
  45. }
  46. .border-left-none {
  47. border-left: none;
  48. }
  49. .border-right {
  50. border-right: 0.01rem solid #DEDEDE;
  51. }
  52. .border-right-none {
  53. border-right: none;
  54. }
  55. .border-bottom {
  56. border-bottom: 0.01rem solid #DEDEDE;
  57. }
  58. .border-bottom-none {
  59. border-bottom: none;
  60. }
  61. .border-top {
  62. border-top: 0.01rem solid #DEDEDE;
  63. }
  64. .border-top-none {
  65. border-top: none;
  66. }
  67. .padding-left {
  68. padding-left: 0.1rem
  69. }
  70. .height56 {
  71. height: 0.56rem;
  72. box-sizing: border-box;
  73. }
  74. .width140 {
  75. width: 1.4rem;
  76. box-sizing: border-box;
  77. }
  78. .width200 {
  79. width: 2rem;
  80. box-sizing: border-box;
  81. }
  82. .text-center {
  83. text-align: center;
  84. }
  85. .ddflex-jc {
  86. display: flex;
  87. align-items: center;
  88. justify-content: center;
  89. }
  90. .bg-color {
  91. background: #F5F5F5;
  92. }
  93. .test-info {
  94. width: 2.8rem;
  95. flex-direction: column;
  96. margin-left: 0.3rem;
  97. }
  98. /* 考试信息 */
  99. .test-people {
  100. width: 100%;
  101. background-color: #FFFFFF;
  102. padding: 0.12rem 0.11rem;
  103. box-sizing: border-box;
  104. }
  105. .test-people image {
  106. width: 0.8rem;
  107. height: 0.89rem;
  108. margin-right: 0.19rem;
  109. }
  110. .test-people-info {
  111. flex-direction: column;
  112. justify-content: space-between;
  113. font-size: 0.14rem;
  114. flex: 1;
  115. align-items: flex-start;
  116. }
  117. .test-people-label {
  118. color: #999999;
  119. line-height: 0.36rem;
  120. margin-right: 0.08rem;
  121. }
  122. /* 考试公告 */
  123. .note-box {
  124. width: 100%;
  125. background-color: #FFFFFF;
  126. padding: 0.2rem;
  127. box-sizing: border-box;
  128. margin-top: 0.2rem;
  129. }
  130. .note-title {
  131. margin-bottom: 0.18rem;
  132. font-size: 0.16rem;
  133. }
  134. .note-title-icon {
  135. width: 0.18rem;
  136. height: 0.18rem;
  137. margin-right: 0.1rem;
  138. }
  139. .note-item {
  140. justify-content: space-between;
  141. font-size: 0.12rem;
  142. font-weight: 400;
  143. line-height: 0.3rem;
  144. font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  145. cursor: pointer;
  146. }
  147. .note-item-content {
  148. color: #666666;
  149. flex: 1;
  150. overflow: hidden;
  151. text-overflow: ellipsis;
  152. white-space: nowrap;
  153. margin-right: 0.1rem;
  154. }
  155. .note-item-content:hover {
  156. text-decoration: underline #666666;
  157. }
  158. .note-item-date {
  159. color: #999999;
  160. }
  161. /* 移动端 */
  162. .m-project {
  163. height: 80rpx;
  164. line-height: 80rpx;
  165. background: #1AA1E6;
  166. font-size: 36rpx;
  167. text-align: center;
  168. color: #FFFFFF;
  169. font-weight: bold;
  170. }
  171. .m-padding-left{
  172. padding-left: 30rpx;
  173. }
  174. .m-height56{
  175. height: 100rpx;
  176. }
  177. .m-text-center{
  178. text-align: center;
  179. }
  180. .m-width150{
  181. width: 150rpx;
  182. }
  183. .m-width200{
  184. width: 300rpx;
  185. }
  186. .m-note-item {
  187. justify-content: space-between;
  188. font-size: 28rpx;
  189. font-weight: 400;
  190. line-height:2;
  191. font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  192. cursor: pointer;
  193. }
  194. .m-note-item-content {
  195. color: #666666;
  196. flex: 1;
  197. overflow: hidden;
  198. text-overflow: ellipsis;
  199. white-space: nowrap;
  200. margin-right: 10rpx;
  201. }
  202. .m-note-item-content:hover {
  203. /* text-decoration: underline #666666; */
  204. }
  205. .m-note-item-date {
  206. color: #999999;
  207. }
  208. .m-title{
  209. position: relative;
  210. z-index: 1;
  211. margin-left: 12rpx;
  212. }
  213. .m-title::after{
  214. content: '';
  215. background-color: #007aff;
  216. width: 6rpx;
  217. height: 60%;
  218. position: absolute;
  219. top: 50%;
  220. transform: translateY(-50%);
  221. left: -12rpx;
  222. z-index: 0;
  223. }
  224. .popup-content {
  225. /* display: flex; */
  226. /* flex-direction: row; */
  227. align-items: center;
  228. justify-content: center;
  229. padding: 30rpx;
  230. height: 100rpx;
  231. background-color: #fff;
  232. }
  233. /deep/.right{
  234. width: unset;
  235. }
  236. .popup-height {
  237. height: 100%;
  238. flex: 1;
  239. width:400rpx
  240. }