diff --git a/mvcar/css/result.css b/mvcar/css/result.css new file mode 100644 index 0000000..a77a219 --- /dev/null +++ b/mvcar/css/result.css @@ -0,0 +1,180 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif; +} + +body { + background-color: #f5f7fa; + color: #333; + line-height: 1.6; + padding: 20px; + display: flex; + flex-direction: column; + align-items: center; + min-height: 100vh; +} + +.container { + max-width: 500px; + width: 100%; + background: white; + border-radius: 16px; + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); + overflow: hidden; + margin-top: 20px; +} + +.header { + background: linear-gradient(135deg, #4a6cf7, #6a82fb); + color: white; + padding: 25px 20px; + text-align: center; +} + +.header h1 { + font-size: 24px; + margin-bottom: 8px; +} + +.header p { + opacity: 0.9; + font-size: 15px; +} + +.content { + padding: 25px; +} + +.info-card { + background: #f8f9ff; + border-radius: 12px; + padding: 20px; + margin-bottom: 25px; + border-left: 4px solid #4a6cf7; +} + +.info-card h2 { + color: #4a6cf7; + font-size: 18px; + margin-bottom: 10px; + display: flex; + align-items: center; +} + +.info-card h2 i { + margin-right: 8px; +} + +.phone-number { + font-size: 28px; + font-weight: bold; + color: #333; + margin: 15px 0; + text-align: center; + letter-spacing: 1px; +} + +.call-button { + display: block; + width: 100%; + background: #4a6cf7; + color: white; + border: none; + border-radius: 50px; + padding: 16px; + font-size: 18px; + font-weight: bold; + cursor: pointer; + transition: all 0.3s ease; + margin-top: 20px; + display: flex; + justify-content: center; + align-items: center; + box-shadow: 0 4px 12px rgba(74, 108, 247, 0.3); + text-decoration: none; +} + +.call-button i { + margin-right: 8px; +} + +.call-button:hover { + background: #3a5ce5; + transform: translateY(-2px); + box-shadow: 0 6px 15px rgba(74, 108, 247, 0.4); +} + +.car-info { + background: #f8f9ff; + border-radius: 12px; + padding: 20px; + margin-bottom: 25px; +} + +.car-info h3 { + color: #4a6cf7; + margin-bottom: 15px; + font-size: 17px; +} + +.car-info p { + margin-bottom: 10px; +} + +.instructions { + margin-top: 30px; + background: #f8f9ff; + border-radius: 12px; + padding: 20px; +} + +.instructions h3 { + color: #4a6cf7; + margin-bottom: 15px; + font-size: 17px; +} + +.instructions ul { + list-style-type: none; +} + +.instructions li { + margin-bottom: 12px; + padding-left: 24px; + position: relative; +} + +.instructions li:before { + content: "•"; + color: #4a6cf7; + font-weight: bold; + position: absolute; + left: 8px; +} + +.footer { + text-align: center; + margin-top: 30px; + color: #666; + font-size: 14px; +} + +@media (max-width: 480px) { + .container { + margin-top: 10px; + } + + .header { + padding: 20px 15px; + } + + .content { + padding: 20px; + } + + .phone-number { + font-size: 24px; + } +} \ No newline at end of file diff --git a/mvcar/css/style.css b/mvcar/css/style.css new file mode 100644 index 0000000..af0cd9d --- /dev/null +++ b/mvcar/css/style.css @@ -0,0 +1,128 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif; +} + +body { + background-color: #f5f7fa; + color: #333; + line-height: 1.6; + padding: 20px; + display: flex; + flex-direction: column; + align-items: center; + min-height: 100vh; +} + +.container { + max-width: 500px; + width: 100%; + background: white; + border-radius: 16px; + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); + overflow: hidden; + margin-top: 20px; +} + +.header { + background: linear-gradient(135deg, #4a6cf7, #6a82fb); + color: white; + padding: 25px 20px; + text-align: center; +} + +.header h1 { + font-size: 24px; + margin-bottom: 8px; +} + +.header p { + opacity: 0.9; + font-size: 15px; +} + +.content { + padding: 25px; +} + +.search-section { + text-align: center; +} + +.search-section h2 { + color: #4a6cf7; + margin-bottom: 20px; + font-size: 20px; +} + +.input-group { + margin-bottom: 20px; +} + +.license-input { + width: 100%; + padding: 15px; + border: 2px solid #e1e5f0; + border-radius: 12px; + font-size: 16px; + text-align: center; + transition: border-color 0.3s; +} + +.license-input:focus { + border-color: #4a6cf7; + outline: none; +} + +.search-button { + width: 100%; + background: #4a6cf7; + color: white; + border: none; + border-radius: 50px; + padding: 16px; + font-size: 18px; + font-weight: bold; + cursor: pointer; + transition: all 0.3s ease; + box-shadow: 0 4px 12px rgba(74, 108, 247, 0.3); +} + +.search-button:hover { + background: #3a5ce5; + transform: translateY(-2px); + box-shadow: 0 6px 15px rgba(74, 108, 247, 0.4); +} + +.error-message { + color: #e74c3c; + text-align: center; + padding: 15px; + background-color: #fdf2f2; + border-radius: 8px; + margin-top: 20px; + display: none; +} + +.footer { + text-align: center; + margin-top: 30px; + color: #666; + font-size: 14px; +} + +@media (max-width: 480px) { + .container { + margin-top: 10px; + } + + .header { + padding: 20px 15px; + } + + .content { + padding: 20px; + } +} \ No newline at end of file diff --git a/mvcar/index.html b/mvcar/index.html new file mode 100644 index 0000000..48dedd4 --- /dev/null +++ b/mvcar/index.html @@ -0,0 +1,34 @@ + + +
+ + +请输入车牌号码查询车主联系方式
+如需挪车,请直接拨打下方电话
+车牌号码: 加载中...
+车辆品牌: 加载中...
+