| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- .agreement-container {
- /* display: flex;
- flex-direction: column; */
- height: 100vh;
- background-color: #fff;
- }
- .agreement-header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 90rpx;
- background-color: #fff;
- padding: 0 30rpx;
- position: relative;
- border-bottom: 1rpx solid #eee;
- }
- .back-btn {
- width: 60rpx;
- height: 60rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .icon-back {
- font-size: 40rpx;
- color: #333;
- }
- .title {
- font-size: 34rpx;
- font-weight: 500;
- color: #333;
- }
- .placeholder {
- width: 60rpx;
- }
- .agreement-content {
- width: 100%;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- background-color: #fff;
- }
- .agreement-title {
- font-size: 36rpx;
- font-weight: bold;
- text-align: center;
- margin-bottom: 40rpx;
- color: #333;
- }
- .section {
- margin-bottom: 30rpx;
- }
- .section-title {
- font-size: 32rpx;
- font-weight: 500;
- color: #333;
- margin-bottom: 20rpx;
- }
- .section-content {
- font-size: 28rpx;
- color: #666;
- line-height: 1.6;
- }
- .paragraph {
- display: block;
- margin-bottom: 20rpx;
- text-align: justify;
- }
- .loading, .error {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- padding: 40rpx;
- color: #666;
- font-size: 28rpx;
- }
- .error {
- color: #ff4d4f;
- }
- .retry-btn {
- margin-top: 20rpx;
- padding: 10rpx 30rpx;
- background-color: #1890ff;
- color: #fff;
- border-radius: 8rpx;
- font-size: 28rpx;
- }
- /* Markdown 样式 */
- .markdown-content {
- font-size: 28rpx;
- line-height: 1.6;
- color: #333;
- }
- .markdown-content h1 {
- font-size: 36rpx;
- font-weight: bold;
- margin: 30rpx 0 20rpx 0;
- color: #333;
- }
- .markdown-content h2 {
- font-size: 32rpx;
- font-weight: bold;
- margin: 25rpx 0 15rpx 0;
- color: #333;
- }
- .markdown-content h3 {
- font-size: 30rpx;
- font-weight: bold;
- margin: 20rpx 0 10rpx 0;
- color: #333;
- }
- .markdown-content p {
- margin-bottom: 20rpx;
- text-align: justify;
- }
- .markdown-content strong {
- font-weight: bold;
- color: #333;
- }
- .markdown-content em {
- font-style: italic;
- }
- .markdown-content a {
- color: #1890ff;
- text-decoration: underline;
- }
- .markdown-content code {
- background-color: #f5f5f5;
- padding: 2rpx 8rpx;
- border-radius: 4rpx;
- font-family: 'Courier New', monospace;
- font-size: 24rpx;
- }
- .markdown-content pre {
- background-color: #f5f5f5;
- padding: 20rpx;
- border-radius: 8rpx;
- margin: 20rpx 0;
- overflow-x: auto;
- }
- .markdown-content pre code {
- background: none;
- padding: 0;
- font-size: 24rpx;
- line-height: 1.4;
- }
- .markdown-content ul {
- margin: 20rpx 0;
- padding-left: 40rpx;
- }
- .markdown-content li {
- margin-bottom: 10rpx;
- list-style-type: disc;
- }
|