﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

h1 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.description {
    color: #7f8c8d;
    font-size: 16px;
}

.search-tabs {
    display: flex;
    margin-bottom: 20px;
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tab {
    flex: 1;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: bold;
}

.tab.active {
    background: #3498db;
    color: white;
}

.tab:hover:not(.active) {
    background: #f1f1f1;
}

.search-form {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

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

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

button {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    width: 100%;
}

button:hover {
    background: #2980b9;
}

.results {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.search-summary {
    margin-bottom: 20px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid #3498db;
}

.result-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.result-item:last-child {
    border-bottom: none;
}

.result-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.postcode {
    font-weight: bold;
    color: #e74c3c;
    font-size: 18px;
}

.address {
    color: #7f8c8d;
}

.map-container {
    margin-top: 30px;
    background: white;
    padding: 0px;
    border-radius: 5px;
    //box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.map-title {
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

#china-map {
    width: 100%;
    //height: 90%;
    border: 1px solid #ddd;
	padding: 20px;
	box-sizing: border-box;
	//font-size: 10px;
}

.hidden {
    display: none;
}

.alert {
    padding: 15px;
    background: #f8d7da;
    color: #721c24;
    border-radius: 4px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .search-tabs {
flex-direction: column;
    }
    
    .tab {
padding: 12px;
    }
}


.binbe path {
	animation-iteration-count: 1;
	animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
	stroke: #fff;
}

.new-bae:hover path {
	fill: #009688;
}


.unine {
	text-anchor: middle;
	font: 12px Arial;
	cursor: pointer;
	fill: "#000000";
	stroke: "none";
}

.footer {
    text-align: center;
    padding: 20px;
    //background: #f8f9fa;
    color: #6c757d;
    //border-top: 1px solid #e9ecef;
}


.button-text {
			margin-left: 15px;
		}


		/* 手机端样式 */
@media (max-width: 768px) {
            .btn {
                flex-direction: column;
                align-items: flex-start;
            }
            
.button-text {
                margin-left: 0;
                margin-top: 0px;
                display: block;
            }
            

        }














