@font-face {
	font-family: 'TrumpGothicPro';
	src: url('../fonts/TrumpGothicPro.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

/* 全局样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	color: #333;
	background-color: #000;
	min-height: 100vh;
}

/* 容器限制：PC端最宽750px，居中显示 */
.container {
	max-width: 750px;
	margin: 0 auto;
	background-color: #fff;
	min-height: 100vh;
	position: relative;
}

@media (max-width: 750px) {
	.container {
		width: 100%;
	}
}

/* 深蓝色背景 */
.bg-dark {
	background-color: #041B67;
}

/* 登录页样式 */
.login-page {
	background: linear-gradient(180deg, #041B67 0%, #041B67 40%, #f5f5f5 40%, #f5f5f5 100%);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 60px;
	max-width: 750px;
	margin: 0 auto;
}

.login-top {
	width: 100%;
	max-width: 750px;
	padding: 60px 30px 40px;
	text-align: center;
}

.login-top .logo-area {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
}

.login-top .logo-area img {
	height: 100px;
	margin-bottom: 20px;
}

.login-top .logo-area .aliyun {
	display: flex;
	align-items: center;
	gap: 8px;
}

.login-top .logo-area .aliyun img {
	height: 30px;
}

.login-top h1 {
	font-size: 18px;
	color: #fff;
	font-weight: normal;
}

.login-card {
	width: 90%;
	max-width: 750px;
	background-color: #fff;
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.login-card ul {
	list-style: none;
}

.login-card li {
	margin-bottom: 20px;
}

.login-card input {
	width: 100%;
	padding: 15px 10px;
	border: none;
	border-bottom: 1px solid #ddd;
	font-size: 15px;
	outline: none;
	background: transparent;
}

.login-card input:focus {
	border-bottom-color: #ff6600;
}

.login-card input::placeholder {
	color: #999;
}

.login-card .input-group {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #ddd;
	padding: 15px 10px;
}

.login-card .input-group img {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

.login-card .input-group input {
	border: none;
	padding: 0;
	flex: 1;
}

.login-card .remember {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
}

.login-card .remember input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-right: 8px;
}

.login-card button {
	width: 100%;
	padding: 16px;
	background-color: #ff6600;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	margin-top: 10px;
}

.login-card button:active {
	background-color: #e55a00;
}

.login-bottom {
	position: fixed;
	bottom: 30px;
	width: 100%;
	text-align: center;
	color: #999;
	font-size: 12px;
	line-height: 1.8;
}

/* 导航栏样式 */
.navbar {
	background-color: #041B67;
	padding: 0px 15px 15px 0px;
	display: flex;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 100;
}

.navbar a {
	display: flex;
	align-items: center;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
}

.navbar img {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}

/* 视频列表页样式 */
.video-list-page {
	max-width: 750px;
	margin: 0 auto;
	min-height: 100vh;
	background-color: #EFEFEF;
	padding-bottom: 70px;
}

.video-list-top {
	background-color: #041B67;
	padding: 25px 15px 10px 15px;
}

.video-list-info {
	margin-bottom: 10px;
}

.video-list-info table {
	width: 100%;
	border-collapse: collapse;
}
.video-list-info .avatar{
	text-align: right;
}

.video-list-info .avatar img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #fff;
	padding: 0;
	vertical-align: middle;
	margin-right:10px;
}

.video-list-info .user-info h1 {
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	margin: 0;
	padding: 0;
}

.video-list-info .user-info p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
	padding: 0;
}

.video-list-info .remain-count {
	text-align: right;
	vertical-align: middle;
}

.video-list-info .remain-count h2 {
	font-family: 'TrumpGothicPro', sans-serif;
	font-size: 56px;
	color: #fff;
	line-height:48px;
	margin-top:10px;
	padding: 0;
}

.video-list-info .count-label {
	text-align: left;
	padding: 0 10px;
	vertical-align: middle;
}

.video-list-info .count-label span {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.8);
	display: block;
}

.video-list-info .arrow-link {
	padding: 0;
	vertical-align: middle;
	text-align: center;
}

.video-list-info .arrow-link img {
	margin-top:10px;
	height: 26px;
}

.video-list-info .separator {
	width: 1px;
	background-color: rgba(255, 255, 255, 0.3);
	margin: 0 15px;
}

.video-list-top .select-model {
	width: 70%;
	margin: 0 15%;
	padding: 12px 15px;
	border-radius: 8px;
	cursor: pointer;
	border: #27ae60 0px solid;
}

.video-list-top .select-model .model-label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.video-list-top .select-model .model-name {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.video-list-top .select-model img {
	width: 16px;
	height: 16px;
}

.video-list-top .model-dropdown {
	display: none;
	background-color: rgba(0, 0, 0, 0.9);
	border-radius: 8px;
	margin-top: 10px;
	overflow: hidden;
}

.video-list-top .model-dropdown.show {
	display: block;
}

.video-list-top .model-dropdown ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.video-list-top .model-dropdown li {
	padding: 12px 15px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	cursor: pointer;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-list-top .model-dropdown li:last-child {
	border-bottom: none;
}

.video-list-top .model-dropdown li:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.video-list-top .model-dropdown li.active {
	color: #fff;
	background-color: rgba(255, 102, 0, 0.2);
}

.video-list {
	padding: 15px;
}

.video-list ul {
	list-style: none;
}

.video-list li {
	background-color: #fff;
	border-radius: 12px;
	margin-bottom: 15px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.video-list .video-item-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 15px;
	border-bottom: 1px solid #f0f0f0;
}

.video-list .video-item-top h3 {
	font-size: 12px;
	color: #666;
	font-weight: normal;
}

.video-list .video-item-top p {
	font-size: 14px;
	font-weight: bold;
}

.video-list .video-item-top .status-generating {
	color: #ff6600;
	display: flex;
	align-items: center;
}

.video-list .video-item-top .status-generating::after {
	content: '';
	width: 8px;
	height: 8px;
	background-color: #ff6600;
	border-radius: 50%;
	margin-left: 8px;
	animation: pulse 1.5s infinite;
}

.video-list .video-item-top .status-done {
	color: #27ae60;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}
}

.video-list .video-item-content {
	position: relative;
	width: 100%;
	padding-top: 133%;
	background-color: #000;
}

.video-list .video-item-content img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-list .mask-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.7);
}

.video-list .wait {
	text-align: center;
	color: #fff;
}

.video-list .wait p {
	margin-bottom: 20px;
}

.video-list .wait .countdown-circle {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background-color: #ff6600;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.video-list .wait .countdown-circle h2 {
	font-size: 36px;
	font-weight: bold;
	line-height: 1;
}

.video-list .wait .countdown-circle span {
	font-size: 14px;
	margin-top: 10px;
}

.video-list .mask-layer .play-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-list .mask-layer .play-btn img {
	width: 60px;
	height: 60px;
	position: relative;
	left: 2px;
}

.video-list .video-item-bottom {
	display: flex;
	justify-content: space-between;
	padding: 12px 15px;
	color: #999;
	font-size: 12px;
}

.video-list .video-item-bottom time {
	flex: 1;
}

.video-list .video-item-bottom span {
	margin-left: 10px;
}

/* 费用明细页样式 */
.costtop {
	background-color: #fff;
	border-radius: 10px;
	padding: 15px;
	margin-top: 20px;
}

.costtop h1 {
	font-size: 12px;
	color: #333;
	margin-bottom: 20px;
}

.costtop ul {
	list-style: none;
	display: flex;
	justify-content: space-around;
}

.costtop li {
	text-align: center;
}

.costtop li p {
	font-size: 12px;
	color: #999;
	margin-bottom: 8px;
}

.costtop li span {
	font-size: 20px;
	color: #333;
	font-weight: bold;
}

.coslist {
	padding: 15px;
}

.coslist_title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #ccc;
	padding-bottom: 10px;
}

