
/* 表单 */
.form {
    width: 100%;
    /* height: 260px; */
    margin-top: 15px;
    margin-bottom: 30px;
}

.form .label {
    height: 30px;
    line-height: 30px;
    color: #2c4168;
    font-size: 16px;
    font-weight: bold;
}
/* input 输入框样式 */
.form div input {
    min-width: 100%;
    height: 39px;
    line-height: 39px;
    padding: 0 8px;
    font-size: 14px;
    border: 1px solid #d2d2d2;
    border-radius: 4px;
    box-shadow: 0 0 6px #ddd;
    color: #999;
    outline: none;
    margin: 10px 0 15px 0;
}
.form .subitem {
    height: 50px;
    line-height: 50px;
    margin-top: 25px;
    padding-left: 5px;
    float: right;
}

.form .subitem div {
    width: 150px;
    height: 50px;
    float: left;
    margin-right: 20px;
    border-radius: 8px;
    color: #fff;
    position: relative;
    font-size: 18px;
    font-weight: bold;
    /* text-indent: 80px; */
    background-color: #2c4168;
    cursor: pointer;
    text-align: center;
}
/* 按钮样式 */
.form .subitem div:last-child {
    background-color: #2c4168;
}

.form .subitem div span {
    position: absolute;
    top: 13px;
    left: 38px;
}

.btn_icon1 {
    width: 26px;
    height: 26px;
    /* background: url(../images/btn_icon1.png) no-repeat; */
    background-size: 100%;
}

.btn_icon2 {
    width: 23px;
    height: 23px;
    background: url(../images/btn_icon2.png) no-repeat;
    background-size: 100%;
}