* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
    text-decoration:none;
}
.dashih2{
    text-align: center;font-size: 36px;margin:80px 0 80px 0;
}

body {
    background-color: #f0e6cc; /* ÃƒÂ§Ã‚Â±Ã‚Â³ÃƒÂ©Ã‚Â»Ã¢â‚¬Å¾ÃƒÂ¨Ã¢â‚¬Â°Ã‚Â²ÃƒÂ¨Ã†â€™Ã…â€™ÃƒÂ¦Ã¢â€žÂ¢Ã‚Â¯ */
}

.header {
    background-color: #b30000; /* ÃƒÂ§Ã‚ÂºÃ‚Â¢ÃƒÂ¨Ã¢â‚¬Â°Ã‚Â²ÃƒÂ¥Ã‚Â¤Ã‚Â´ÃƒÂ©Ã†â€™Ã‚Â¨ */
    color: white;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header .logo {
    height: 40px;
max-width: 100%;}

.header .title {
    line-height: 1.4;
}

.header .title h1 {
    font-size: 28px;
    font-weight: normal;
}

.header .title p {
    font-size: 18px;
    opacity: 0.9;
}

.container {
    max-width: 1200px;
    margin: 40px auto 120px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px 30px;
}

.master-card {
    background-color: white;
    border-radius: 75px;
    padding: 0px 30px 0px 0px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.master-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.master-info{margin-left:15px;}

.master-info h2 {
    font-size: 24px;
    color: #222;
    margin-bottom: 12px;
}

.master-info p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.footer {
    background-color: #b30000;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* ÃƒÂ¥Ã¢â‚¬Å“Ã‚ÂÃƒÂ¥Ã‚ÂºÃ¢â‚¬ÂÃƒÂ¥Ã‚Â¼Ã‚ÂÃƒÂ©Ã¢â€šÂ¬Ã¢â‚¬Å¡ÃƒÂ©Ã¢â‚¬Â¦Ã‚Â */
@media (max-width: 1100px) {
    .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .header {
        padding: 15px 20px;
    }
    .header .title h1 {
        font-size: 22px;
    }
    .header .title p {
        font-size: 16px;
    }
    .master-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    .master-avatar {
        width: 120px;
        height: 120px;
    }
    .footer {
        position: static;
        margin-top: 40px;
    }
}