123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- .m-rate{
- display: inline-block;
- vertical-align: middle;
- .m-rate-star{
- display: inline-block;
- margin: 0;
- padding: 0;
- margin-right: 8px;
- transition: all .3s ease;
- position: relative;
- &:hover {
- transform: scale(1);
- }
- .favorite{
- position: relative;
- color: #c0c4cc;
- &::before{
- font-size: 20px;
- cursor: pointer;
- content: "\e6fb";
- transition: all .2s ease-in-out;
- display: block;
- }
- }
- .favorite-half{
- position: absolute;
- left: 0;
- top: 0;
- width: 50%;
- height: 100%;
- overflow: hidden;
- color: transparent;
- &::before{
- font-size: 20px;
- cursor: pointer;
- content: "\e6fb";
- transition: all .2s ease-in-out;
- display: block;
- }
- }
- .m-rate-star-first{
- position: absolute;
- left: 0;
- top: 0;
- width: 50%;
- height: 100%;
- overflow: hidden;
- opacity: 0;
- cursor: pointer;
- transition: all .3s ease;
- }
- .m-rate-star-second{
- user-select: none;
- transition: all .3s ease;
- color: #c0c4cc;
- cursor: pointer;
- }
- .other-icon{
- position: relative;
- display: block;
- color: #c0c4cc;
- font-size: 20px;
- cursor: pointer;
- transition: all .2s ease-in-out;
- }
- .other-icon-half{
- position: absolute;
- left: 0;
- top: 0;
- width: 50%;
- height: 100%;
- overflow: hidden;
- color: transparent;
- font-size: 20px;
- cursor: pointer;
- display: block;
- transition: all .2s ease-in-out;
- }
- }
- .m-rate-text{
- display: inline-block;
- margin-left: 8px;
- font-size: 13px;
- }
- // 满的
- .m-rate-star-full{
- &:hover {
- transform: scale(1.1);
- }
- .favorite,
- .m-rate-star-second,
- .other-icon{
- color:#f5a623;
- }
- }
- // 半
- .m-rate-star-half{
- .favorite-half{
- color:#f5a623;
- }
- .m-rate-star-first{
- color:#f5a623;
- opacity: 1;
- }
- .other-icon-half{
- color:#f5a623;
- }
- }
- }
- .m-rate-disabled{
- .m-rate-star{
- .favorite{
- &::before{
- cursor: default;
- }
- }
- .favorite-half{
- &::before{
- cursor: default;
- }
- }
- }
- }
|