* {
    padding: 0;
    margin: 0;
}

body {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    font-size: 16px;
    font-family: '微软雅黑';
}

.container {
    width: 80%;
    margin: 15px auto 0;
    padding: 2% 5%;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.header {
    width: 100%;
    height: 55px;
    background: #0063ab;
}

.header h2 {
    font-size: 22px;
    text-align: center;
    color: #fff;
    line-height: 55px;
}

.top {
    margin-bottom: 20px;
}

.top p {
    font-size: 16px;
    line-height: 32px;
    text-indent: 2em;
}

.question-title {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 30px;
}
.question-title span{
    color: red;
    margin-left: 5px;
}

dl dd {
    margin: 10px 30px;
}

.form-box dd input[type="radio"] {
    width: 20px;
    height: 20px;
    opacity: 0;
    outline: none;
}

.form-box dd input[type="checkbox"] {
    width: 20px;
    height: 20px;
    opacity: 0;
    outline: none;
}

.form-box dd label {
    cursor: pointer;
    position: relative;
}

.form-box dd input[type="radio"]+label::before {
    display: inline-block;
    content: "";
    width: 16px;
    height: 16px;
    border: 1px solid #777777;
    border-radius: 50%;
    background: #fff;
    margin-right: 6px;
    vertical-align: text-bottom;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form-box dd input[type="checkbox"]+label::before {
    display: inline-block;
    content: "";
    width: 16px;
    height: 16px;
    border: 1px solid #777777;
    // border-radius: 50%;
    background: #fff;
    margin-right: 6px;
    vertical-align: text-bottom;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form-box dd input[type="radio"]:checked+label::before{
    background-color: white;
    background-clip: content-box;
    border-color: #79a0ff;
    border-width: 5px;
}
.form-box dd input[type="checkbox"]:checked+label::before {
    background-color: white;
    background-clip: content-box;
    border-color: #79a0ff;
    border-width: 5px;
}

.form-box dd p {
    margin-bottom: 15px;
}

.form-box dd textarea {
    width: 70%;
    min-height: 200px;
    outline: none;
    resize: none;
    padding: 15px;
}

.form-box dd input::-webkit-input-placeholder,
.form-box dd input::placeholder,
.form-box dd textarea::placeholder {
    font-size: 15px;
}

.form-box dd select {
    width: 15%;
    height: 40px;
    font-size: 16px;
    background: #fff;
}

.info input {
    display: inline-block;
    width: 30%;
    height: 45px;
    outline: none;
    margin-top: 20px;
    padding-left: 15px;
}

.sub-btn {
    display: block;
    width: 30%;
    height: 50px;
    background: #0063ab;
    font-size: 18px;
    color: #fff;
    border: none;
    border-radius: 10px;
    margin: 50px auto 0;
}
#self1,#self2,#number{
	width: 58%;
    height: 35px;
    border: 1px solid #c5c5c5;
    padding: 0 15px;
    font-size: 16px;
    color: #464646;
    margin-right: 5px;
}
// #num{
// 	width: 26%;
// }
@media screen and (max-width:768px) {
    .header {
        height: 45px;
    }
    .header h2 {
        font-size: 18px;
        line-height: 45px;
    }
    dl dd {
        margin: 10px 0;
    }
    .form-box dd select {
        width: 28%;
        height: 30px;
    }
    .form-box dd textarea {
        width: 89%;
        height: 145px;
    }
    .info input {
        width: 75%;
        height: 35px;
    }
    .sub-btn {
        width: 86%;
        height: 40px;
    }
}