a:link, a:visited, a:hover, a:active {
	text-decoration: none; /* 去掉所有状态的下划线 */
}

ul{
	list-style-type: none;
}

ul li{
	list-style-type: none;
}

body{
	padding: 0;
	margin: 0;
	/* background: linear-gradient(135deg, #ff6b6b, #ff8e8e); */
}

.header{
	width: 7.5rem;
	height: 0.38rem;
	margin: 0 auto;
	background-color:#FFFFFF;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
}
.header .header-content{
	width: 5.75rem;
	height: 0.38rem;
	margin: 0 auto;
}
.header .logo{
	width: 0.84rem;
	height: 0.35rem;
	display: inline-block;
	float: left;
}
.header .logo img{
	width: 100%;
}

.header .menu{
	width: 2.32rem;
	height: 0.35rem;
	display: inline-block;
	float: right;
}

.header .menu ul{
	/* height: 0.48rem; */

	display: flex;
	padding-left: 0;
	margin: 0.1rem 0;
}

.header .menu ul li{
	width: 0.48rem;
	font-size: 0.08rem;
	line-height: 0.16rem;
	color: black;
	/* font-weight: bold; */
	margin: 0 0.1rem;
	text-align: center;
}

.header .menu ul li.active{
	color: #FFFFFF;
	background-color: #F9A424;
	border: 0.01rem solid #F9A424;
	border-radius: 0.15rem;
}

.content{
	width: 7.5rem;
	height: auto;
	margin: 0 auto;
	margin-top: 0.58rem;

	/* background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */

	/* background: linear-gradient(135deg, #ff6b6b, #ff8e8e); */
}


.content .main{
	width: 6rem;
	margin: 0 auto;
	background-repeat: no-repeat;
	background-size: cover;

	position: relative;

}

.container {
	max-width: 6rem;
	margin-top: 0.5rem;
	padding: 0.2rem;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}


.banner {
	text-align: center;
	margin-bottom: 30px;
}

.banner h1 {
	font-size: 28px;
	color: #e74c3c;
	margin-bottom: 20px;
}

.form-group {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 25px;
}

.form-group input {
	width: 220px;
	padding: 12px 15px;
	font-size: 14px;
	border: 1px solid #ddd;
	border-radius: 6px;
	outline: none;
	transition: border-color 0.3s;
}

.form-group input:focus {
	border-color: #e74c3c;
	box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.form-group button {
	padding: 12px 30px;
	background: #e74c3c;
	color: white;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	transition: background 0.3s, transform 0.2s;
}

.form-group button:hover {
	background: #c0392b;
	transform: translateY(-2px);
}

.form-group button:active {
	transform: translateY(0);
}

.card-info {
	display: flex;
	gap: 20px;
}

.card-balance {
	flex: 1;
	background: #e74c3c;
	color: white;
	padding: 25px;
	border-radius: 10px;
	text-align: center;
}

.card-balance h2 {
	font-size: 32px;
	margin-bottom: 15px;
}

.card-balance p {
	font-size: 14px;
	margin: 8px 0;
	opacity: 0.9;
}

.transaction-history {
	flex: 1;
	background: white;
	padding: 25px;
	border-radius: 10px;
	border: 1px solid #eee;
}

.transaction-history h3 {
	color: #e74c3c;
	margin-bottom: 15px;
	font-size: 18px;
}

.transaction-item {
	font-size: 14px;
	padding: 10px 0;
	border-bottom: 1px solid #f5f5f5;
}

.transaction-item:last-child {
	border-bottom: none;
}

@media (max-width: 768px) {
	.card-info {
		flex-direction: column;
	}

	.form-group {
		flex-direction: column;
		align-items: center;
	}

	.form-group input, .form-group button {
		width: 100%;
	}
}

.footer{
	width: 7.5rem;
	height: 0.71rem;
	margin: 0 auto;
	background-color:#2F3032;

}
.footer .main{
	width: 7.5rem;
	height: 0.71rem;
	font-size: 0.08rem;
	color: #FFFFFF;
	margin: 0 auto;
	display: flex;
}

.footer .main p,font{
	font-size: 0.06rem;
}

.footer .main .left{
	width: 50%;
	height: 0.71rem;
	text-align: left;
}

.footer .main .left ul {
	/* margin-top: 0.21rem; */
	padding-left: 1.38rem;
}
.footer .main .left ul li {
	font-size: 0.06rem;
	line-height: 0.14rem;
}

.footer .main .right{
	width: 50%;
	height: 0.45rem;
	text-align: right;
}
.footer .main .right ul {
	/* margin-top: 0.24rem; */
	padding-right: 1.28rem;
}
.footer .main .right ul li {
	font-size: 0.06rem;
	line-height: 0.16rem;
}