awardPopup.wxss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .content{
  2. padding: 40rpx 20rpx;
  3. font-size: 32rpx;
  4. margin-bottom: 30rpx;
  5. }
  6. .content .article_head{
  7. display: flex;
  8. flex-direction: row;
  9. align-items: center;
  10. }
  11. .content .article_head .left{
  12. margin-right: 20rpx;
  13. width: 232rpx;
  14. height: 140rpx;
  15. background: #eee;
  16. border-radius: 10rpx;
  17. }
  18. .content .article_head .left image{
  19. width: 100%;
  20. height: 100%;
  21. BORDER-RADIUS: 8rpx;
  22. box-shadow: 0rpx 0rpx 8rpx #999;
  23. }
  24. .content .article_head .right{
  25. flex: 1;
  26. display: flex;
  27. flex-direction: column;
  28. justify-content: space-around;
  29. }
  30. .content .article_head .right .prize_name{
  31. font-weight: 700;
  32. font-size: 38rpx;
  33. }
  34. .content .article_head .right .prize_instr{
  35. font-size: 26rpx;
  36. color: #999999;
  37. }
  38. .content .article_body{
  39. font-size: 26rpx;
  40. }
  41. .content .article_body .article_body_instr{
  42. margin: 40rpx 0;
  43. }
  44. .content .article_body .article_body_pic{
  45. border-radius: 10rpx;
  46. margin-bottom: 20rpx;
  47. text-align: center;
  48. }
  49. .content .article_body .article_body_pic image{
  50. width: 100%;
  51. }
  52. .btn{
  53. /* position: fixed;
  54. width: 100%;
  55. bottom: 0; */
  56. }
  57. .btn button{
  58. border-radius: 0;
  59. }
  60. /* --- 主题 --- */
  61. /* 红色 */
  62. .redContent .article_head .right .prize_name{color: #ff8382;}
  63. .redContent button{background-image: linear-gradient(to right, #ee3a43, #ff8483)}
  64. /* 蓝色 */
  65. .blueContent .article_head .right .prize_name{color: #559fd4;}
  66. .blueContent button{background-image: linear-gradient(to right, #4998d2, #cde6e9)}
  67. /* 绿色 */
  68. .greenContent .article_head .right .prize_name{color: #555f46;}
  69. .greenContent button{background-image: linear-gradient(to right, #658832, #96b26d)}