12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /* pages/userData/index.wxss */
- .index_main {
- background-image: url("https://cxzx.smcic.net/topic/tool/img/%E5%B0%91%E5%84%BF%E4%B9%A6%E7%94%BB%E5%A4%A7%E8%B5%9B/us-top.png");
- background-repeat: no-repeat;
- background-size: 100%;
- padding-top: 241rpx;
- padding-bottom: 45rpx;
- box-sizing: border-box;
- color: #A57044;
- position: relative;
- min-height: 100vh;
- }
- .card {
- border-radius: 20px;
- background-color: #fff;
- margin: 0 30rpx 30rpx 30rpx;
- padding: 30rpx;
- font-size: 28rpx;
- }
- .list {
- height: 2em;
- line-height: 2em;
- }
- .list_bot {
- display: flex;
- align-items: center;
- justify-content: space-between;
- gap: 10px;
- margin-bottom: 15rpx;
- }
- .list_bot:last-child{
- margin-bottom: 0;
- }
- .tag {
- width: 97rpx;
- height: 20rpx;
- margin-left: 5rpx;
- }
- .list_left {
- width: 29rpx;
- height: 29rpx;
- vertical-align: middle;
- }
- .list_center {
- vertical-align: middle;
- flex: 1;
- }
- .list_right {
- vertical-align: middle;
- width: 29rpx;
- height: 29rpx;
- }
- .card:last-child {
- margin-bottom: 0;
- }
|