body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
}

.fixed-bottom{
position:fixed;
bottom:0;
left:0;
width:100%;
background-color:#f8d7da;
color:black;
text-align:center;
padding:10px 0px;
box-sizing:border-box;
}

a{
color:#000;
}

.rounded-button {
width: 150px;
height: 50px;
background-color: #f8d7da;
border-radius: 30px; /* 设置圆角半径 */
border: none;
color: black;
text-align: center;
line-height: 50px;
cursor: pointer;
}

/*hamburger menu style uiid:1*/
.menu-container {
position: relative;
display: flex;
align-items: center;
justify-content: flex-start;
padding: 16px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hamburger {
cursor: pointer;
display: flex;
flex-direction: column;
justify-content: space-between;
width: 24px;
height: 18px;
}

.hamburger div {
width: 100%;
height: 2px;
background-color: #000;
transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu {
position: absolute;
top: 100%;
left: 0;
width: 100%;
background-color: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transform: translateY(-10px);
opacity: 0;
transition: transform 0.3s ease, opacity 0.3s ease;
pointer-events: none;
}

.menu.active {
transform: translateY(0);
opacity: 1;
pointer-events: auto;
}

.menu-item {
padding: 12px 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.menu-item:hover {
background-color: #f1f1f1;
}

.menu-item.active {
color: #1976d2;
}

.menu-item svg {
margin-right: 8px;
}

@media (min-width: 768px) {
.menu-container {
justify-content: flex-end;
}
}

/*end uiid:1*/