detail.wxss 889 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. page {
  2. background-color: #f2f2f2;
  3. }
  4. .title-item {
  5. width: 100%;
  6. flex-direction: row;
  7. display: flex;
  8. align-items: center;
  9. margin-bottom: 30rpx;
  10. }
  11. .title-item .title {
  12. font-size: 28rpx;
  13. width: 200rpx;
  14. min-width: 200rpx;
  15. }
  16. .title-item .content {
  17. font-size: 28rpx;
  18. color: #666;
  19. }
  20. .reponse-item {
  21. flex-direction: column;
  22. display: flex;
  23. width: 100%;
  24. box-sizing: border-box;
  25. }
  26. .reponse-item .title {
  27. font-size: 28rpx;
  28. }
  29. .reponse-item textarea{
  30. height: 300rpx;
  31. width: 100%;
  32. border-radius: 8rpx;
  33. margin-top: 10rpx;
  34. background-color: #fff;
  35. padding: 10rpx;
  36. font-size: 28rpx;
  37. }
  38. .apply-btn{
  39. width: 200rpx;
  40. height: 70rpx;
  41. border-radius: 10rpx;
  42. flex-direction: row;
  43. display: flex;
  44. justify-content: center;
  45. align-items: center;
  46. font-size: 32rpx;
  47. color: #fff;
  48. background-color: rgb(31, 96, 236);
  49. position: fixed;
  50. bottom: 100rpx;
  51. }