12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- .container {
- background-color: #f5f7fa;
- padding: 20rpx;
- }
- .header {
- display: flex;
- align-items: center;
- margin-bottom: 20rpx;
- }
- .avatar {
- width: 80rpx;
- height: 80rpx;
- border-radius: 50%;
- margin-right: 20rpx;
- }
- .user-info {
- display: flex;
- flex-direction: column;
- }
- .phone {
- font-size: 32rpx;
- font-weight: bold;
- }
- .personal-info {
- font-size: 28rpx;
- color: #999;
- }
- .my-study {
- background-color: #fff;
- border-radius: 20rpx;
- padding: 30rpx;
- margin-bottom: 25rpx;
- }
- .section-title {
- font-size: 32rpx;
- font-weight: bold;
- margin-bottom: 10rpx;
- }
- .function-icons {
- display: flex;
- justify-content: space-between;
- }
- .icon-item {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .icon {
- width: 60rpx;
- height: 60rpx;
- margin-bottom: 10rpx;
- }
- .icon-text {
- font-size: 28rpx;
- }
- .function-list {
- background-color: #fff;
- border-radius: 10rpx;
- padding: 30rpx;
- }
- .function-item {
- display: flex;
- align-items: left;
- /* justify-content: space-between; */
- padding: 25rpx 0;
- border-bottom: 1rpx solid #eee;
- text-align: left; /* 让子元素内文本靠左对齐 */
- }
- .function-icon {
- width: 40rpx;
- height: 40rpx;
- margin-right: 20rpx;
- }
- .function-text {
- text-align: left;
- font-size: 32rpx;
- }
|