body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
    font-size: 3.75vw;
}

header {
    padding: 3.25vw;
    background-color: #ffffff;
    text-align: center;
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
}
button {
    border: none;
    border-radius: 2vw;
    padding: 2vw 3vw;
    font-size: 3vw;
}
input {
    font-size: 3vw;
}
.logo img {
    width: 40%;
    height: auto;
}

main {
    padding: 3.25vw;
}
section {
    border-radius: 3.25vw;
    background-color: #fff;
    padding: 3.25vw;
    margin-bottom: 3.25vw;
}
h2{
  font-size: 5.2vw;
}
.fund-display {
  text-align: center;
}

.fund-display h1 {
    font-size: 5vw;
}

.fund-display p {
    font-size: 4vw;
}

.fund-display a {
    display: block;
    margin-top: 2.5vw;
    color: #4ca2ff;
    text-decoration: none;
}

.navigation {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
    z-index: 10;
    margin-bottom: 3.25vw;
}

.navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

.navigation ul li {
    margin: 0;
}

.navigation ul li a {
    display: block;
    padding: 2.5vw 5vw;
    color: #4ca2ff;
    text-decoration: none;
    font-weight: bold;
    font-size: 3.75vw;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 6vw;
}
table th, table td {
	border-bottom: 1px solid #ebebeb;
    padding: 3vw 0;
    text-align: center;
}
table th {
    background-color: #f2f2f2;
}

.load-more {
    background-color: #4ca2ff;
    color: #fff;
    cursor: pointer;
}

.time-select {
	display: flex;
	justify-content: space-around;
	margin-top: 2.5vw;
}

.time-select button {
    font-size: 3.5vw;
    padding: 2.5vw;
	background-color: transparent; /* 初始无色 */
	color: #4ca2ff;
    border: 1px solid #4ca2ff;
	cursor: pointer;
	transition: all 0.3s ease;
}

.time-select button.active {
	background-color: #4ca2ff;
	color: #fff;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background-color: #ffffff;
    padding: 2.5vw 0;
    box-shadow: 0 -0.5vw 1vw rgba(0, 0, 0, 0.1);
}

footer button {
    font-size: 3.8vw;
    background-color: #4ca2ff;
    color: #fff;
    cursor: pointer;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    line-height: 1.5;
}

.modal-content {
    background-color: #fefefe;
    margin: 15vw 5vw;
    padding: 5vw;
    width: 80vw;
    border-radius: 4vw;
}
.modal-content img{
    max-width: 60%;
    margin: 0 20%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 7vw;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* 持仓 */
.positionPng img {
    width: 100%;
    height: auto;
}
.p0{
	width: 87vw;
	display: flex;
	align-items: center;
}
.p1t{
	width: 55vw;
	text-align: center;
}
.p1{
	width: 35vw;
    font-size: 3.5vw;
}
.p1 p{
	font-size: 3vw;
	color: #666;
	padding-top: 1vw;
	margin: 0;
}
.p1 span{
	font-size: 3vw;
	color: #999;
	padding-top: 1vw;
	margin: 0;
}
.pimg {
	width: 20vw;
    height:17vw;
}
.pimg img {
	padding: 2.5vw 2.5vw;
    width: 12vw;
	height: auto;
	border-radius: 5vw;
}
.p2{
	width: 16vw;
    text-align: center;
}
.p3{
	width: 16vw;
    text-align: center;
}