| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- .my{
- background: url(https://www.icelook.cn/exhibition/images/page/bg2.png) no-repeat;
- background-size: cover;
- height: 100vh;
- }
- .title{
- width: 100%;
- padding-bottom: 20rpx;
- .titles{
- text-align: center;
- font-size: 36rpx;
- font-family: Georgia, 'Times New Roman', Times, serif;
- font-weight: bold;
- padding-top: 10rpx;
- }
- .back{
- position: absolute;
- left: 30rpx;
- width: 80rpx;
- height: 35rpx;
- image{
- width: 18rpx;
- height: 100%;
- }
- }
- }
- .login{
- display: flex;
- padding-top: 40rpx;
- padding-left: 40rpx;
- align-items: center;
- image{
- width: 108rpx;
- height: 108rpx;
- }
- span{
- font-size: 36rpx;
- color: #1A1A1A;
- font-family: monospace;
- font-weight: bold;
- padding-left: 30rpx;
- }
- }
- .my_list{
- position: fixed;
- bottom: 0;
- width: calc(100% - 60rpx);
- height: 70vh;
- background: #FDFAF3;
- border-top-left-radius: 30rpx;
- border-top-right-radius: 30rpx;
- padding:0 30rpx;
- padding-top: 50rpx;
- .item{
- border-bottom: 1px solid rgba(149, 64, 36, 0.3);
- height: 100rpx;
- line-height: 100rpx;
- position: relative;
- &:after{
- content: '';
- position: absolute;
- top:30rpx;
- right: 0;
- display: block;
- width: 40rpx;
- height: 40rpx;
- background: url(https://www.icelook.cn/exhibition/images/icon/mback.png) no-repeat;
- background-size: cover;
- }
- image{
- width: 48rpx;
- height: 48rpx;
- vertical-align:sub;
- }
- text{
- padding-left: 30rpx;
- }
- }
- }
|