106 lines
2.5 KiB
HTML
106 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
text-decoration: none;
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
.center {
|
|
width: 100%;
|
|
float: left;
|
|
}
|
|
|
|
.center .img {
|
|
width: 128px;
|
|
height: 40px;
|
|
margin-top: -2px;
|
|
float: left;
|
|
}
|
|
|
|
.center .inp {
|
|
width: 70%;
|
|
position: relative;
|
|
float: left;
|
|
}
|
|
|
|
.center .inp .inp_a {
|
|
float: left;
|
|
width: 500px;
|
|
height: 34px;
|
|
border: 1px solid #4E6EF2;
|
|
border-radius: 16px;
|
|
}
|
|
|
|
.center .inp .inp_a input {
|
|
width: 80%;
|
|
height: 26px;
|
|
float: left;
|
|
margin-left: 50px;
|
|
margin-top: 3px;
|
|
|
|
}
|
|
|
|
.center .inp .inp_wy {
|
|
position: absolute;
|
|
left: 10px;
|
|
line-height: 34px;
|
|
float: left;
|
|
}
|
|
|
|
.center .inp .inp_xx {
|
|
border-radius: 100%;
|
|
text-align: center;
|
|
top: 9px;
|
|
width: 9px;
|
|
height: 18px;
|
|
color: #9195a3;
|
|
background-color: #F5F5F6;
|
|
float: left;
|
|
position: absolute;
|
|
right: 220px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
|
|
.center .inp .inp_text {
|
|
width: 112px;
|
|
height: 44px;
|
|
background-color: #4E6EF2;
|
|
border: 0;
|
|
color: #fff;
|
|
font-size: 17px;
|
|
border-radius: 0 10px 10px 0;
|
|
line-height: 44px;
|
|
text-align: center;
|
|
float: left;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="center">
|
|
<img class="img" src="https://dss2.bdstatic.com/5bVYsj_p_tVS5dKfpU_Y_D3/res/r/image/2021-3-4/hao123%20logo.png"
|
|
alt="">
|
|
<div class="inp">
|
|
<div class="inp_a">
|
|
<div class="inp_wy">网页</div>
|
|
<input class="inp_inp" type="text">
|
|
<div class="inp_xx">3</div>
|
|
</div>
|
|
<div class="inp_text">百度一下 </div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |