 body {
            margin: 0;
            padding: 0;
            background-color: #000;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            overflow: hidden;
        }

        /* 手机桌面样式 - 核心更新：随机壁纸+图层优化 */
        .phone-desktop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 200;
            display: none;
            flex-direction: column;
            transition: opacity 0.3s ease;
            /* 背景图片样式：覆盖+居中+固定 */
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        /* 新增暗化图层，让图标文字更清晰 */
        .phone-desktop::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4); /* 可调整透明度 */
            z-index: -1;
        }
        .phone-desktop.show {
            display: flex;
        }
        /* 手机状态栏 */
        .desktop-status-bar {
            height: 44px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 16px;
            color: white;
            font-size: 14px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        /* 桌面应用图标容器 */
        .desktop-apps {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            padding: 20px;
        }
        /* 应用图标样式 */
        .app-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            transition: transform 0.2s ease;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .app-icon:hover {
            transform: scale(1.1);
        }
        .app-icon .icon-wrapper {
            width: 60px;
            height: 60px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        .douyin-icon {
            /*background: linear-gradient(135deg, #fe2c55 0%, #f77062 100%);*/
            background: url('https://cdn.doumvip.com/3d4249f60691e8e04fe95264954bc356.png');
            background-size: 100% 100%;
        }
        .keling-icon {
            /*background: linear-gradient(135deg, #4facfe 0%, #74FF52 100%);*/
            background: url('https://cdn.doumvip.com/4cd15eb1f1adb163ab7896c95c8ea3cc.png');
            background-size: 100% 100%;
        }
        .doulami-icon {
            /*background: linear-gradient(135deg, #4facfe 0%, #74FF52 100%);*/
            background: url('https://cdn.doumvip.com/a382a055862c90d4a1548919db105260.jpg');
            background-size: 100% 100%;
        }
        .app-icon i {
            font-size: 40px;
            color: white;
        }
        .app-icon span {
            color: white;
            font-size: 14px;
            font-weight: 500;
        }

        /* ========== 新增：千问主页样式 ========== */
        .keling-home {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 250;
            display: none;
            flex-direction: column;
            /* 修改：替换为新的背景图片地址 */
            background-image: url('https://cdn.doumvip.com/dde9955e1322e2aa86fcfe9e71f123f1.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }
        .keling-home.show {
            display: flex;
        }
        /* 千问主页顶部栏 */
        .keling-header {
            height: 44px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 16px;
            background-color: rgba(255, 255, 255, 0.8); /* 半透明背景保证可读性 */
            backdrop-filter: blur(8px); /* 毛玻璃效果 */
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        .keling-header .title {
            font-size: 17px;
            font-weight: 600;
            color: #1d1d1f;
        }
        .keling-header .icon {
            font-size: 20px;
            color: #007aff;
        }
        /* 千问主页内容区 - 修复隐藏问题 */
        .keling-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            /* 添加文字阴影确保在背景图上清晰可见 */
            text-shadow: 0 2px 8px rgba(0,0,0,0.2);
            visibility: hidden;
        }
        .keling-logo {
            width: 120px;
            height: 120px;
            border-radius: 30px;
            background: linear-gradient(135deg, #4facfe 0%, #74FF52 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 8px 24px rgba(79, 172, 254, 0.3);
        }
        .keling-logo i {
            font-size: 60px;
            color: white;
        }
        .keling-slogan {
            font-size: 20px;
            font-weight: 500;
            color: white; /* 改为白色确保在背景图上可见 */
            margin-bottom: 40px;
            text-align: center;
        }
        .keling-btn {
            width: 80%;
            padding: 14px 0;
            border-radius: 12px;
            background-color: rgba(116, 255, 82, 0.9); /* 适配新绿色系 */
            color: white;
            font-size: 17px;
            font-weight: 500;
            text-align: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(116, 255, 82, 0.2);
            transition: all 0.2s ease;
        }
        .keling-btn:hover {
            background-color: #74FF52;
            transform: translateY(-2px);
        }

        /* ========== 新增：即梦风格视频生成界面 (深色系) ========== */
        .video-create {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 350;
            display: none;
            flex-direction: column;
            background: linear-gradient(180deg, #121212 0%, #1a1a1a 100%);
            color: white;
            overflow-y: auto;
            padding-bottom: 80px; /* 为底部固定按钮预留空间 */
        }
        .video-create.show {
            display: flex;
        }
        /* 生成界面顶部栏 */
        .create-header {
            height: 44px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 16px;
            background-color: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: sticky;
            top: 0;
            z-index: 10;
        }
        .create-header .back-btn {
            color: #74FF52;
            font-size: 20px;
            cursor: pointer;
        }
        .create-header .title {
            font-size: 17px;
            font-weight: 600;
            color: white;
        }
        .create-header .help-btn {
            color: #999;
            font-size: 18px;
            cursor: pointer;
        }
        /* 生成界面内容区 */
        .create-content {
            flex: 1;
            padding: 20px 16px;
        }
        /* 模块标题 */
        .module-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .module-title i {
            color: #74FF52;
        }
        /* 上传区域通用样式 - 【核心修复】虚线边框问题 */
        .upload-wrapper {
            margin-bottom: 24px;
            width: 100%;
            box-sizing: border-box; /* 确保padding不会超出宽度 */
        }
        .upload-area {
            border: 1px dashed rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
            background-color: rgba(255, 255, 255, 0.05);
            width: 100%; /* 强制宽度100% */
            box-sizing: border-box; /* 边框计入宽度 */
            display: block; /* 确保是块级元素 */
            margin: 0 0 16px 0; /* 统一margin写法 */
        }
        .upload-area:hover {
            border-color: #74FF52;
            background-color: rgba(116, 255, 82, 0.05); /* 适配新绿色系 */
        }
        .upload-area .upload-icon {
            font-size: 40px;
            color: #999;
            margin-bottom: 12px;
        }
        .upload-area .upload-text {
            font-size: 15px;
            color: #ccc;
            margin-bottom: 8px;
        }
        .upload-area .upload-tip {
            font-size: 12px;
            color: #666;
        }
        /* 预览区域 - 【优化】与上传框对齐 */
        .preview-area {
            border-radius: 8px;
            overflow: hidden;
            display: none;
            width: 100%; /* 宽度100% */
            box-sizing: border-box;
        }
        .preview-area.show {
            display: block;
        }
        .preview-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
        }
        .preview-video {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            background-color: #000;
        }
        /* 创意描述区域 */
        .desc-area {
            margin-bottom: 24px;
        }
        .desc-input {
            width: 100%;
            min-height: 120px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 16px;
            color: white;
            font-size: 16px;
            resize: none;
            box-sizing: border-box;
            font-family: inherit;
        }
        .desc-input:focus {
            outline: none;
            border-color: #74FF52;
            box-shadow: 0 0 0 2px rgba(116, 255, 82, 0.2); /* 适配新绿色系 */
        }
        /* 生成按钮 - 固定在底部 */
        .generate-btn {
            position: fixed;
            bottom: 20px; /* 距离底部20px */
            left: 16px;   /* 左右边距和内容区一致 */
            right: 16px;
            width: calc(100% - 32px); /* 减去左右边距 */
            padding: 16px 0;
            border-radius: 12px;
            background: #74FF52;
            color: white;
            font-size: 17px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            box-shadow: 0 6px 16px rgba(116, 255, 82, 0.3); /* 适配新绿色系 */
            transition: all 0.2s ease;
            border: none;
            z-index: 100; /* 确保按钮在最上层 */
        }
        .generate-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(116, 255, 82, 0.4); /* 适配新绿色系 */
        }
        /* 生成中状态 */
        .generate-btn.loading {
            background: linear-gradient(135deg, #333 0%, #444 100%);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        .generate-btn.loading i {
            animation: spin 1s linear infinite;
            margin-right: 8px;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        /* 生成结果区域 */
        .result-area {
            margin-top: 24px;
            margin-bottom: 80px; /* 为底部按钮预留空间 */
            display: none;
        }
        .result-area.show {
            display: block;
        }
		.keling-content.show {
		    visibility: visible;
		}
        .result-title {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 12px;
            color: #74FF52;
        }
        .result-video {
            width: 100%;
            border-radius: 12px;
            background-color: #000;
        }
        /* 操作按钮组 */
        .action-btns {
            display: flex;
            gap: 12px;
            margin-top: 16px;
        }
        .action-btn {
            flex: 1;
            padding: 12px 0;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
        }
        .action-btn.primary {
            background: linear-gradient(135deg, #fe2c55 0%, #f77062 100%);
            color: white;
        }
        .action-btn.secondary {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
        }
        .action-btn:hover {
            transform: translateY(-2px);
        }

        /* 顶部TAB栏 - 透明无背景 融入视频 */
        .top-tab {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 44px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 16px;
            background-color: transparent;
            z-index: 90;
        }
        .top-tab .tab-center {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex: 1;
        }
        .top-tab .tab-item {
            color: rgba(255,255,255,0.7);
            font-size: 16px;
            font-weight: 400;
            padding: 0 4px;
            text-shadow: 0 0 2px rgba(0,0,0,0.8);
            transition: all 0.2s ease;
        }
        .top-tab .tab-item.active {
            color: white;
            font-weight: bold;
        }
        .top-tab .icon {
            color: white;
            font-size: 20px;
            text-shadow: 0 0 2px rgba(0,0,0,0.8);
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        /* 底部TAB栏 - 增大上下padding */
        .bottom-tab {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            background-color: #000;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 8px 0;
            box-sizing: border-box;
            z-index: 90;
        }
        .bottom-tab .tab-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 11px;
        }
        .bottom-tab .tab-item.active {
            color: white;
        }
        .bottom-tab .tab-item i {
            font-size: 20px;
            margin-bottom: 2px;
        }
        .bottom-tab .add-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #fe2c55 0%, #f77062 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        /* 视频容器适配 */
        .video-container {
            position: relative;
            width: 100vw;
            height: 100vh;
            padding-bottom: 60px;
            box-sizing: border-box;
        }
        .video-player {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .share-modal, .edit-modal {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #fff;
            border-radius: 16px 16px 0 0;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            z-index: 100;
            padding: 20px 0;
        }
        .share-modal.show, .edit-modal.show {
            transform: translateY(0);
        }

        .modal-mask {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 99;
            display: none;
        }
        .modal-mask.show {
            display: block;
        }

        .icon-btn {
            transition: all 0.2s ease;
        }
        .icon-btn.active {
            color: #ff274b;
            transform: scale(1.1);
        }

        /* Toast提示样式 */
        .toast {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            background-color: rgba(0,0,0,0.8);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 14px;
            z-index: 101;
            opacity: 0;
            transition: all 0.2s ease;
            pointer-events: none;
        }
        .toast.show {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        /* 编辑弹窗样式 */
        .edit-modal {
            padding: 24px 16px;
            max-height: 80vh;
            overflow-y: auto;
        }
        .edit-modal .form-item {
            margin-bottom: 20px;
        }
        .edit-modal label {
            display: block;
            font-size: 14px;
            color: #333;
            margin-bottom: 8px;
            font-weight: 500;
        }
        .edit-modal input, .edit-modal textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-size: 16px;
            box-sizing: border-box;
        }
        .edit-modal textarea {
            min-height: 80px;
            resize: none;
        }
        .edit-modal .video-upload {
            border: 1px dashed #d1d5db;
            border-radius: 8px;
            padding: 24px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .edit-modal .video-upload:hover {
            border-color: #9ca3af;
        }
        .edit-modal .video-upload i {
            font-size: 32px;
            color: #6b7280;
            margin-bottom: 8px;
        }
        .edit-modal .video-upload span {
            font-size: 14px;
            color: #6b7280;
        }
        .edit-modal .btn-group {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }
        .edit-modal .btn {
            flex: 1;
            padding: 12px 0;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            text-align: center;
            border: none;
            cursor: pointer;
        }
        .edit-modal .btn.cancel {
            background-color: #f3f4f6;
            color: #374151;
        }
        .edit-modal .btn.confirm {
            background-color: #ff274b;
            color: white;
        }

        /* 作者名可点击样式 */
        #authorName {
            cursor: pointer;
            text-decoration: underline;
            text-decoration-style: dotted;
        }

        /* ========== iOS粘贴权限提示框 - 高度还原样式 ========== */
        .ios-paste-prompt {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.95);
            width: 280px;
            background-color: #f1f1f1;
            border-radius: 16px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
            padding: 20px;
            z-index: 300;
            display: none;
            opacity: 0;
            transition: all 0.2s ease;
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
        }
        .ios-paste-prompt.show {
            display: block;
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
        /* 标题样式 */
        .prompt-title {
            font-size: 17px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 8px;
            text-align: center;
        }
        /* 描述样式 */
        .prompt-desc {
            font-size: 14px;
            color: #86868b;
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.4;
        }
        /* 按钮容器 - iOS风格的分割线+按钮布局 */
        .prompt-buttons {
            display: flex;
            border-top: 1px solid #e5e5e5;
        }
        /* 按钮样式 - 高度还原iOS系统按钮 */
        .prompt-btn {
            flex: 1;
            padding: 12px 0;
            text-align: center;
            font-size: 17px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.1s ease;
        }
        /* 分割线 */
        .prompt-btn:not(:last-child) {
            border-right: 1px solid #e5e5e5;
        }
        /* 允许按钮 - 黑色文字（修改后） */
        .prompt-btn.allow {
            color: #000000; /* 改为黑色 */
        }
        .prompt-btn.allow:hover {
            background-color: #f8f8f8;
        }
        /* 不允许按钮 - 蓝色文字 */
        .prompt-btn.deny {
            color: #007aff;
        }
        .prompt-btn.deny:hover {
            background-color: #f8f8f8;
        }
        /* 提示框遮罩（独立于原有mask，层级更高） */
        .prompt-mask {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            z-index: 299;
            display: none;
            backdrop-filter: blur(2px); /* iOS模糊效果 */
        }
        .prompt-mask.show {
            display: block;
        }
		/* 提示框遮罩（独立于原有mask，层级更高） */
		.prize-mask {
		    position: fixed;
		    top: 0;
		    left: 0;
		    width: 100%;
		    height: 100%;
		    background-color: rgba(0, 0, 0, 0.6);
		    z-index: 299;
		    display: none;
		    backdrop-filter: blur(2px); /* iOS模糊效果 */
		}
		.prize-mask.show {
		    display: block;
		}
		.ios-prize-prompt {
		    position: fixed;
		    top: 50%;
		    left: 50%;
		    transform: translate(-50%, -50%) scale(0.95);
		    width: 280px;
		    background-color: #fff;
		    border-radius: 16px;
		    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
		    padding: 20px;
		    z-index: 300;
		    display: none;
		    opacity: 0;
		    transition: all 0.2s ease;
		    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
		}
		.ios-prize-prompt.show {
		    display: block;
		    opacity: 1;
		    /* transform: translate(-50%, -50%) scale(1); */
		}
		.t {
			-webkit-animation: big 1s ease 0s;
			animation: big 1s ease 0s;
			/* z-index: 200; */
		}
		
		@-webkit-keyframes big {
			0% {
				-moz-transform:translate(-50%, -50%) scale(0.2, 0.2);
				-webkit-transform:translate(-50%, -50%) scale(0.2, 0.2);
				-o-transform:translate(-50%, -50%) scale(0.2, 0.2);
				transform-origin: center;
			}
			50% {
				-moz-transform:translate(-50%, -50%) scale(1.1, 1.1);
				-webkit-transform:translate(-50%, -50%) scale(1.1, 1.1);
				-o-transform:translate(-50%, -50%) scale(1.1, 1.1);
				transform-origin: center;
			}
			100% {
				-moz-transform:translate(-50%, -50%) scale(1, 1);
				-webkit-transform:translate(-50%, -50%) scale(1, 1);
				-o-transform:translate(-50%, -50%) scale(1, 1);
				transform-origin: center;
			}
		}
		.prizepic{
			width: 100%;
			height: auto;
			max-height: 80vw;
			object-fit: contain;
			border-radius: 4vw;
		}
		.prize-buttons {
		    display: flex;
		    /* border-top: 1px solid #e5e5e5; */
			margin-top: 4vw;
		}
		/* 按钮样式 - 高度还原iOS系统按钮 */
		.prize-btn {
		    flex: 1;
		    padding: 12px 0;
		    text-align: center;
		    font-size: 17px;
		    font-weight: 500;
		    cursor: pointer;
		    transition: background-color 0.1s ease;
			border-radius: 2vw;
		}
		/* 分割线 */
		.prize-btn:not(:last-child) {
		    border-right: 1px solid #e5e5e5;
		}
		/* 允许按钮 - 黑色文字（修改后） */
		.prize-btn.gosee {
			background: #0011FE;
		    color: #fff; /* 改为黑色 */
		}
		.prize-btn.gosee:hover {
		    /* background-color: #f8f8f8; */
		}
		/* 不允许按钮 - 蓝色文字 */
		.prize-btn.quxiao {
		    color: #000;
			background:#F1F1F1 ;
			margin-right: 4vw;
		}
		.prize-btn.quxiao:hover {
		    /* background-color: #f8f8f8; */
		}


.wrapper {
	    width: 94vw;
	    margin: 0 auto;
	    background: white;
	    padding: 2vw;
	    border-radius: 2vw;
	    
	}
	.xzlabel{
	    width: 90vw;
	    margin: 4vw auto;
	    padding:1vw 2vw;
	    background: white;
	    border-radius: 4px;
	    /*border: 2px solid whitesmoke;*/
	    box-shadow: 0 2px 4px 1px rgba(158, 196, 251, .2);
	    /*display: flex;*/
	    /*justify-content: space-between;	*/
	    /*box-shadow: 6px 8px 16px 0px rgba(201, 211, 220, 0.3), -6px -8px 16px 0px #FFFFFF;*/
	}
	.leftspan{
	    line-height: 40px;
	    vertical-align: middle;
	    background: linear-gradient(90deg, #81a0ff, #4a77f5);
	    padding: 2vw;
	    color:white;
	    border-radius: 4px;
	    font-size: 12px;
	    /*width: 30vw;*/
	    /*margin-right: 2vw;*/
	}
    .gopay {
		margin:6vw auto;
		width: 90vw;	 		
		line-height: 12vw;
		font-size: 20px;
		font-weight: bold;
		background: linear-gradient(180deg, #81a0ff, #4a77f5);
		background-size: 100% 100%;
		text-align: center;
		color:#fff;
		/*animation: btn_animation 0.5s infinite alternate;*/
		z-index: 9;
		display: block;
		border-radius: 2vw;
	}
	.gopay2 {
		margin:6vw auto;
		width: 90vw;	 		
		line-height: 12vw;
		font-size: 20px;
		font-weight: bold;
		background: linear-gradient(180deg, #ff4049, #ff5555);
		background-size: 100% 100%;
		text-align: center;
		color:#fff;
		/*animation: btn_animation 0.5s infinite alternate;*/
		z-index: 9;
		display: block;
		border-radius: 2vw;
	}
    .upload {
        
        position: relative;
		margin:4vw auto;
		width: 90vw;	 		
		line-height: 12vw;
		font-size: 20px;
		font-weight: bold;
		background: limegreen;
		background-size: 100% 100%;
		text-align: center;
		color:#fff;
		/*animation: btn_animation 0.5s infinite alternate;*/
		z-index: 9;
		display: block;
		border-radius: 2vw;
	}
	@keyframes btn_animation {
		from {
			transform: scale(1);
		}

		to {
			transform: scale(1.1);
		}
	}	.nickname , .birthday ,.gerencardid{
	    line-height: 40px;
	    font-size: 16px;
	    vertical-align: middle;
	    border: none;
	    width: 50vw;
	    margin-left: 2vw;
	       
	}.uploadicon{
	    position: absolute;
	    left: 0;
	    top: 0;
	    width: 100%;
	    height: 100%;
	    z-index: 1;
	    opacity: 0;
	}