.more-content { text-align: center; } a { text-decoration: none; } #loading-mask { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(255, 255, 255, 0.8); backdrop-filter: blur(7px); display: flex; justify-content: center; /* 水平居中 */ align-items: center; /* 垂直居中 */ flex-direction: column; /* 确保垂直方向排列,加载动画在上,文字在下 */ z-index: 1000; text-align: center; /* 文字居中 */ } .loading-text { margin-top: 10px; /* 加载动画和文字之间的间距 */ font-size: 1.2em; color: #333; font-weight: bold; } .loading-spinner { border: 16px solid #f3f3f3; /* Light grey */ border-top: 16px solid #3498db; /* Blue */ border-radius: 50%; width: 120px; height: 120px; animation: spin 2s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }