12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /* pages/guide/guide.wxss */
- .container {
- padding: 20rpx;
- background-color: #f7f7f7;
- }
- .header {
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-bottom: 40rpx;
- }
- .header-image {
- width: 100%;
- border-radius: 16rpx;
- margin-bottom: 20rpx;
- }
- .title {
- font-size: 36rpx;
- font-weight: bold;
- color: #333;
- }
- .section {
- background-color: #fff;
- border-radius: 16rpx;
- padding: 30rpx;
- margin-bottom: 30rpx;
- box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.05);
- }
- .section-title {
- display: flex;
- align-items: center;
- margin-bottom: 20rpx;
- font-size: 32rpx;
- font-weight: bold;
- color: #1a73e8;
- }
- .icon {
- width: 40rpx;
- height: 40rpx;
- margin-right: 15rpx;
- }
- .content {
- display: flex;
- flex-direction: column;
- font-size: 28rpx;
- color: #555;
- line-height: 1.6;
- }
- .content text {
- margin-bottom: 15rpx;
- }
- .footer {
- text-align: center;
- font-size: 26rpx;
- color: #888;
- margin-top: 40rpx;
- padding: 20rpx;
- }
|