50 lines
883 B
Plaintext
50 lines
883 B
Plaintext
|
|
page{
|
||
|
|
background: #ccc;
|
||
|
|
}
|
||
|
|
.container {
|
||
|
|
position: relative;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
font-size: 14px;
|
||
|
|
color: #000;
|
||
|
|
padding: 0.8em;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
.myproducts-box{
|
||
|
|
float: left;
|
||
|
|
width: 100%;
|
||
|
|
padding-top: 0.8em;
|
||
|
|
padding-left: 0.8em;
|
||
|
|
}
|
||
|
|
.myproducts-item {
|
||
|
|
float: left;
|
||
|
|
width: 50%;
|
||
|
|
padding: 0.8em;
|
||
|
|
}
|
||
|
|
.myproducts-item-to {
|
||
|
|
float: left;
|
||
|
|
width: 100%;
|
||
|
|
border-radius: 0.4em;
|
||
|
|
background-color: #fff;
|
||
|
|
border: solid 1px #dfdfdf;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.myproducts-item-to .imgbox{
|
||
|
|
float: left;
|
||
|
|
width: 100%;
|
||
|
|
border-radius: 0.4em 0.4em 0 0;
|
||
|
|
}
|
||
|
|
.myproducts-item-to .title{
|
||
|
|
float: left;
|
||
|
|
width: 100%;
|
||
|
|
font-weight: 900;
|
||
|
|
}
|
||
|
|
.myproducts-item-to .price{
|
||
|
|
float: left;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
.nodata{padding-top:1em; text-align: center; line-height: 1.5em; color:#939393;}
|
||
|
|
.nodata image {
|
||
|
|
width: 80px;
|
||
|
|
height: 80px;
|
||
|
|
}
|