/* 联系页面样式 */
.lianxi-container {
    width: 1280px;
    margin: 0 auto;
    padding: 30px 0;
    background: #f8fdff;
    min-height: 600px;
}

.lianxi-header {
    text-align: center;
    margin-bottom: 40px;
}

.lianxi-header h1 {
    font-size: 36px;
    color: #1890ff;
    margin-bottom: 15px;
    font-weight: bold;
}

.lianxi-header .subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.lianxi-content {
    margin-bottom: 40px;
    overflow: hidden;
}

.lianxi-info {
    width: 48%;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    float: left;
    height: 400px;
    margin-right: 1%;
    margin-left: 1%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.lianxi-info h2 {
    color: #1890ff;
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #1890ff;
    padding-bottom: 10px;
}

.contact-item {
    margin-bottom: 15px;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.contact-item strong {
    color: #333;
    white-space: nowrap;
    margin-right: 10px;
}

.contact-item .value {
    color: #1890ff;
    font-weight: bold;
}

.qrcode-section {
    width: 48%;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    float: left;
    height: 400px;
    margin-right: 1%;
    margin-left: 1%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.qrcode-section h2 {
    color: #1890ff;
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #1890ff;
    padding-bottom: 10px;
}

.qrcode-list {
    display: flex;
    justify-content: space-around;
}

.qrcode-item {
    text-align: center;
}

.qrcode-item img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.qrcode-item span {
    display: block;
    color: #666;
    font-size: 14px;
}

.features-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    width: 48%;
    float: left;
    overflow: hidden;
    margin-right: 1%;
    margin-left: 1%;
    margin-top: 30px;
    margin-bottom: 30px;
    height: 600px;
}

.features-section h2 {
    color: #1890ff;
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #1890ff;
    padding-bottom: 10px;
}

.features-grid {
    overflow: hidden;
}

.feature-item {
    width: 48%;
    background: #f0f8ff;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    float: left;
    margin-right: 4%;
    margin-bottom: 20px;
}

.feature-item:nth-child(2n) {
    margin-right: 0;
}

.feature-item h3 {
    color: #1890ff;
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
    line-height: 1.5;
}

.order-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 48%;
    float: right;
    margin-right: 1%;
    margin-left: 1%;
    margin-top: 30px;
    margin-bottom: 30px;
height: 600px;
}

.order-form h2 {
    color: #1890ff;
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #1890ff;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.submit-btn {
    background: #1890ff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #1479d6;
}

.address-list {
    margin-top: 20px;
}

.address-item {
    background: #f0f8ff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    border-left: 4px solid #1890ff;
}