This commit is contained in:
qsh
2026-01-30 14:08:23 +08:00
parent 36482fb428
commit ff3b306de0
38 changed files with 5491 additions and 190 deletions

View File

@@ -407,4 +407,93 @@
font-size: 24rpx;
color: #909399;
}
/* 平板和大屏响应式 */
@media screen and (min-width: 768px) {
.personal-account-container {
max-width: 900px;
margin: 0 auto;
width: 100%;
}
.info-section,
.security-section,
.account-info-section {
margin: 0 32rpx 24rpx;
padding: 40rpx;
}
.section-title {
font-size: 36rpx;
margin-bottom: 32rpx;
}
.info-row {
flex-direction: row;
gap: 32rpx;
}
.info-item {
flex: 1;
}
.info-label {
font-size: 26rpx;
}
.info-input,
.info-text,
.info-value,
.picker-text {
font-size: 26rpx;
}
.info-control {
padding: 20rpx;
}
.security-item {
padding: 32rpx;
}
.security-label {
font-size: 26rpx;
}
.security-status {
font-size: 22rpx;
}
}
/* 大屏设备响应式 */
@media screen and (min-width: 1024px) {
.personal-account-container {
max-width: 1000px;
}
.info-section,
.security-section,
.account-info-section {
padding: 48rpx;
}
.section-title {
font-size: 40rpx;
}
.info-label {
font-size: 28rpx;
}
.info-input,
.info-text,
.info-value,
.picker-text {
font-size: 28rpx;
}
.security-label {
font-size: 28rpx;
}
}
</style>