
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* 全局样式 */
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        /* 主内容区 */
        .main-content {
            max-width: 1200px;
            margin: 200px auto 60px;
            padding: 0 20px;
            text-align: center;
        }

        .page-title {
            margin-bottom: 40px;
        }

        .page-title .en-title {
	font-size: 18px;
  margin-bottom: 12px;
  height: 29px;
  font-family: MiSans, MiSans;
  font-weight: 300;
  color: #b3b3b3;
  line-height: 29px;
  letter-spacing: 2px;
  text-align: center;
  font-style: normal;
  text-transform: uppercase;
        }

        .page-title .cn-title {
margin-bottom: 16px;
  margin-left: 10px;
  height: 40px;
  font-family: MiSans, MiSans;
  font-weight: 500;
  font-size: 40px;
  color: #4d4d4d;
  line-height: 40px;
  letter-spacing: 2px;
  font-style: normal;
        }

        .page-title .desc {
font-size: 18px;
        }

        /* 加载提示 */
        .load-tip {
            margin: -20px 0 30px;
            font-size: 15px;
            color: #ff7a00;
        }

        /* 搜索区域 */
        .search-box {
            display: flex;
            max-width: 700px;
            margin: 0 auto 40px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            padding: 12px;
            gap: 12px;
        }

        .search-input {
            flex: 1;
            padding: 16px 20px;
            border: 1px solid #eee;
            border-radius: 6px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s;
        }

        .search-input:focus {
            border-color: #ff7a00;
        }

        .search-btn {
            padding: 16px 40px;
            background-color: #ff7a00;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .search-btn:hover {
            background-color: #ff6a00;
        }

        /* 结果卡片区域 */
        .result-cards {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .result-card {
            flex: 1;
            min-width: 300px;
            max-width: 380px;
            padding: 30px 24px 40px;
            border-radius: 12px;
            background-color: #fff;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            text-align: left;
            display: none;
        }

        .result-card.show {
            display: block;
        }
		
		.flex {
			display: flex;    gap: 20px;
		}

        .card-header {
display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
        }

        .card-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #fff;
        }

        .green .card-icon {
            background-color: #e8f5e9;
            color: #4caf50;
        }

        .orange .card-icon {
            background-color: #fff3e0;
            color: #ff9800;
        }

        .blue .card-icon {
            background-color: #e3f2fd;
            color: #2196f3;
        }

        .card-title {
            font-size: 20px;
            font-weight: 600;
        }

        .green .card-title {
            color: #4caf50;
        }

        .orange .card-title {
            color: #ff9800;
        }

        .blue .card-title {
            color: #2196f3;
        }

        .card-number {
            font-size: 24px;
            color: #333;
        }

        .card-desc {
            font-size: 16px;
            color: #666;
        }
		.footer {
		    width: 1307px;
    margin: 0 auto;
    height: 100px;
    line-height: 40px;
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 30px 0;
		}
		.footer div {
			    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
		}
		.footer .phone {
    border-right: 1px solid #bbb;
		}
		.footer div span {
		    font-size: 18px;
    color: #666;
    padding-left: 10px;
		}

        /* 响应式适配 */
        @media (max-width: 768px) {
            .search-box {
                flex-direction: column;
                padding: 8px;
            }

            .search-btn {
                padding: 12px 24px;
            }

            .result-cards {
                flex-direction: column;
                align-items: center;
            }

            .result-card {
                max-width: 100%;
            }
			    .control {
        min-width: auto;
    }
		.footer {
		    width: 100%;
    margin: 0 auto;
    line-height: 40px;
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 30px 0;
	    height: auto;
    flex-wrap: wrap;
		}
		.footer div {
			    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
		}
		.footer .phone {
    border-right: 0;
		}
		.footer div span {
		    font-size: 18px;
    color: #666;
    padding-left: 10px;
		}
        }