body {
	margin: 0;
	/* 去除默认外边距 - Remove default margin */
	padding: 0;
	/* 去除默认内边距 - Remove default padding */
	box-sizing: border-box;
	/* 使用 border-box 盒模型 - Use border-box model */
	
	/* 设置默认字体 - Set default font stack */
	font-size: 16px;
	/* 设置默认字体大小 - Set default font size */
	line-height: 1.5;
	/* 设置默认行高 - Set default line height */
	color: #333;
	/* 设置默认文字颜色 - Set default text color */
	background-color: #fff;
	/* 设置默认背景颜色 - Set default background color */
	min-height: 100vh;
	/* 确保最小高度为视口高度 - Ensure minimum height is viewport height */
	font-family: 'Roboto', sans-serif;
}

/* 确保所有元素继承 box-sizing - Ensure all elements inherit box-sizing */
*,
*:before,
*:after {
	box-sizing: inherit;
}

/* 垂直布局 - Vertical layout */
.vertical-layout {
	display: flex;
	flex-direction: column;
}

/* 两侧对齐 - Align content with space between */
.space-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* 左侧对齐 - Align content to the left */
.align-left {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

/* 右侧对齐 - Align content to the right */
.align-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

/* 居中对齐 - Center align content */
.center-align {
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

/* 导航布局 - Navigation layout */
.nav-layout {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/* 去除 a 标签默认样式 - Remove default styles for <a> tags */
a {
	text-decoration: none;
	/* 去除下划线 - Remove underline */
	color: inherit;
	/* 继承父元素颜色 - Inherit color from parent */
}

.jcook1 {
	min-height: 100vh;
}

/* 基础 input 样式 - Basic styles for input */
input {
 
	border: none;
	/* 去除边框 - Remove border */
	background: none;
	/* 去除背景 - Remove background */
	color: inherit;
	/* 继承父元素文字颜色 - Inherit text color from parent */
	font: inherit;
	/* 继承父元素字体 - Inherit font from parent */
	padding: 0;
	/* 去除内边距 - Remove padding */
	margin: 0;
	/* 去除外边距 - Remove margin */
}

/* 设置输入框聚焦时的样式 - Set styles when input is focused */
/* 强制去除 input 选中时的边框 - Force remove border when input is focused */
input:focus {
	outline: none !important;
	/* 强制去除焦点时的外边框 - Force remove outline */
	border: none !important;
	/* 强制去除边框 - Force remove border */
	box-shadow: none !important;
	/* 强制去除阴影 - Force remove box-shadow */
}

/* 禁用状态下的 input 样式 - Styles for disabled input */
input:disabled {
	background-color: #f5f5f5;
	/* 设置禁用时背景颜色 - Set background color for disabled state */
	color: #999;
	/* 设置禁用时文字颜色 - Set text color for disabled state */
	border-color: #ddd;
	/* 设置禁用时边框颜色 - Set border color for disabled state */
	cursor: not-allowed;
	/* 设置禁用时的光标 - Set cursor for disabled state */
}


.ty-tab-container {}

.ty-tab-buttons {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
}

.ty-tab-button {
	padding: 10px 20px;
	border: 0px solid #ccc;
	background: #f9f9f900;
	cursor: pointer;
	transition: background 0.3s;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
	border-bottom: 2px solid #F9FAFB;
}

.ty-tab-button.active {
	background: #007bff00;
	color: #FF5C51;
	border-color: #007bff00;
	border-bottom: 2px solid #FF5C51;
}

.ty-tab-content {
	display: none;
	padding: 20px;
}

.ty-tab-content.active {
	display: block;
}

.myuki-gcard_mask {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	display: -webkit-flex;
	display: -ms-flexbox;
	justify-content: center;
	align-items: baseline;
	transition: all .5s ease;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Lato, Roboto, 'PingFang SC', 'Microsoft YaHei', sans-serif;
	z-index: 9999;
	box-sizing: border-box;
}

.myuki-gcard_box {
	width: 360px;
	box-sizing: border-box;
	margin: 13% auto 0;
	background-color: #f1f2f6;
	padding: 9px;
	border-radius: 6px;
	z-index: inherit;
	-webkit-animation: swing-in-top-fwd 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	animation: swing-in-top-fwd 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}