/* 全局设定，清除浏览器默认样式值 */
* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

/* 将大盒子放在一个页面居中的位置 */
.box {
    /* position: relative; */
    /* left: 50%;  */
    /* margin-left: -200px;  */
    margin: 100px auto 0;
    width: 550px;
    height: 450px;
    border: 1px solid white;
    background-color: #000000;
    color:#FFFFFF;
}

/* 注意事项 */
.inner {
    width: 100%;
    height: 150px;
    margin-bottom: 50px;
    font-size: 18px;
    font-family: "楷体";
    color:#FFFFFF;
    line-height: 2em;
    /* 2em:因为此处是汉字，汉字是方块字，宽和高的长度相等，所以间距就是两个汉字的高度 */
}

input,
button {
    margin: 0 auto 5px;
    border: 1px solid White;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    color:#000000;
    border-radius: 7px;
}

/* 此处的100%是继承的 第二个 td的宽 */
input {
    width: 100%;
}

button {
    width: 130px;
    margin: 0 5px 0 20px;
    font-family: "Times New Roman";
}

/* input 宽继承此处 */
tr td:last-child{
    width: 300px;
    margin: 0 0 0 10px;
}

.buts{
    margin: 25px auto 0 30px; 
}

