common.css 823 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*点击切换标题显示*/
  2. /*选择菜单*/
  3. .visibility-hidden{
  4. visibility: hidden;
  5. }
  6. .title-menu{
  7. width: 100%;
  8. }
  9. .title-content{
  10. width: 60%;
  11. margin: 5% auto;
  12. display: flex;
  13. justify-content: space-between;
  14. flex-wrap: wrap;
  15. }
  16. .btn{
  17. width: 22%;
  18. font-size: 1rem;
  19. color: #939393;
  20. padding: 0.5rem 1rem;
  21. border-radius: 0.5rem;
  22. outline: none;
  23. background: #f1f1f1;
  24. border: 0;
  25. }
  26. .save-box{
  27. width: 60%;
  28. margin: 0 auto;
  29. display: flex;
  30. display: -webkit-box;
  31. justify-content: space-between;
  32. -webkit-justify-content: space-between;
  33. background: red;
  34. }
  35. .save-box .btn{
  36. width: 40%;
  37. background: #157dfe;
  38. color: #fff;
  39. }
  40. .checked{
  41. background: #157dfe;
  42. color: #fff;
  43. }
  44. .condition-box{
  45. display: none;
  46. }
  47. .none{
  48. display: none;
  49. }