12345678910111213141516171819202122232425262728293031323334353637383940 |
- .my {
- position: relative;
- box-sizing: border-box;
- width: 100%;
- min-height: 100vh;
- background: #f2f2f2;
- }
- .my .userinfo {
- text-align: center;
- padding: 50px 0;
- }
- .my .userinfo .title {
- font-size: 22px;
- font-weight: bold;
- height: 40px;
- line-height: 40px;
- }
- .my .my-main {
- width: calc(100% - 32px);
- box-sizing: border-box;
- border-radius: 10px;
- margin: 0 16px;
- overflow: hidden;
- }
- .my .my-main-btn {
- width: calc(100% - 32px);
- box-sizing: border-box;
- border-radius: 10px;
- margin: 30px 16px 0 16px;
- overflow: hidden;
- background: #fff;
- height: 50px;
- line-height: 50px;
- text-align: center;
- color: #ff976a;
- }
|