.dialog-custom {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    overflow-y: scroll;
    z-index: 1001;
    display: none;
}

.dialog-box-content {
	position: absolute;
	top: 0;
	left: 50%;
	width: 800px;
    background: #fff;
    box-sizing: border-box;
    padding: 20px 40px;
    transform: translate(-50%,0);
}

.dialog-close-ico {
	position: absolute;
    top: 0;
    right: -40px;
    width: 40px;
    height: 40px;
    background: url(../images/cel.png) no-repeat center center;
    background-size: 40px 40px;
    cursor: pointer;
}

.dialog-cont-box {
	width: 100%;
	color: #333;
}

.dialog-cont-box h3 {
	text-align: center;
    font-size: 24px;
    font-weight: 600;
}

#custom-form {
	padding-top: 30px;
}

#custom-form h5 {
	font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

.goods-checboxs {
	width: 70%;
    margin: 0 auto;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.label-check {
	display: -webkit-flex;
    justify-content: space-between;
    cursor: pointer;
}

.label-check>label {
	font: 400 15px microsoft yahei;
    user-select: none;
    color: #b0adad;
    position: relative;
    padding-left: 20px;
    text-align: right;
    cursor: pointer;
}

.label-check>label:before {
	content: "";
    display: table;
    width: 4px;
    height: 8px;
    position: absolute;
    z-index: 99;
    top: 13px;
    left: 5px;
    border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    -webkit-transform: rotate(
45deg
) scale(0);
    transform: rotate(
45deg
) scale(0);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.label-check>label:after {
	content: "";
    position: absolute;
    top: 50%;
    margin-top: -7.5px;
    width: 15px;
    height: 15px;
    border-radius: 2px;
    left: 0;
    border: 1px solid #dcdee2;
}

.label-check label.checked:before {
	-webkit-transform: rotate(
45deg
) scale(1);
    transform: rotate(
45deg
) scale(1);
}

.label-check input[type=checkbox]:checked + label:after{
    background-color: #fb8500;
    border-color: #fb8500;
}

.label-check input[type=checkbox] {
	margin: 0 2px 0 0;
    vertical-align: -2px;
    display: none;
}

.input-list {
	width: 70%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 20px 0;
}

.input-list .form-group {
    margin-left: 0;
    margin-right: 0;
    height: 45px;
    line-height: 45px;
    border-bottom: 1px solid #dedede;
    margin-bottom: 0;
}

.input-list .form-group .control-label {
    width: 90px;
    float: left;
    font-size: 15px;
    text-align: left;
    padding-top: 0;
}

.input-list .form-group .input-item {
    width: calc(100% - 90px);
    float: left;
}

.input-list .form-group .input-item .form-control {
    height: 44px;
    border: none;
    box-shadow: none;
    display: block;
}

.input-list .form-textarea {
    border-bottom: none;
    height: auto;
}

.input-list .form-textarea .control-label {
    width: 100%;
}

.input-list .form-textarea .input-item {
    width: 100%;
}

.input-list .form-textarea .input-item .form-control {
    height: auto;
    line-height: 24px;
    border: 1px solid #dedede;
}

.input-list .form-code {
    margin-top: 20px;
    border-bottom: none;
}

.input-list .form-code .input-item {
    width: 100%;
}

.input-list .form-code .input-item #checkcode {
    width: 50%;
    float: left;
    border: 1px solid #dedede;
}

.input-list .form-code .input-item #checkCodeImg {
    margin-left: 5%;
}

.input-list .submit-btn {
    border-bottom: none;
    margin-top: 20px;
}

.input-list .submit-btn .input-item {
    width: 100%;
}

.input-list .submit-btn .btn-primary {
    background-color: #fb8500;
    border-color: #fb8500;
}

.input-list .input-item #city-s {
    width: 100%;
    padding: 0 12px;
}

.input-list .input-item #city-s select {
    width: 30%;
    line-height: 40px;
    height: 40px;
    font-size: 14px;
    color: #555;
    border: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
}

.input-list .input-item #city-s select:focus {
    outline: none;
}

.input-list .input-item #city-s select::-ms-expand { 
    display: none;
}

@media (max-width: 900px) {
    .dialog-custom {
        top: 60px;
    }
    .dialog-cont-box h3,#custom-form h5 {
        font-size: 16px;
    }
    .label-check>label {
        font-size: 12px;
    }
    .dialog-box-content {
        width: 100%;
        left: 0;
        transform: translate(0,0);
        padding: 20px 10px;
    }
    .goods-checboxs,.input-list {
        width: 100%;
    }
    #custom-form {
        padding-top: 10px;
    }
    .input-list .form-group .control-label,.input-list .form-group .input-item .form-control,.input-list .input-item #city-s select {
        font-size: 12px;
    }
    .input-list .form-group .control-label {
        width: 80px;
    }
    .input-list .form-group .input-item {
        width: calc(100% - 80px);
    }
    .input-list .form-textarea .input-item,.input-list .form-code .input-item,.input-list .submit-btn .input-item {
        width: 100%;
    }
    .form-control {
        padding: 6px 5px;
    }
    .dialog-close-ico {
        top: 5px;
        right: 5px;
        width: 28px;
        height: 28px;
        background-size: 28px 28px;
    }
    .input-list .form-code .input-item #checkCodeImg {
        width: 100px;
    }
}