123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- /* pages/home/home.wxss */
- /* 头部区域 */
- .head {
- height: 130rpx;
- }
- .head-portrait-bg {
- float: left;
- width: 104rpx;
- height: 104rpx;
- background-color: #DDDEDF;
- border-radius: 20rpx;
- }
- .head-portrait-img {
- width: 100rpx;
- height: 100rpx;
- border-radius: 20rpx;
- }
- .username {
- float: left;
- width: 100rpx;
- margin-top: 30rpx;
- margin-left: 20rpx;
- font-size: 18px;
- }
- .head_bell {
- float: left;
- margin-top: -75rpx;
- margin-left: 650rpx;
- }
- /* ------------------------------ */
- /* 搜索栏 */
- .search_box {
- width: 100%;
- height: 80rpx;
- background-color: #E8E7E7;
- border-radius: 20rpx;
- }
- .search_text {
- float: left;
- padding-left: 15rpx;
- padding-top: 15rpx;
- }
- .search_icon {
- margin-bottom: 1rpx;
- }
- .search_button {
- float: right;
- width: 80rpx;
- height: 80rpx;
- margin-right: 10rpx;
- }
- /* 去除button边框 */
- button[plain]{ border:0 }
- /* ------------------------------ */
- /* 分类栏 */
- .categories {
- margin-top: 18rpx;
- }
- .categories view:nth-child(1) {
- float: left;
- margin-right: 75rpx;
- }
- .categories view:nth-child(2) {
- float: left;
- margin-left: 150rpx;
- margin-top: 12rpx;
- }
- .categories_block {
- position: absolute;
- top: 18rpx;
- left: -153rpx;
- }
- /* ------------------------------ */
- /* 商品 */
- .recommend_block {
- position: absolute;
- width: 255rpx;
- top: 32rpx
- }
- .commodity {
- display: flex;
- flex-wrap: wrap;
- margin-top: 10rpx;
- width: 100%;
- height: 1400rpx;
- background-color: pink;
- justify-content: flex-start;
- }
- .commodity_show {
- flex: 1;
- width: 320rpx;
- height: 400rpx;
- background-color: skyblue;
- }
- /* ------------------------------ */
|