* {
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 {
--primary: #005eb8;
--primary-dark: #003c7e;
--primary-light: #e6f0fa;
--text-dark: #333;
--text-light: #666;
--border: #ddd;
--white: #fff;
--gray: #f5f7fa;
--success: #28a745;
--error: #dc3545;
--shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
--transition: all 0.3s ease;
}
body {
color: var(--text-dark);
line-height: 1.6;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
min-height: 100vh;
}
a {
color: #333;
text-decoration: none;
}
a:hover {
color:#18506D;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header Styles */
header {
background-color: var(--white);
box-shadow: var(--shadow);
position: sticky;
top: 0;
z-index: 100;
}
.top-bar {
background-color: var(--primary-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(--primary);
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(--primary);
}
nav ul li a.active {
color: var(--primary);
border-bottom: 3px solid var(--primary);
}
/* Hero Section */
.hero {
background: linear-gradient(rgba(0, 94, 184, 0.9), rgba(0, 60, 126, 0.9)), url('/static/images/banner.jpg');
background-size: cover;
background-position: center;
color: var(--white);
text-align: center;
padding: 80px 0;
margin-bottom: 60px;
}
.hero h2 {
font-size: 2.8rem;
margin-bottom: 20px;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.hero p {
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto 30px;
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
/* Main Content */
.main-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-bottom: 60px;
}
.contact-form {
padding: 30px;
}
.contact-form h2 {
color: var(--primary-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;
}
.contactformzu {
margin-bottom: 20px;
}
.contactform-label {
line-height: 42px;
display: block;
float: left;
width: 110px;
text-align: right;
}
.contactform-label span {
color: #c5262b;
}
.contactform-content {
margin-left: 110px;
}
.contactform-control {
line-height: 20px;
font-size: 14px;
border: 1px solid #efefef;
padding: 10px 15px;
width: 100%;
display: inline-block;
vertical-align: top;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.contactform-content.yzm .contactform-control {
width: 100px;
}
.contactform-content.yzm .img {
height: 42px;
width: auto;
}
select.contactform-control {
height: 1.7rem;
}
.contactform-submit {
padding: 10px 20px;
color: #fff;
background-color:#18506D;
border: 0;
cursor: pointer;
border-radius: 0.15rem;
font-size: 14px;
}
.contactform-button {
padding: 10px 20px;
color: #fff;
background-color: #767676;
border: 0;
cursor: pointer;
border-radius: 0.15rem;
font-size: 14px;
}
/* Contact Info */
.contact-info-section {
background: var(--white);
border-radius: 10px;
box-shadow: var(--shadow);
padding: 40px;
transition: var(--transition);
}
.contact-info-section:hover {
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
transform: translateY(-5px);
}
.contact-info-section h3 {
color: var(--primary-dark);
font-size: 1.8rem;
margin-bottom: 25px;
padding-bottom: 15px;
border-bottom: 2px solid var(--primary-light);
display: flex;
align-items: center;
}
.contact-info-section h3 i {
margin-right: 12px;
color: var(--primary);
}
.contact-method {
display: flex;
align-items: flex-start;
margin-bottom: 25px;
padding-bottom: 25px;
border-bottom: 1px solid var(--border);
}
.contact-method:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.contact-icon {
width: 50px;
height: 50px;
background: var(--primary-light);
color: var(--primary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 20px;
font-size: 1.4rem;
}
.contact-details h4 {
color: var(--primary-dark);
margin-bottom: 8px;
font-size: 1.2rem;
}
.contact-details p {
color: var(--text-light);
margin-bottom: 5px;
}
.contact-details a {
color: var(--primary);
text-decoration: none;
transition: var(--transition);
}
.contact-details a:hover {
text-decoration: underline;
}
/* Business Hours */
.business-hours {
background: var(--primary-light);
border-radius: 8px;
padding: 20px;
margin-top: 30px;
}
.business-hours h4 {
color: var(--primary-dark);
margin-bottom: 15px;
display: flex;
align-items: center;
}
.business-hours h4 i {
margin-right: 10px;
}
.hours-list {
list-style: none;
}
.hours-list li {
display: flex;
justify-content: space-between;
padding: 8px 0;
border-bottom: 1px solid rgba(0, 94, 184, 0.1);
}
.hours-list li:last-child {
border-bottom: none;
}
/* FAQ Section */
.faq-section {
background: var(--white);
border-radius: 10px;
box-shadow: var(--shadow);
padding: 40px;
margin-bottom: 60px;
}
.faq-section h3 {
color: var(--primary-dark);
font-size: 1.8rem;
margin-bottom: 25px;
text-align: center;
}
.faq-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
}
.faq-item {
background: var(--gray);
border-radius: 8px;
padding: 20px;
transition: var(--transition);
cursor: pointer;
}
.faq-item:hover {
background: var(--primary-light);
transform: translateY(-5px);
}
.faq-question {
display: flex;
align-items: center;
margin-bottom: 10px;
font-weight: 600;
color: var(--primary-dark);
}
.faq-question i {
margin-right: 10px;
color: var(--primary);
}
/* Footer */
footer {
background-color: var(--primary-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(--primary);
}
.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(--primary);
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) {
.main-content {
grid-template-columns: 1fr;
}
.hero h2 {
font-size: 2.3rem;
}
}
@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 {
padding: 60px 0;
}
.hero h2 {
font-size: 2rem;
}
.contact-form, .contact-info-section {
padding: 30px;
}
.faq-container {
grid-template-columns: 1fr;
}
.contact-form {
padding: 0;
}
}