123456789101112131415161718192021222324252627 |
- @import "~@less/variables.less";
- .panBox{
- .pop;
- }
- .pan{
- width: 280px;
-
- td{
- width: 68px;
- height:44px;
- }
- span{
- border:1px #fff solid;
- outline: none;
- background: none;
- display: inline-block;
- width: 100%;
- height: 100%;
- text-align: center;
- line-height: 44px;
- color: #333;
- cursor: pointer;
- }
- span:hover{
- border-color: @blue;
- }
- }
|