| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- .about-container {
- min-height: 100vh;
- background-color: #f5f5f5;
- padding: 40rpx 30rpx;
- box-sizing: border-box;
- }
- .header {
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 60rpx 0;
- background-color: #ffffff;
- border-radius: 16rpx;
- margin-bottom: 20rpx;
- }
- .header .logo {
- width: 160rpx;
- height: 160rpx;
- margin-bottom: 20rpx;
- }
- .header .app-name {
- font-size: 36rpx;
- font-weight: bold;
- color: #333;
- margin-bottom: 10rpx;
- }
- .header .version {
- font-size: 24rpx;
- color: #999;
- }
- .section {
- background-color: #ffffff;
- border-radius: 16rpx;
- padding: 30rpx;
- margin-bottom: 20rpx;
- }
- .section .section-title {
- font-size: 32rpx;
- font-weight: bold;
- color: #333;
- margin-bottom: 20rpx;
- }
- .section .content {
- font-size: 28rpx;
- color: #666;
- line-height: 1.6;
- }
- .section .contact-list .contact-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 20rpx 0;
- border-bottom: 1rpx solid #f0f0f0;
- }
- .section .contact-list .contact-item:last-child {
- border-bottom: none;
- }
- .section .contact-list .contact-item .label {
- font-size: 28rpx;
- color: #333;
- }
- .section .contact-list .contact-item .value {
- font-size: 28rpx;
- color: #666;
- }
- .footer {
- text-align: center;
- padding: 40rpx 0;
- }
- .footer text {
- display: block;
- font-size: 24rpx;
- color: #999;
- line-height: 1.5;
- }
|