123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- .page {
- // margin: auto;
- width: 100%;
- padding: 0 200px;
- background-color: #ffffff;
- }
- .box {
- background: rgba(255, 255, 255);
- box-shadow: 0px 0px 8px 4px rgba(212, 212, 212, 0.5);
- border-radius: 20px;
- }
- .head {
- .box;
- position: relative;
- margin: 30px 0;
- padding: 64px 76px;
- display: flex;
- .profile {
- width: 150px;
- height: 150px;
- background-image: url('@/assets/center/profile.png');
- background-size: 100%, 100%;
- background-repeat: no-repeat;
- }
- .textContent {
- margin-left: 60px;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- .name {
- font-size: 34px;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #4a4a4a;
- line-height: 48px;
- }
- .photo {
- font-size: 28px;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #4a4a4a;
- line-height: 40px;
- }
- }
- }
- .center {
- margin-bottom: 30px;
- height: 150px;
- display: flex;
- justify-content: space-between;
- .item {
- .box;
- width: 49%;
- text-align: center;
- font-size: 32px;
- line-height: 150px;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #4a4a4a;
- }
- }
- .bottomContent {
- .box;
- padding: 10px 30px;
- font-size: 32px;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #4a4a4a;
- .lineItem {
- height: 100px;
- line-height: 100px;
- border-bottom: 1px solid #d4d4d4;
- }
- .lineItem:last-child {
- border-bottom: none;
- }
- }
- .loginOut {
- margin: 50px auto 0;
- width: 329px;
- height: 97px;
- text-align: center;
- background: rgba(74, 144, 226);
- border-radius: 49px;
- font-size: 32px;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #ffffff;
- line-height: 97px;
- }
- .close {
- position: absolute;
- top: 20px;
- right: 20px;
- font-size: 30px;
- }
|