12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- //消息接收设置
- .sld_setting{
- float: left;
- margin-left: 10px;
- .sld_setting_title{
- color: #333333;
- font-size: 16px;
- font-weight: bold;
- color: #333333;
- font-size: 16px;
- font-weight: bold;
- border-left: 2px solid $colorMain2;
- margin: 12px 10px;
- padding-left: 10px;
- }
- .setting_list{
- width: 1005px;
- background: #ffffff;
- border: 1px solid #EEEEEE;
- padding-bottom: 20px;
- .setting_pre{
- .list_title{
- height: 56px;
- line-height: 55px;
- border-bottom: 1px solid #EEEEEE;
- padding-left: 30px;
- color: #333333;
- font-size: 16px;
- font-weight: bold;
- }
- .list{
- display: flex;
- flex-wrap: wrap;
- padding-left: 30px;
- padding-top: 10px;
- .list_pre{
- margin-bottom: 20px;
- margin-right: 80px;
- .list_pre_title{
- font-size: 14px;
- text-align: center;
- line-height: 32px;
- }
- .list_pre_option{
- width: 120px;
- height: 30px;
- border-radius: 4px;
- cursor: pointer;
- .receive{
- width: 59px;
- height: 30px;
- line-height: 30px;
- text-align: center;
- border: 1px solid #CCCCCC;
- -webkit-transition: all .3s;
- -moz-transition: all .3s;
- -ms-transition: all .3s;
- -o-transition: all .3s;
- transition: all .3s;
- border-radius: 4px 0 0 4px;
- background-color: #ffffff;
- display: block;
- color: #333333;
- &:nth-child(1){
- border-right: none;
- }
- &:nth-child(2){
- border-left: none;
- border-radius: 0 4px 4px 0;
- }
- }
- .no_receive{
- background-color: #B9B9B9;
- border-color:#B9B9B9;
- color: #333333;
- }
- .active{
- background-color: #2CADFF;
- border-color: #2CADFF;
- color: #fff;
- }
- }
- }
- }
- }
- }
- }
|