1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- /* myComponents/product/product.wxss */
- @import "/static/iconfont/iconfont.wxss";
- .swiper{
- height: 200rpx;
- }
- .slide-image {
- width: 100%;
- height: 180rpx;
- }
- .flex{
- width: 100%;
- display: flex;
- justify-content: space-between;
- }
- .icon{
- display: flex;
- }
- .product_content{
- display: flex;
- flex-wrap: wrap;
- }
- .product_item{
- width: 45%;
- margin: 10rpx 2.5%;
- position: relative;
- }
- .title{
- font-size: 35rpx;
- white-space: nowrap; /* 防止文本换行 */
- overflow: hidden; /* 隐藏超出容器的文本 */
- text-overflow: ellipsis; /* 显示省略号来表示文本被截断 */
- }
- .product_operate{
- background-color: rgb(230 230 230);
- width: 100%;
- height: 200rpx;
- position: absolute;
- top: 0;
- left: 0;
- }
- .cancel{
- height: auto;
- position: absolute;
- right: 10rpx;
- top: 5rpx;
- }
- .grids{
- background-color: rgb(230 230 230);
- height:180rpx;
- display: flex;
- justify-content: space-around;
- align-items: center;
- }
- .grid{
- /* height: 100%; */
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .line{
- width: 1px !important;
- height: 70rpx;
- background-color: rgb(113 109 133);
- float: right;
- }
- .operate_text{
- font-size: 20rpx;
- }
- .operate_icon{
- margin-bottom: 10rpx;
- }
- .foot{
- width: 100%;
- color: #969799;
- background-color: #f7f8fa;
- text-align: center;
- line-height:100rpx;
- }
|