12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /* pages/welfareMall/personal/personal.wxss */
- .personal{
- width: 750rpx;
- height: auto;
- padding-bottom: 119rpx;
- }
- /* 垂直方向布局,水平居中 **/
- .flex-column{
- display: flex;
- flex-flow: column nowrap;
- align-items: center;
- justify-content: left;
- }
- /* 水平方向布局,垂直居中 **/
- .flex-row{
- display: flex;
- flex-flow: row nowrap;
- align-items: center;
- justify-content: center;
- }
- .head{
- width: 750rpx;
- height: 550rpx;
- background: #FFF2F3;
- border-radius: 0rpx 0rpx 40rpx 40rpx;
- justify-content: space-between;
- }
- .head-personal{
- width: 100%;
- height: 136rpx;
- justify-content: flex-start;
- margin-left: 35rpx;
- margin-top: 30rpx;
- }
- .head-personal-logo{
- width: 136rpx;
- height: 136rpx;
- }
- .head-card{
- width: 666rpx;
- height: 286rpx;
- background-image: url(https://dy.shpr.top/shareActivity/card.png);
- background-size: 100% 100%;
- margin-bottom: 51rpx;
- }
- .head-personal-login{
- margin-left: 33rpx;
- font-size: 38rpx;
- font-weight: 500;
- color: #303030;
- }
|