12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /* pages/customized/made/madeFont/madeFont.wxss */
- page{
- background:#fff;
- }
- .made-content,.made-box-img{
- 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; */
- }
- .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-icon{
- width:190rpx;
- }
- .footer-add-btn{
- background:#00af66;
- color:#fff;
- }
- /* 层样式 */
- .font-ceng{
- width:100%;
- height:100%;
- position:fixed;
- top:0;
- left:0;
- z-index:110000;
- background:rgba(0,0,0,0.6);
- }
- .input-box input{
- width:600rpx;
- height:150rpx;
- line-height:150rpx;
- margin:88rpx auto 50rpx;
- text-align:center;
- background:none;
- border:1rpx dashed #fff;
- color:#fff;
- font-size:30rpx;
- font-weight: bold;
- }
- .font-color{
- width:600rpx;
- margin:0 auto;
- }
- .font-item{
- width:50rpx;
- height:50rpx;
- border-radius:50%;
- }
- .isColor{
- width:40rpx;
- height:40rpx;
- border:5rpx solid #fff;
- border-radius:50%;
- }
- .isColor .font-item{
- width:30rpx;
- height:30rpx;
- border-radius:50%;
- border:5rpx solid rgba(0,0,0,0.6);
- }
|