123456789101112131415161718192021222324252627282930 |
- .touxiang {
- width: 220px; /* 设置头像图片宽度 */
- height: 150px; /* 设置头像图片高度 */
- object-fit: cover; /* 保持图片比例不变,裁剪超出容器的部分 */
- }
- .icon {
- font-size: 2rem; /* 设置大图标的大小 */
- }
-
- .card-content {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
-
-
- .icon-group {
- display: flex;
- margin-left: 10px; /* 设置图标与头像之间的间距 */
- }
-
- .icon {
- margin-left: 20px; /* 设置图标之间的间距 */
- }
-
- .location-container{
- margin-top: 10px;
- }
|