12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /* pages/customized/made/made.wxss */
- page{
- background:#fff;
- }
- .made-content{
- width:100%;
- height:588rpx;
- margin:60rpx 0;
- /* position:relative; */
- }
- .made-prompt{
- width:inherit;
- height:inherit;
- }
- .made-img{
- /* position:absolute;
- z-index:100; */
- background:red;
- width:270rpx;
- height:270rpx;
- padding:1rpx;
- margin:0 auto;
- }
- .made-font{
- background:blue;
- width:270rpx;
- height:270rpx;
- padding:1rpx;
- margin:0 auto;
- }
- .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 #dcdcdc;
- text-align: center;
- color:#666;
- font-size:30rpx;
- cursor: pointer;
- }
- .footer-btn{
- border-left:1rpx solid #dcdcdc;
- }
- .footer-btn:first-child{
- border-left:0rpx solid #dcdcdc;
- }
|