.coslist_title_left {
	font-size: 16px;
	color: #333;
	font-weight: bold;
}

.coslist_title_right {
	display: flex;
	align-items: center;
	background-color: #F8F8F8;
	padding: 8px;
	border: 1px solid #DEDEDE;
	cursor: pointer;
}

.coslist_title_right input {
	border: none;
	outline: none;
	font-size: 12px;
	color: #999;
	background: transparent;
	text-align: left;
	margin-left: 10px;
}

.coslist_title_right img {
	width: 14px;
	height: 14px;
}

.coslist ul {
	list-style: none;
	background-color: #fff;
	border-radius: 10px;
	padding: 15px;
	margin-bottom: 15px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.coslist li {
	display: flex;
	justify-content:space-between; 
	align-items:center;
	border-bottom:#DDDDDD 1px dotted;
	padding:10px 0;
}
.coslist li img{
	border:#ccc 1px solid;
	width: 80px;
}
.coslist li table {
	width: 100%;
	border-collapse: collapse;
}

.coslist li table td {
	font-size: 12px;
	padding: 5px 0;
	vertical-align: middle;
}

.coslist li table td:first-child {
	width: 50px;
	padding-right: 10px;
	text-align: right;
}
.coslist li table td:nth-child(2) {
	width: 60px;
}
.coslist li table td .red {
	color: #e74c3c;
}

.coslist li table td .blue {
	color: #3498db;
}

.coslist li table td .green {
	color: #27ae60;
}

/* 日期选择器样式 */
.date-picker-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

.date-picker-overlay.show {
	display: block;
}

.date-picker {
	display: none;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	border-radius: 16px 16px 0 0;
	padding: 20px;
	max-width: 750px;
	margin: 0 auto;
	z-index: 1001;
}

.date-picker.show {
	display: block;
	animation: slideUp 0.3s ease;
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
	}
	to {
		transform: translateY(0);
	}
}

