msgSetting.scss 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. //消息接收设置
  2. .sld_setting{
  3. float: left;
  4. margin-left: 10px;
  5. .sld_setting_title{
  6. color: #333333;
  7. font-size: 16px;
  8. font-weight: bold;
  9. color: #333333;
  10. font-size: 16px;
  11. font-weight: bold;
  12. border-left: 2px solid $colorMain2;
  13. margin: 12px 10px;
  14. padding-left: 10px;
  15. }
  16. .setting_list{
  17. width: 1005px;
  18. background: #ffffff;
  19. border: 1px solid #EEEEEE;
  20. padding-bottom: 20px;
  21. .setting_pre{
  22. .list_title{
  23. height: 56px;
  24. line-height: 55px;
  25. border-bottom: 1px solid #EEEEEE;
  26. padding-left: 30px;
  27. color: #333333;
  28. font-size: 16px;
  29. font-weight: bold;
  30. }
  31. .list{
  32. display: flex;
  33. flex-wrap: wrap;
  34. padding-left: 30px;
  35. padding-top: 10px;
  36. .list_pre{
  37. margin-bottom: 20px;
  38. margin-right: 80px;
  39. .list_pre_title{
  40. font-size: 14px;
  41. text-align: center;
  42. line-height: 32px;
  43. }
  44. .list_pre_option{
  45. width: 120px;
  46. height: 30px;
  47. border-radius: 4px;
  48. cursor: pointer;
  49. .receive{
  50. width: 59px;
  51. height: 30px;
  52. line-height: 30px;
  53. text-align: center;
  54. border: 1px solid #CCCCCC;
  55. -webkit-transition: all .3s;
  56. -moz-transition: all .3s;
  57. -ms-transition: all .3s;
  58. -o-transition: all .3s;
  59. transition: all .3s;
  60. border-radius: 4px 0 0 4px;
  61. background-color: #ffffff;
  62. display: block;
  63. color: #333333;
  64. &:nth-child(1){
  65. border-right: none;
  66. }
  67. &:nth-child(2){
  68. border-left: none;
  69. border-radius: 0 4px 4px 0;
  70. }
  71. }
  72. .no_receive{
  73. background-color: #B9B9B9;
  74. border-color:#B9B9B9;
  75. color: #333333;
  76. }
  77. .active{
  78. background-color: #2CADFF;
  79. border-color: #2CADFF;
  80. color: #fff;
  81. }
  82. }
  83. }
  84. }
  85. }
  86. }
  87. }