* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Microsoft Yahei", PingFangSC-Regular, "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;}
:root {
--emerson-blue: #005eb8;
--emerson-dark: #003c7e;
--emerson-light: #e6f0fa;
--text-dark: #333;
--text-light: #666;
--border: #ddd;
--white: #fff;
--gray: #f5f7fa;
--transition: all 0.3s ease;
}
body {
color: var(--text-dark);
line-height: 1.6;
background-color: var(--white);
overflow-x: hidden;
}
a {
color: #333;
text-decoration: none;
}
a:hover {
color:#18506D;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header Styles */
header {
background-color: var(--white);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 100;
}
.top-bar {
background-color: var(--emerson-dark);
color: var(--white);
padding: 8px 0;
font-size: 14px;
}
.top-bar-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.contact-info span {
margin-right: 20px;
}
.language-selector select {
background: transparent;
border: none;
color: var(--white);
font-size: 14px;
}
.main-header {
padding: 15px 0;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
}
.logo img {
height: 40px;
}
.logo h2 {
margin-left: 10px;
font-size: 24px;
color: var(--emerson-blue);
font-weight: 600;
}
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin-left: 25px;
position: relative;
}
nav ul li a {
text-decoration: none;
color: var(--text-dark);
font-weight: 500;
font-size: 16px;
padding: 8px 5px;
transition: color 0.3s;
}
nav ul li a:hover {
color: var(--emerson-blue);
}
nav ul li a.active {
color: var(--emerson-blue);
border-bottom: 3px solid var(--emerson-blue);
}
.search-icon {
margin-left: 20px;
color: var(--emerson-blue);
cursor: pointer;
}
/* Hero Section */
.hero {
background: linear-gradient(rgba(0, 94, 184, 0.8), rgba(0, 60, 126, 0.9)), url('/static/images/banner.jpg') no-repeat center center/cover;
color: var(--white);
padding: 100px 0;
text-align: center;
}
.hero-content {
max-width: 800px;
margin: 0 auto;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 20px;
font-weight: 700;
}
.hero p {
font-size: 1.2rem;
margin-bottom: 30px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.btn {
display: inline-block;
padding: 12px 30px;
background-color: var(--emerson-blue);
color: var(--white);
text-decoration: none;
border-radius: 4px;
font-weight: 600;
transition: background-color 0.3s;
border: none;
cursor: pointer;
font-size: 16px;
}
.btn:hover {
background-color: var(--emerson-dark);
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.btn-outline {
background-color: transparent;
border: 2px solid var(--white);
margin-left: 15px;
}
.btn-outline:hover {
background-color: rgba(255, 255, 255, 0.1);
}
/* Breadcrumb */
.breadcrumb {
padding: 15px 0;
background-color: var(--gray);
margin-bottom: 30px;
}
.breadcrumb ul {
display: flex;
list-style: none;
}
.breadcrumb ul li {
margin-right: 10px;
font-size: 14px;
}
.breadcrumb ul li:not(:last-child):after {
content: '>';
margin-left: 10px;
color: var(--text-light);
}
.breadcrumb a {
color: var(--emerson-blue);
text-decoration: none;
}
.breadcrumb a:hover {
text-decoration: underline;
}
/* About Section */
.about-intro {
padding: 80px 0;
background-color: var(--white);
}
.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}
.about-text h2 {
color: var(--emerson-dark);
font-size: 2.5rem;
margin-bottom: 20px;
}
.about-text p {
margin-bottom: 20px;
color: var(--text-light);
}
.about-image {
border-radius: 8px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-image img {
width: 100%;
height: auto;
display: block;
transition: transform 0.5s;
}
.about-image:hover img {
transform: scale(1.05);
}
.stats-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
margin-top: 40px;
}
.stat-card {
text-align: center;
padding: 30px 20px;
background-color: var(--emerson-light);
border-radius: 8px;
transition: transform 0.3s;
}
.stat-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.stat-icon {
font-size: 2.5rem;
color: var(--emerson-blue);
margin-bottom: 15px;
}
.stat-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--emerson-blue);
margin-bottom: 5px;
}
.stat-text {
font-size: 1.1rem;
color: var(--emerson-dark);
}
/* History Timeline */
.history {
padding: 80px 0;
background-color: var(--gray);
}
.section-title {
text-align: center;
margin-bottom: 50px;
}
.section-title h2 {
font-size: 2.5rem;
color: var(--emerson-dark);
margin-bottom: 15px;
}
.section-title p {
color: var(--text-light);
max-width: 700px;
margin: 0 auto;
}
.timeline {
position: relative;
max-width: 900px;
margin: 0 auto;
}
.timeline::after {
content: '';
position: absolute;
width: 4px;
background-color: var(--emerson-blue);
top: 0;
bottom: 0;
left: 50%;
margin-left: -2px;
}
.timeline-item {
padding: 20px 40px;
position: relative;
width: 50%;
box-sizing: border-box;
}
.timeline-item::after {
content: '';
position: absolute;
width: 20px;
height: 20px;
background-color: var(--white);
border: 4px solid var(--emerson-blue);
top: 25px;
border-radius: 50%;
z-index: 1;
}
.timeline-item:nth-child(odd) {
left: 0;
text-align: right;
}
.timeline-item:nth-child(odd)::after {
right: -12px;
}
.timeline-item:nth-child(even) {
left: 50%;
}
.timeline-item:nth-child(even)::after {
left: -12px;
}
.timeline-content {
padding: 20px;
background-color: var(--white);
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.timeline-year {
font-size: 1.5rem;
font-weight: 700;
color: var(--emerson-blue);
margin-bottom: 10px;
}
.timeline-title {
font-size: 1.3rem;
margin-bottom: 10px;
color: var(--emerson-dark);
}
/* Values Section */
.values {
padding: 80px 0;
background-color: var(--white);
}
.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 40px;
}
.value-card {
text-align: center;
padding: 40px 30px;
border-radius: 8px;
background-color: var(--white);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: transform 0.3s;
}
.value-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 94, 184, 0.1);
}
.value-icon {
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
background-color: var(--emerson-light);
border-radius: 50%;
color: var(--emerson-blue);
font-size: 2rem;
}
.value-card h3 {
color: var(--emerson-blue);
margin-bottom: 15px;
}
/* Team Section */
.team {
padding: 80px 0;
background-color: var(--gray);
}
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 40px;
}
.team-member {
background: var(--white);
border-radius: 8px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: transform 0.3s;
}
.team-member:hover {
transform: translateY(-10px);
}
.member-photo {
height: 280px;
overflow: hidden;
}
.member-photo img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
}
.team-member:hover .member-photo img {
transform: scale(1.1);
}
.member-info {
padding: 25px;
text-align: center;
}
.member-info h3 {
color: var(--emerson-dark);
margin-bottom: 5px;
}
.member-position {
color: var(--emerson-blue);
margin-bottom: 15px;
font-weight: 500;
}
.member-social {
display: flex;
justify-content: center;
gap: 15px;
}
.member-social a {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
background-color: var(--emerson-light);
border-radius: 50%;
color: var(--emerson-blue);
transition: all 0.3s;
}
.member-social a:hover {
background-color: var(--emerson-blue);
color: var(--white);
}
/* Contact Section */
.contact {
padding: 80px 0;
background: linear-gradient(to right, var(--emerson-light) 50%, var(--white) 50%);
}
.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
background: var(--white);
border-radius: 10px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.contact-info {
background: var(--emerson-blue);
padding: 50px;
color: var(--white);
}
.contact-info h2 {
font-size: 2rem;
margin-bottom: 30px;
}
.contact-detail {
display: flex;
margin-bottom: 25px;
}
.contact-icon {
font-size: 1.5rem;
margin-right: 15px;
color: var(--white);
}
.contact-text h4 {
margin-bottom: 5px;
font-size: 1.2rem;
}
.contact-form {
padding: 50px;
}
.contact-form h2 {
color: var(--emerson-dark);
font-size: 2rem;
margin-bottom: 30px;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
width: 100%;
padding: 12px 15px;
border: 1px solid var(--border);
border-radius: 4px;
font-size: 16px;
transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
border-color: var(--emerson-blue);
outline: none;
box-shadow: 0 0 0 2px rgba(0, 94, 184, 0.1);
}
.form-group textarea {
height: 120px;
resize: vertical;
}
/* Footer */
footer {
background-color: var(--emerson-dark);
color: var(--white);
padding: 60px 0 20px;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
margin-bottom: 40px;
}
.footer-column h3 {
font-size: 1.3rem;
margin-bottom: 20px;
position: relative;
padding-bottom: 10px;
}
.footer-column h3:after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 50px;
height: 2px;
background-color: var(--emerson-blue);
}
.footer-column ul {
list-style: none;
}
.footer-column ul li {
margin-bottom: 10px;
}
.footer-column ul li a {
color: #ccc;
text-decoration: none;
transition: color 0.3s;
}
.footer-column ul li a:hover {
color: var(--white);
}
.social-icons {
display: flex;
gap: 15px;
margin-top: 20px;
}
.social-icons a {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
color: var(--white);
transition: background-color 0.3s;
}
.social-icons a:hover {
background-color: var(--emerson-blue);
transform: translateY(-3px);
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 20px;
text-align: center;
color: #aaa;
font-size: 14px;
}
/* Responsive Styles */
@media (max-width: 992px) {
.about-content {
grid-template-columns: 1fr;
}
.contact-wrapper {
grid-template-columns: 1fr;
}
.contact {
background: var(--emerson-light);
}
}
@media (max-width: 768px) {
.main-header {
flex-direction: column;
padding: 15px 0;
}
nav ul {
margin-top: 20px;
flex-wrap: wrap;
justify-content: center;
}
nav ul li {
margin: 5px 10px;
}
.hero h1 {
font-size: 2.2rem;
}
.hero p {
font-size: 1rem;
}
.btn {
display: block;
margin: 10px auto;
width: 80%;
max-width: 300px;
}
.btn-outline {
margin-left: 0;
}
.timeline::after {
left: 31px;
}
.timeline-item {
width: 100%;
padding-left: 70px;
padding-right: 25px;
text-align: left;
}
.timeline-item:nth-child(odd) {
left: 0;
text-align: left;
}
.timeline-item:nth-child(even) {
left: 0;
}
.timeline-item::after {
left: 21px;
}
}