.equipment-mask { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(37, 37, 53, 0.6); z-index: 100; } .equipment-panel { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 560rpx; box-sizing: border-box; background-color: #FFFFFF; border-radius: 24rpx; z-index: 101; display: flex; flex-direction: column; align-items: center; padding: 64rpx 40rpx 56rpx; .equipment-spinner { width: 96rpx; height: 96rpx; border: 8rpx solid rgba(19, 133, 250, 0.2); border-top-color: #1385FA; border-radius: 50%; animation: equipment-spin 1s linear infinite; } .equipment-title { color: #252535; height: 32rpx; font-size: 32rpx; line-height: 32rpx; text-align: center; margin-top: 40rpx; } .equipment-content { color: #808080; font-size: 24rpx; line-height: 34rpx; text-align: center; margin-top: 24rpx; white-space: pre-line; } } @keyframes equipment-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }