showBoxDetail.wxss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /* pages/index/showBoxDetail/showBoxDetail.wxss */
  2. @import '../statusInfo/statusInfoTemplate.wxss';
  3. @import '../baseInfo/baseInfoTemplate.wxss';
  4. @import '../datagramInfo/datagramInfoTemplate.wxss';
  5. .showBoxDetailContainer {
  6. width: 100%;
  7. height: 100%;
  8. position: fixed;
  9. display: flex;
  10. flex-direction: column;
  11. justify-content: start;
  12. background-color: white;
  13. }
  14. .tab-content{
  15. width: 90%;
  16. margin:0 auto;
  17. height: 100vh;
  18. display: flex;
  19. flex-direction: column;
  20. overflow: hidden;
  21. }
  22. .sv{
  23. height: 1px;
  24. flex: 1;
  25. }
  26. .showBoxDetailContainer .imageBox{
  27. display: flex;
  28. flex-direction: column;
  29. justify-content: center;
  30. }
  31. .label-1, .label-2{
  32. margin: 30rpx 0;
  33. }
  34. .label-3-text{
  35. color: #576B95;
  36. font-size: 34rpx;
  37. }
  38. .checkbox-3{
  39. display: block;
  40. margin: 30rpx 0;
  41. }
  42. .publish_button {
  43. height:80rpx;
  44. width: 200rpx;
  45. background-color: wheat;
  46. border-top-left-radius: 40rpx;
  47. border-bottom-left-radius: 40rpx;
  48. display: flex;
  49. flex-direction: row;
  50. align-items: center;
  51. }
  52. .publish_button image{
  53. height: 60rpx;
  54. width: 60rpx;
  55. margin-left: 40rpx;
  56. }
  57. .publish_button_box{
  58. height:80rpx;
  59. width: 200rpx;
  60. position: absolute;
  61. right: 0rpx;
  62. bottom: 40rpx;
  63. }
  64. .pulish_button_show{
  65. animation: move_show 1s 1;
  66. animation-fill-mode:forwards;
  67. }
  68. .pulish_button_hide{
  69. animation: move_hide 1s 1;
  70. animation-fill-mode:forwards;
  71. }
  72. @keyframes move_show{
  73. from {right:-200rpx;}
  74. to {right:0rpx;}
  75. }
  76. @keyframes move_hide{
  77. from {right:0rpx;}
  78. to {right:-200rpx;}
  79. }