.date-picker-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.date-picker-header .date-btn {
	width: 36px;
	height: 36px;
	border: none;
	background-color: #f5f5f5;
	border-radius: 50%;
	font-size: 20px;
	color: #333;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.date-picker-header .date-btn:active {
	background-color: #eee;
}

.date-picker-header .date-title {
	font-size: 16px;
	color: #333;
	font-weight: bold;
}

.date-picker-weekdays {
	display: flex;
	margin-bottom: 10px;
}

.date-picker-weekdays span {
	flex: 1;
	text-align: center;
	font-size: 12px;
	color: #999;
	font-weight: 500;
}

.date-picker-days {
	display: flex;
	flex-wrap: wrap;
}

.date-picker-days span {
	width:40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 14px;
	color: #333;
	cursor: pointer;
	border-radius: 50%;
}

.date-picker-days span:hover {
	background-color: #f5f5f5;
}

.date-picker-days span.other-month {
	color: #ccc;
}

.date-picker-days span.today {
	background-color: #041B67;
	color: #fff;
}

.date-picker-days span.selected {
	background-color: #ff6600;
	color: #fff;
}

.date-picker-days span.disabled {
	color: #ccc;
	cursor: not-allowed;
}

.date-picker-days span.disabled:hover {
	background-color: transparent;
}

.date-picker-footer {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #f0f0f0;
}

.date-picker-footer button {
	padding: 8px 16px;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	cursor: pointer;
}

.date-picker-footer button:first-child {
	background-color: #041B67;
	color: #fff;
}

.date-picker-footer button:last-child {
	background-color: #f5f5f5;
	color: #666;
}

/* 修改密码页面样式 */
.edit_password {
	background-color: #fff;
	border-radius: 16px;
	padding: 20px;
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	min-height: 420px;
	transition: opacity 0.3s ease;
}

.edit_password h1 {
	font-size: 18px;
	color: #333;
	font-weight: bold;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #f0f0f0;
}

.edit_password ul {
	list-style: none;
}

.edit_password li {
	margin-bottom: 15px;
}

.edit_password li .input-wrap {
	position: relative;
}

.edit_password li .icon-lock {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	background-image: url('../img/password.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1;
}

.edit_password li input {
	width: 100%;
	padding: 15px 15px 15px 45px;
	border: 1px solid #eee;
	border-radius: 8px;
	font-size: 14px;
	outline: none;
	box-sizing: border-box;
}

.edit_password li input:focus {
	border-color: #ff6600;
}

.edit_password li .error {
	font-size: 12px;
	color: #e74c3c;
	margin-top: 8px;
	display: none;
}

.edit_password button {
	width: 100%;
	padding: 15px;
	background-color: #ff6600;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	margin-top: 20px;
}

.edit_password button:active {
	background-color: #e55a00;
}

.edit_password_notes {
	font-size: 12px;
	color: #999;
	margin-top: 20px;
	line-height: 1.8;
}

/* 成功页面样式 */
#successPage {
	display: none;
	justify-content: center;
	align-items: flex-start;
	min-height: 70vh;
	padding-top: 20px;
}

.success-box {
	background-color: #fff;
	border-radius: 16px;
	padding: 20px;
	text-align: center;
	min-height: 420px;
	width:100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
}

.success-icon {
	width: 100px;
	height: 100px;
	background-color: #ff6600;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.success-icon span {
	font-size: 48px;
	color: #fff;
	font-weight: bold;
}

.success-box h3 {
	font-size: 20px;
	color: #333;
	font-weight: bold;
	margin-bottom: 10px;
}

.success-box p {
	font-size: 14px;
	color: #999;
}

.success-box p span {
	color: #ff6600;
	font-weight: bold;
}

/* 底部导航栏 */
.tabbar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	max-width: 750px;
	margin: 0 auto;
	background-color: #fff;
	border-top: 1px solid #eee;
	padding: 10px 0;
	z-index: 100;
}

.tabbar ul {
	display: flex;
	justify-content: space-around;
	list-style: none;
}

.tabbar li {
	flex: 1;
	text-align: center;
}

.tabbar li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: #999;
	font-size: 12px;
}

.tabbar li.active a {
	color: #ff6600;
}

