/* about.css - 科技感样式 */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #000000;
    margin: 0;
    padding: 0;
}

.about-container {
    max-width: 1200px;
    height: 9	00px;
    margin: 20px auto;
    padding: 20px;
	border: 1px solid #A4A4A4;
    background-color: #ffffff;
    box-shadow: 10px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: center;
}

.intro {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.intro img {
    width: 150px;
    height: auto;
    border-radius: 50%;
    margin-right: 20px;
    border: 2px solid #ffffff;
}

.intro-text h1 {
    font-size: 28px;
    margin: 0 0 10px;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

.team {
    margin-bottom: 20px;
}

.team .wdtdui {
	line-height: 200px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.team-member {
    display: inline-block;
    margin: 10px;
    text-align: center;
    width: 200px;
    vertical-align: top;
    background-color: #D9D9D9;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 5px;
    border: 2px solid #007bff;
}

.team-member h3 {
    font-size: 18px;
    margin: 5px 0;
}

.team-member p {
    font-size: 14px;
    color: #272727;
}

.contact {
    margin-top: 30px;
    padding: 20px;
    background-color: #f0f4f8;
    border-radius: 8px;
}

.contact h2 {
    color: #000000;
    margin-bottom: 15px;
}

.contact p {
    color: #000000;
    margin-bottom: 20px;
}

.contact form input,
.contact form textarea {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #007bff;
    border-radius: 4px;
    background-color: #ffffff;
    color: #000000;
}

.contact form button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact form button:hover {
    background-color: #0056b3;
}