@import url("theme_common.css");

/* 联系我们页面特有样式 */

.contact-page-container {
    background-color: #fff;
    font-family: "microsoft yahei", Arial, Helvetica, sans-serif;
}

/* Banner 区域 */
.contact-banner {
    height: 450px;
    background-color: #8a6db1; /* 从图片取色 */
    background-image: url('/static/images/develop/banner1.png'); /* 复用背景图 */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    color: #fff;
}

.contact-banner .banner-content {
    width: 1200px;
    margin: 0 auto;
    padding-left: 100px;
}

.contact-banner h1 {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.1;
    text-transform: uppercase;
}

.contact-banner p {
    font-size: 24px;
    opacity: 0.9;
}

/* 联系信息卡片 */
.contact-cards-section {
    padding: 100px 0;
}

.contact-cards-container {
    width: 1000px;
    margin: 0 auto;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-title-bar {
    padding: 20px 40px;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px solid #eee;
}

.cards-wrapper {
    display: flex;
}

.contact-card {
    flex: 1;
    padding: 40px;
}

.contact-card:first-child {
    border-right: 1px solid #eee;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
}

.contact-card p {
    font-size: 16px;
    color: #333;
    line-height: 2;
    margin-bottom: 5px;
}

.contact-card .tips {
    font-size: 12px;
    color: #999;
    margin-top: 20px;
}

/* 公司地址与服务热线 */
.info-block {
    width: 1000px;
    margin: 0 auto 40px;
    padding: 40px;
    background-color: #f9f9f9;
    text-align: center;
}

.info-block h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #8a6db1;
}

.info-block p, .info-block .hotline {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.info-block .hotline {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
}

.contact-page-container .final-spacer {
    height: 100px;
}
