myIssue.wxss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .issue {
  28. width: 100%;
  29. height: 300rpx;
  30. background-color: #FFFFFF;
  31. }
  32. .issue-head {
  33. background-color: #ffffff;
  34. /* border-top: 1upx solid $borderColor;
  35. border-bottom: 1upx solid $borderColor; */
  36. /* padding: 0 25upx; */
  37. display: -webkit-box;
  38. display: -webkit-flex;
  39. display: flex;
  40. -webkit-box-align: center;
  41. -webkit-align-items: center;
  42. align-items: center;
  43. -webkit-box-orient: vertical;
  44. -webkit-box-direction: normal;
  45. -webkit-flex-direction: column;
  46. flex-direction: column;
  47. }
  48. .issue-head-pic {
  49. width: 100rpx;
  50. height: 100rpx;
  51. -webkit-border-radius: 50%;
  52. border-radius: 50%;
  53. vertical-align: middle;
  54. margin-top: -50rpx;
  55. /* margin-right: 17upx; */
  56. }
  57. .issue-head-title {
  58. line-height: 100rpx;
  59. font-size: 30rpx;
  60. vertical-align: middle;
  61. /* margin-right: 35upx; */
  62. }
  63. .issue-head-star-box {
  64. display: inline-block;
  65. }
  66. .issue-head-star-box image {
  67. width: 32rpx;
  68. height: 32rpx;
  69. vertical-align: middle;
  70. margin: 14rpx;
  71. }
  72. .issue-head-star-box image.active {
  73. -webkit-animation: star_move ease-in 1 1s,star_rotate ease 1.5s infinite 1s;
  74. animation: star_move ease-in 1 1s,star_rotate ease 1.5s infinite 1s;
  75. }
  76. .issue textarea {
  77. width: 100%;
  78. height: 100rpx;
  79. text-align: center;
  80. background-color: #ffffff;
  81. font-size: 28rpx;
  82. color: #898989;
  83. padding: 24rpx;
  84. -webkit-box-sizing: border-box;
  85. box-sizing: border-box;
  86. /* line-height: 40upx */
  87. }
  88. .issue-btn-box {
  89. /* padding: 0upx 30upx; */
  90. }
  91. .issue-btn-box button {
  92. width: 100%;
  93. height: 80rpx;
  94. -webkit-border-radius: 0rpx;
  95. border-radius: 0rpx;
  96. font-size: 28rpx;
  97. background-color: #32C45E;
  98. line-height: 80rpx;
  99. margin-top: 55rpx;
  100. }
  101. /* @keyframes star_move{
  102. from{
  103. width: 50upx;
  104. height: 50upx;
  105. transform: rotate(0deg)
  106. }
  107. to{
  108. width: 32upx;
  109. height: 32upx;
  110. transform: rotate(0)
  111. }
  112. } */
  113. @-webkit-keyframes star_rotate {
  114. 0% {
  115. -webkit-transform: rotateY(360deg);
  116. transform: rotateY(360deg);
  117. }
  118. 100% {
  119. -webkit-transform: rotateY(180deg);
  120. transform: rotateY(180deg);
  121. }
  122. }
  123. @keyframes star_rotate {
  124. 0% {
  125. -webkit-transform: rotateY(360deg);
  126. transform: rotateY(360deg);
  127. }
  128. 100% {
  129. -webkit-transform: rotateY(180deg);
  130. transform: rotateY(180deg);
  131. }
  132. }