123456789101112131415161718192021222324252627282930 |
- .radio-box{
- display: inline-block;
- vertical-align: top;
- margin-left: 10px;
- }
- .radio{
- // width: 120px;
- height: 44px;
- line-height: 44px;
- cursor: pointer;
- display: block;
- padding-left: 10px;
-
- .tab{
- color:#000000;
- padding:0 10px 0 20px;
- }
- .disabled{
- opacity: 0.3;
- filter:alpha(opacity=30);
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=30);";
- }
- }
- .selected{
- background: rgba(59,158,208,0.1);
- background-image: url(../../images/first.png);
- background-repeat: no-repeat;
- background-position: 12px 15px;
- }
|