* {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
        }
        html, body {
            height: 100%;
            font-family: "微软雅黑", "Arial", "sans-serif";
        }
        #dplayer {
            width: 100%;
            height: 100%;
            position: relative;
            z-index: 20;
        }
        .bottom-view {
            width: 80%;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            display: none;
            z-index: 10;
            margin: 0 auto;
        }
        .a-btn {
            width: 100%;
            text-decoration: none;
            text-align: center;
            padding: 10px 20px;
            display: inline-block;
            border: none;
            border-radius: 15px;
            background: linear-gradient(220.55deg, #00E0EE 0%, #AD00FE 100%);
            color: #ffffff;
            font-size: 15px;
            font-weight: 1000;
        }
        .error-icon {
            width: 50px;
            height: 50px;
            line-height: 50px;
            font-weight: bold;
            border-radius: 100%;
            background: #f00;
            color: #fff;
            font-size: 30px;
            margin: 0 auto 20px;
            display: block;
        }
        .error-message {
            color: #999;
            text-align: center;
            width: 70%;
            margin: 0 auto;
            padding: 100px 0 0;
        }
        
        .modal-header {
            padding: 10px 0;
            font-size: 30px;
            color: #fff;
            font-weight: bold;
        }
        
        .modal-tips {
            width: 100%;
            padding: 15px 0;
            color: #ccc;
        }
        
        .modal-content {
            background: #1e1e1e;
            padding: 20px 30px;
            border-radius: 10px;
            text-align: center;
            width: 80%;
            max-width: 320px;
        
            /* 动画部分 */
            animation: slideUp 0.5s ease-out;
        }
        
        
        @keyframes slideUp {
            from {
                transform: translateY(100px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .modal-content input {
            width: 100%;
            padding: 15px;
            margin-top: 10px;
            border: none;
            border-radius: 15px;
            background: #2a2a2a;
            font-size: 16px;
            text-align: center;
            outline: none;
            color: #fff;
        }
        
        .modal-content button {
            margin-top: 15px;
            padding: 12px;
            width: 100%;
            background: #01c3ff;
            color: #333;
            border: none;
            border-radius: 10px;
            font-size: 16px;
        }
        
        .modal-error {
            color: red;
            margin-top: 8px;
            font-size: 14px;
            display: none;
        }
        .modal-success {
            color: #16d46b;
            margin-top: 8px;
            font-size: 14px;
            display: none;
        }