.tabbar li img {
	width: 24px;
	height: 24px;
	margin-bottom: 5px;
}

/* 新建视频任务页 */
.video-creat-page {
	background-color: #041B67;
	min-height: 100vh;
	padding: 20px;
	padding-bottom: 100px;
	max-width: 750px;
	margin: 0 auto;
}

.video-creat-page h5 {
	color: #fff;
	font-size: 16px;
	margin: 20px 0 15px;
}

.video-creat-page .uppic {
	width: 100%;
	padding-top: 133.33%;
	background-color: #fff;
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.video-creat-page .uppic input[type="file"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.video-creat-page .uppic .add-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
}

.video-creat-page .uppic .preview {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-creat-page .prompt {
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 15px;
}

.video-creat-page .prompt textarea {
	width: 100%;
	height: 220px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 14px;
	resize: none;
	outline: none;
}

.video-creat-page .prompt textarea::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.video-creat-page button {
	width: 100%;
	padding: 18px;
	background-color: #ff6600;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	margin-top: 30px;
}

.video-creat-page button:active {
	background-color: #e55a00;
}

.video-creat-page .notes {
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
	margin-top: 30px;
	line-height: 2;
}

.video-creat-page .notes strong {
	color: rgba(255, 255, 255, 0.8);
}

/* 视频生成中页面 */
.video-creating-page {
	max-width: 750px;
	margin: 0 auto;
	background-color: #041B67;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
}

.video-creating-page h1 {
	color: #fff;
	font-size: 20px;
	margin-bottom: 10px;
	font-weight: normal;
}

.video-creating-page span {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	margin-bottom: 40px;
}

.video-creating-page .loading-container {
	width: 200px;
	height: 200px;
	margin-bottom: 30px;
}

.video-creating-page .loading-container img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.video-creating-page mark {
	color: #ff6600;
	font-size: 16px;
	font-weight: bold;
	background: none;
	margin-bottom: 10px;
}

.video-creating-page p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	margin-bottom: 40px;
}

.video-creating-page button {
	padding: 15px 60px;
	background-color: #ff6600;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
}

.video-creating-page button:active {
	background-color: #e55a00;
}

/* 视频详情页 */
.video-detail-page {
	background-color: #041B67;
	min-height: 100vh;
	padding-bottom: 80px;
	max-width: 750px;
	margin: 0 auto;
}

.video-detail-page .video-container {
	position: relative;
	width: 100%;
	padding-top: 133%;
	background-color: #000;
}

.video-detail-page .video-container video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-detail-page .video-container .play-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

.video-detail-page .video-container .play-overlay .play-btn {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-detail-page .video-container .play-overlay .play-btn img {
	width: 80px;
	height: 80px;
	position: relative;
	left: 3px;
}

.video-detail-page .content {
	padding: 20px;
}

.video-detail-page .content ul {
	list-style: none;

}

.video-detail-page .content li {
	margin-bottom: 25px;
}

.video-detail-page .content h1 {
	color: #fff;
	font-size: 16px;
	margin-bottom: 12px;
	font-weight: bold;
	padding-bottom: 15px;
	border-bottom: 1px #fff solid;
}

.video-detail-page .content p {
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
	line-height: 1.6;
}

.video-detail-page .content table {
	width: 100%;
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
}

.video-detail-page .content table th {
	text-align: left;
	padding: 10px 0;
	color: #fff;
	font-weight: normal;
	width: 25%;
}

.video-detail-page .content table td {
	padding: 10px 0;
	word-break: break-all;
	text-align: right;
	color: rgba(255, 255, 255, 0.5);
}

.video-detail-page .content .original-img {
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
}

.video-detail-page .content .original-img img {
	width: 100%;
	display: block;
}

.video-detail-page .actions {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	max-width: 750px;
	margin: 0 auto;
	display: flex;
	gap: 15px;
	padding: 15px 20px;
	background-color: rgba(10, 22, 40, 0.95);
	backdrop-filter: blur(10px);
}

.video-detail-page .actions button {
	flex: 1;
	padding: 15px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.video-detail-page .actions .btn-download {
	background-color: #fff;
	color: #ff6600;
}

.video-detail-page .actions .btn-delete {
	background-color: #ff6600;
	color: #fff;
}

.video-detail-page .actions button img {
	width: 20px;
	height: 20px;
}

/* 响应式调整 */
@media (max-width: 375px) {
	.login-top {
		padding: 40px 20px 30px;
	}

	.login-card {
		padding: 20px;
	}

	.video-list-logo img {
		height: 35px;
	}

	.video-creating-page h1 {
		font-size: 18px;
	}

	.video-creating-page .loading-container {
		width: 150px;
		height: 150px;
	}
}