* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* 解决ios点击闪烁 */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background: url() center center no-repeat;
    background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    min-height: 100%;
    position: relative;
    font-size: 16px;
    overflow-y: auto;

}

body {
    font-family: arial;
}

select {
    /* 可以设置padding等 */
    /* appearance: none;
          -webkit-appearance: none; */
}

/* 表单样式 */
.form-item {
    position: relative;
    margin: 15px 0;
    font-size: 0;
}

.form-item>label {
    width: 80px;
    display: inline-block;
    font-size: 13px;
    text-align: right;
    padding-right: 5px;
}

.form-item>label[required]::before {
    content: "* ";
    color: firebrick;
}

.form-item>input,
.form-item>select {
    background-color: white;
    height: 23px;
    width: calc(100% - 80px);
    border: 1px solid grey;
    font-size: 13px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
}

.address {
    display: inline-block;
    width: calc(100% - 80px);
    vertical-align: top;
    font-size: 13px;
}

.address select {
    background-color: white;
    border: 1px solid grey;
    font-size: 13px;
    width: 45%;
    height: 23px;
}

.address textarea {
    font-size: 13px;
    width: 100%;
    border: 1px solid grey;
}

/* 提交按钮 */
#sbt,
#cancel {
    background-color: #fdbb2f;
    color: white;
    margin: 10px;
    border: none;
    width: 30%;
    padding: 10px;
}

/* 验证码按钮 */
#send-btn {
    position: absolute;
    right: 0px;
    font-size: 12px;
    line-height: 23px;
    top: 0;
    color: white;
    height: 23px;
    padding: 0 8px;
    background-color: #FDBB2F;
}

/* 弹窗 */
.dialog {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 99;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .3);
    font-size: 16px;
}

.dialog-content {
    top: 50%;
    position: fixed;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
    max-height: 90%;
    overflow-y: auto;
}
.dialog-content .close{
                position: absolute;
                top: 10px;
                right: 10px;
                color: white;
            }
.five-btn {
    background-color: #F76127;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 18px;
    border: none;
    outline: none;
    color: white;
    width: 50%;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    padding: 0 1em;
}

.resize {
    position: absolute;
    z-index: 1;
}
