| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- .product{
- padding: 15rpx 30rpx;
- }
- .worker_search {
- width: 100%;
- height: 110rpx;
- position: relative;
- z-index: 1;
- padding: 16rpx 30rpx 0 30rpx;
- box-sizing: border-box;
- box-shadow: 0 4rpx 16rpx 0 rgba(0, 0, 0, 0.03);
- border-radius: 20rpx;
- background: #ffffff;
- margin-bottom: 22rpx;
- }
- .worker_search_con {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 30rpx;
- border-radius: 80rpx;
- background: #F2F5F9;
- }
- .worker_search_con input {
- flex: auto;
- width: 100%;
- background: none;
- border: none;
- height: 78rpx;
- }
- .worker_search_con view {
- flex: none;
- width: 100rpx;
- display: inline-block;
- line-height: 60rpx;
- font-size: 26rpx;
- }
- .worker_search_con view text {
- margin-right: 10rpx;
- font-size: 30rpx;
- }
- .top{
- width: 100%;
- background-color: var(--color);
- text-align: center;
- padding: 20rpx 30rpx;
- color: #fff;
- border-top: 2.5rpx solid #f8f8f8;
- }
- .productInfo{
- /* padding:30rpx; */
- background: #fff;
- display: flex;
- margin-bottom: 25rpx;
- }
- .productInfo .info>text{
- color: #2D59E6;
- overflow: hidden;
- display: block;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .productInfo .text{
- color: #999999;
- }
- .productInfo >text>text{
- color: #000;
- }
- .del ,.edit{
- flex-grow: 0;
- color: #fff;
- width: 160rpx;
- line-height: 80rpx;
- text-align: center;
- padding: 37rpx 0;
- }
- .del{
- background-color: #fe3e2f;
- }
- .edit{
- background-color: var(--color);
- }
- .productInfo .info{
- flex-grow: 1;
- width: 100%;
- margin-left: -320rpx;
- background-color: #fff;
- padding: 15rpx 30rpx;
- }
- .productInfo .info > view{
- padding-top: 15rpx;
- }
- .productInfo .info ,.productInfo .del,.productInfo .edit{
- transform: translateX(320rpx);
- transition: all 0.4s;
- }
- .touch-move-active .info,.touch-move-active .del ,.touch-move-active .edit{
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
|