猫妈狗爸伴宠师小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

84 lines
1.4 KiB

3 months ago
  1. <template>
  2. <view class="box">
  3. <view class="">
  4. <view class="color-fff size-28">
  5. 答题进度 10/23
  6. </view>
  7. <view class="step mt20 mb32">
  8. <view class="in">
  9. </view>
  10. </view>
  11. </view>
  12. <view class="content bg-fff">
  13. <view class="label size-22">
  14. 选择题
  15. </view>
  16. <view class="">
  17. <view class="size-28 mt32 mb20">
  18. 1猫咪每天在地上走路时不时还会打滚 身上是很不干净的最好每个星期洗次澡
  19. </view>
  20. <view class="size-28 color-777 p20 daan">
  21. A
  22. </view>
  23. <view class="size-28 color-777 p20 daan active mt24">
  24. B
  25. </view>
  26. </view>
  27. </view>
  28. </view>
  29. <view class="footer-btn">
  30. <view class="btn">
  31. 提交
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. </script>
  37. <style lang="scss" scoped>
  38. .active {
  39. color: #FFBF60;
  40. background-color: rgb(255, 241, 240);
  41. }
  42. .daan {
  43. background-color: #F3F3F3;
  44. border-radius: 50rpx;
  45. }
  46. .p20 {
  47. padding: 20px;
  48. }
  49. .box {
  50. background-image: linear-gradient(to bottom, #ffbf60, #f2f2f2);
  51. padding: 16rpx;
  52. .step {
  53. width: 720rpx;
  54. height: 32rpx;
  55. border-radius: 32rpx;
  56. background-color: #D9D9D9;
  57. .in {
  58. width: 50%;
  59. height: 32rpx;
  60. background-color: #ffbf60;
  61. border-radius: 32rpx;
  62. }
  63. }
  64. }
  65. .content {
  66. border-radius: 20rpx;
  67. padding: 15rpx 20rpx;
  68. .label {
  69. padding: 5rpx 15rpx;
  70. color: #fff;
  71. background-color: #FFBF60;
  72. }
  73. }
  74. </style>