| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- /* 我的足迹 */
- .footprint-head {
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 44px;
- background: #f8f8f8;
- padding: 0 20px;
- }
- .footprint-head .head-tit {
- font-size: 14px;
- color: #333;
- font-weight: bold;
- }
- .footprint-head .batch-btn {
- font-size: 12px;
- color: #666;
- }
- .footprint-head .batch-btn:hover {
- color: #e1251b;
- cursor: pointer;
- }
- .footprint-head .action-btn-box {
- display: flex;
- align-items: center;
- color: #666;
- cursor: pointer;
- }
- .footprint-head .action-btn-box .batch-box .check:hover .checkbox::before{
- border-color: #e1251b;
- }
- .footprint-head .action-btn-box .batch-box .check:hover,
- .footprint-head .action-btn-box .batch-box .delete-collection:hover,
- .footprint-head .action-btn-box .cancel-btn:hover {
- color: #e1251b;
- }
- .footprint-head .action-btn-box .batch-box .delete-collection {
- padding: 0 10px;
- }
- .user-center .uc-collection .time {
- font-size: 20px;
- margin-top: 14px;
- font-weight: 600;
- }
- .user-center .uc-collection .goods-list .list-con .item {
- display: inline-block;
- width: 244px;
- height: auto;
- border: 1px solid #eee;
- box-sizing: border-box;
- margin-right: 16px;
- margin-top: 12px;
- }
- .user-center .uc-collection .goods-list .list-con .item:nth-child(4n) {
- margin-right: 0;
- }
- .user-center .uc-collection .goods-list .list-con .item .goods-img {
- width: 242px;
- height: 242px;
- line-height: 242px;
- margin: 0;
- }
- .user-center .uc-collection .goods-list .list-con .item .goods-msg {
- padding-bottom: 20px;
- }
- .user-center .uc-collection .goods-action {
- text-align: center;
- line-height: 35px;
- background: #f9f9f9;
- border-top: 1px solid #eee;
- display: flex;
- }
- .user-center .uc-collection .goods-action .action-a {
- color: #666;
- text-align: center;
- width: 50%;
- }
- .user-center .uc-collection .goods-action .action-a.a1 {
- border-right: 1px solid #eee;
- }
- .user-center .uc-collection .goods-action .action-a .icon {
- display: inline-block;
- vertical-align: top;
- background: url(../images/icons.png) no-repeat;
- margin-right: 5px;
- }
- .user-center .uc-collection .goods-action .action-a.a1 .icon {
- width: 17px;
- height: 15px;
- margin-top: 10px;
- background-position: 0 -38px;
- }
- .user-center .uc-collection .goods-action .action-a.a2 .icon {
- width: 14px;
- height: 14px;
- margin-top: 10px;
- background-position: 0 -415px;
- }
- .user-center .uc-collection .goods-action .action-a:hover {
- color: #e1251b;
- }
- .user-center .uc-collection .goods-action .action-a.a1:hover .icon {
- background-position: -22px -38px;
- }
- .user-center .uc-collection .goods-action .action-a.a2:hover .icon {
- background-position: -19px -415px;
- }
- .user-center .uc-collection .item-mask {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(0,0,0,0.1);
- display: none;
- }
- .user-center .uc-collection .batch-edit .item-mask {
- display: block;
- }
- .user-center .uc-collection .goods-list .list-con .item.batch-edit:hover {
- opacity: 1;
- box-shadow: none;
- border-color: #e1251b;
- }
- .user-center .uc-collection .goods-list .list-con .item.checked {
- border-color: #e1251b;
- }
- .user-center .uc-collection .item-mask .icon {
- position: absolute;
- right: 0;
- top: 0;
- width: 30px;
- height: 30px;
- background: rgba(0,0,0,0.1);
- }
- .user-center .uc-collection .goods-list .list-con .item.checked .item-mask .icon {
- background: #e1251b;
- }
- .user-center .uc-collection .item-mask .icon::before {
- position: absolute;
- top: 9px;
- left: 7px;
- display: block;
- width: 16px;
- height: 12px;
- content: " ";
- background: url(../images/icons.png) no-repeat 0 -746px;
- }
- /* 页码 */
- .user-center .uc-collection .pages {
- margin-top: 20px;
- margin-right: 10px;
- }
|