﻿ 
        * {
            margin: 0;
            padding: 0;
        }

        html, body {
            height: 100%;
        }

        body {
            background-color: #fff;
            background-image: url('/assets/images/query/bg@3x.png');
            background-repeat: no-repeat;
            background-position: top center;
            background-size: 100%;
        }

        @media (min-width: 768px) {
            body {
                background-image: url('/assets/images/query/bg.png');
            }
        }

        .query-container {
            display: -webkit-box;
            display: -webkit-flex;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .query-title {
            padding-top: 40px;
            text-align: center;
            font-size: 22px;
            color: #2cf3ff;
            font-weight: bold;
            font-family: 'Microsoft YaHei';
        }


        @media (min-width: 768px) {
            .query-title {
                padding-top: 50px;
                font-size: 28px;
            }
        }

        @media (min-width: 992px) {
            .query-title {
                padding-top: 60px;
                font-size: 32px;
            }
        }

        @media (min-width: 1200px) {
            .query-title {
                padding-top: 100px;
                font-size: 50px;
            }
        }

        .search-container {
            -webkit-box-flex: 1;
            -webkit-flex: 1;
            flex: 1;
            /*height: 100%;*/
            -webkit-overflow-scrolling: touch;
            padding-top: 30px;
            padding: 30px 30px 0;
        }

        @media (min-width: 768px) {
            .search-container {
                padding: 60px 60px 0;
            }
        }

        @media (min-width: 992px) {
            .search-container {
                padding-top: 70px;
                width: 600px;
                margin: 0 auto;
            }
        }

        @media (min-width: 1200px) {
            .search-container {
                padding-top: 90px;
                width: 800px;
            }
        }

        .search-wrap {
            display: -webkit-box;
            display: -webkit-flex;
            display: flex;
            font-size: 0;
            justify-content: center;
        }

        .search-input {
            -webkit-box-flex: 1;
            -webkit-flex: 1;
            flex: 1;
            box-sizing: border-box;
            padding: 0 10px;
            width: 100%;
            height: 40px;
            border: none;
            color: #333;
            text-align: center;
            font-size: 14px;
            background-color: rgba(255,255,255,.2);
            border: 2px solid rgba(255,255,255,.2);
            -moz-appearance: none;
            -webkit-appearance: none; /*解决ios上按钮的圆角问题*/
            border-radius: 0; /*解决ios上输入框圆角问题*/
            outline: medium; /*去掉鼠标点击的默认黄色边框*/
        }

        @media (min-width: 1200px) {
            .search-input {
                height: 48px;
            }
        }

        .search-wrap .active,
        .search-input:focus {
            background-color: rgba(255,255,255,.9);
            border: 2px solid #3366ff;
            box-shadow: -5px 0px 20px 0px rgba(162, 185, 255, 0.5);
        }

        .search-input::-webkit-input-placeholder {
            color: #ccc;
        }

        .search-input:-moz-placeholder {
            color: #ccc;
        }

        .search-input:-ms-input-placeholder {
            color: #ccc;
        }

        .search-btn {
            cursor: pointer;
            width: 60px;
            height: 40px;
            line-height: 40px;
            font-size: 14px;
            background-color: #3366ff;
            color: #fff;
            border: none;
            -moz-appearance: none;
            -webkit-appearance: none; /*解决ios上按钮的圆角问题*/
            border-radius: 0; /*解决ios上输入框圆角问题*/
            outline: medium; /*去掉鼠标点击的默认黄色边框*/
        }

        @media (min-width: 768px) {
            .search-btn {
                width: 100px;
            }
        }

        @media (min-width: 1200px) {
            .search-btn {
                width: 120px;
                height: 48px;
                line-height: 48px;
            }
        }

        .search-content {
            margin-top: 20px;
            background-color: #fff;
        }

        .search-not-record {
            border: 2px solid red;
            color: red;
            text-align: center;
            box-sizing: border-box;
            background-color: #fff;
            padding: 50px 15px;
        }

        .copyright {
            padding: 20px 15px;
            text-align: center;
            font-size: 12px;
            color: #ccc;
        }

        @media (min-width: 992px) {
            .copyright {
                font-size: 14px;
            }
        } 
