145 lines
2.2 KiB
Plaintext
145 lines
2.2 KiB
Plaintext
/* pages/profile/about/about.wxss */
|
|
page {
|
|
background: #f8f8f8;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.page-container {
|
|
min-height: 100vh;
|
|
width: 100%;
|
|
padding-bottom: 60rpx;
|
|
box-sizing: border-box;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.logo-section {
|
|
width: 100%;
|
|
background: #07c160;
|
|
padding: 80rpx 30rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.app-logo {
|
|
width: 160rpx;
|
|
height: 160rpx;
|
|
border-radius: 24rpx;
|
|
box-shadow: 0 8rpx 32rpx rgba(0, 0, 0, 0.15);
|
|
margin-bottom: 30rpx;
|
|
}
|
|
|
|
.app-name {
|
|
font-size: 40rpx;
|
|
font-weight: bold;
|
|
color: white;
|
|
margin-bottom: 16rpx;
|
|
}
|
|
|
|
.app-version {
|
|
font-size: 24rpx;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
}
|
|
|
|
.info-section {
|
|
width: 100%;
|
|
padding: 20rpx 30rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.info-card {
|
|
width: 100%;
|
|
background: white;
|
|
border-radius: 16rpx;
|
|
padding: 30rpx;
|
|
margin-bottom: 20rpx;
|
|
box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.06);
|
|
box-sizing: border-box;
|
|
word-wrap: break-word;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.card-title {
|
|
font-size: 32rpx;
|
|
font-weight: 600;
|
|
color: #333;
|
|
margin-bottom: 20rpx;
|
|
padding-bottom: 16rpx;
|
|
border-bottom: 2rpx solid #f0f0f0;
|
|
}
|
|
|
|
.card-content {
|
|
font-size: 28rpx;
|
|
color: #666;
|
|
line-height: 1.8;
|
|
word-wrap: break-word;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.contact-item {
|
|
display: flex;
|
|
margin-bottom: 16rpx;
|
|
word-wrap: break-word;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.contact-item:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.contact-label {
|
|
font-size: 28rpx;
|
|
color: #999;
|
|
min-width: 140rpx;
|
|
}
|
|
|
|
.contact-value {
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
word-wrap: break-word;
|
|
word-break: break-all;
|
|
flex: 1;
|
|
}
|
|
|
|
.log-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.log-version {
|
|
font-size: 30rpx;
|
|
font-weight: 600;
|
|
color: #07c160;
|
|
margin-bottom: 8rpx;
|
|
}
|
|
|
|
.log-date {
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
margin-bottom: 16rpx;
|
|
}
|
|
|
|
.log-content {
|
|
font-size: 28rpx;
|
|
color: #666;
|
|
line-height: 1.8;
|
|
white-space: pre-line;
|
|
}
|
|
|
|
.footer-section {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 40rpx 30rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.copyright {
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
line-height: 1.6;
|
|
}
|