temporary_detail.css 964 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .box-btn{
  2. width: 100%;
  3. text-align: center;
  4. padding: 15px 0;
  5. }
  6. .code{
  7. width: 90vw;
  8. height: 10vw;
  9. text-align: center;
  10. background-color: #409eff;
  11. border-radius: 5px;
  12. border: #409eff;
  13. color: #fff;
  14. }
  15. .code-img{
  16. width: 100%;
  17. text-align: center;
  18. padding: 15px 0;
  19. }
  20. #qrcode img{
  21. margin: 0 auto;
  22. }
  23. #saveBtn{
  24. width: 45vw;
  25. height: 10vw;
  26. text-align: center;
  27. background-color: #67c23a;
  28. border-radius: 5px;
  29. border: #67c23a;
  30. color: #fff;
  31. }
  32. #clearBtn{
  33. width: 45vw;
  34. height: 10vw;
  35. text-align: center;
  36. background-color: #e6a23c;
  37. border-radius: 5px;
  38. border: #e6a23c;
  39. color: #fff;
  40. }
  41. #followBtn {
  42. padding: 10px 16px;
  43. background-color: #409eff;
  44. color: white;
  45. border: #409eff;
  46. border-radius: 5px;
  47. cursor: pointer;
  48. position: absolute;
  49. right: 4.2vw;
  50. margin-top: -2.8vw;
  51. font-size: 14px;
  52. }
  53. #followBtn.followed {
  54. background-color: #f0f9eb;
  55. border: 1px solid #67c23a;
  56. color: #71c647;
  57. font-size: 14px;
  58. }