123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /* pages/customized/made/made.wxss */
- page{
- background:#fff;
- }
- .made-content{
- width:100%;
- height:588rpx;
- margin:60rpx 0;
- }
- .made-prompt{
- width:inherit;
- height:inherit;
- }
- .made-box{
- width:270rpx;
- height:270rpx;
- padding:1rpx;
- margin:0 auto;
- /* background:red; */
- }
- .btn-box{
- width:70%;
- margin:0 auto;
- }
- .btn-box button{
- width:200rpx;
- background:none;
- color:#c9c9c9;
- font-size:32rpx;
- margin-bottom:36rpx;
- border:1rpx solid #c9c9c9;
- box-shadow:none;
- }
- .btn-box button.active{
- color:#00af66;
- border:1rpx solid #00af66
- }
- .footer{
- position:fixed;
- bottom:0;
- width:100%;
- z-index:10;
- line-height:92rpx;
- background:#fff;
- border-top:1rpx solid #e0e0e0;
- text-align: center;
- color:#666;
- font-size:30rpx;
- cursor: pointer;
- }
- .footer-btn{
- border-left:1rpx solid #e0e0e0;
- }
- .footer-btn:first-child{
- border-left:0rpx solid #e0e0e0;
- }
|