Protocal.scss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .protocal-content{
  2. background:#FFF;
  3. min-height:360px;
  4. width:90%;
  5. margin:auto;
  6. border-top-right-radius: 20px;
  7. border-top-left-radius: 20px;
  8. box-shadow: 0px 0px 20px #5a5a5a;
  9. .title{
  10. font-size: 18px;
  11. font-weight: bold;
  12. width:100%;
  13. height:50px;
  14. display:flex;
  15. justify-content: center;
  16. align-items: center;
  17. }
  18. .content{
  19. margin-left:20px;
  20. margin-right: 20px;
  21. font-size:14px;
  22. line-height: 25px;
  23. .pro{
  24. margin-bottom: 10px;
  25. .red{
  26. color:#b21c1c;
  27. }
  28. }
  29. }
  30. .btns{
  31. width:100%;
  32. height:50px;
  33. margin-top:20px;
  34. display: flex;
  35. flex-direction: row;
  36. justify-content: space-between;
  37. align-items: center;
  38. .btn{
  39. width:50%;
  40. display:flex;
  41. justify-content: center;
  42. align-items: center;
  43. font-size:14px;
  44. .btn-disagree{
  45. width:60%;
  46. font-size:14px;
  47. border-radius: 5px;
  48. }
  49. .btn-agree{
  50. width:60%;
  51. font-size:14px;
  52. border-radius: 5px;
  53. background:#b21c1c;
  54. color:#FFF;
  55. }
  56. }
  57. }
  58. }