You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
2.0 KiB
93 lines
2.0 KiB
<link rel="stylesheet" href="../../layui/css/layui.css">
|
|
<style>
|
|
body{
|
|
color: #00343E;
|
|
}
|
|
.container-box {
|
|
padding: 20px 20px 14px 20px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#checkBox{
|
|
font-size: 12px;
|
|
}
|
|
#checkBox .layui-form-input{
|
|
float: left;
|
|
width: 350px;
|
|
}
|
|
#checkBox .layui-form-label{
|
|
padding: 0;
|
|
width: 60px;
|
|
height: 34px;
|
|
line-height: 1em;
|
|
padding-right: 8px;
|
|
/* float: left; */
|
|
}
|
|
#checkBox .fisrtLabel{
|
|
padding-top: 10px;
|
|
}
|
|
#checkBox input[disabled]{
|
|
background: #F3F3F3;
|
|
}
|
|
#checkBox .layui-input{
|
|
/* width: 250px; */
|
|
height: 34px;
|
|
}
|
|
#checkBox .sendBtn{
|
|
color: #E2AD34;
|
|
border: 1px solid #E2AD34;
|
|
width: 90px;
|
|
height: 34px;
|
|
line-height: 32px;
|
|
background: #FFFFFF;
|
|
float: left;
|
|
border-radius: 0 2px 2px 0;
|
|
}
|
|
#checkBox .code{
|
|
float: left;
|
|
width: 260px;
|
|
border-radius: 2px 0 0 2px;
|
|
border-right: 0;
|
|
}
|
|
#checkBox .layui-form-item{
|
|
margin-bottom: 30px;
|
|
}
|
|
#checkBox .container-btn{
|
|
height: 68px;
|
|
border-top: 1px solid #DFE3E8;
|
|
}
|
|
#checkBox .container-btn{
|
|
padding: 14px 30px 0 30px;
|
|
box-sizing: border-box;
|
|
}
|
|
#checkBox .container-btn .sureBtn{
|
|
height: 40px;
|
|
background: #00343E;
|
|
color: #E2AD34;
|
|
font-family: "Microsoft YaHei";
|
|
font-weight: bold;
|
|
border-radius: 2px;
|
|
width: 100%;
|
|
margin-top: 6px;
|
|
}
|
|
</style>
|
|
<form class="layui-form" id="checkBox" autocomplete="off">
|
|
<div class="container-box">
|
|
<div class="layui-form-item">
|
|
<label class="layui-form-label fisrtLabel">Email</label>
|
|
<div class="layui-form-input">
|
|
<input type="text" name="email" disabled class="layui-input">
|
|
</div>
|
|
</div>
|
|
<div class="layui-form-item">
|
|
<label class="layui-form-label">Email verification code</label>
|
|
<div class="layui-form-input">
|
|
<input type="text" name="code" autocomplete="off" class="layui-input code">
|
|
<input type="button" class="layui-btn sendBtn" value="Get" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="container-btn">
|
|
<input type="button" value="Save" class="layui-btn sureBtn" />
|
|
</div>
|
|
</form>
|
|
|