body {
    margin: 0;
    padding: 0;
    font-family: 'Microsoft YaHei', sans-serif;
    background-color: #5D9CEC;
    color: white;
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
}
a {
    color: white;
    text-decoration: none;
}
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 40px;
    box-sizing: border-box;
}

.header {
    text-align: center;
    margin-top: 30px;
}

.header img {
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
}

.title-image {
    max-width: 550px;
    margin-bottom: 15px;
}

.subtitle-image {
    max-width: 800px;
}

.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.time-info {
    font-size: 22px;
    margin-bottom: 20px;
}

.consult-btn {
    background-color: #FFA502;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 100px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer {
    width: 80%;
    margin: 0 auto;
    padding: 30px;
    background-color: rgb(255, 255, 255, 0.1);
}

.feature-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 8px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.feature-item span {
    font-size: 14px;
    text-align: center;
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}