/***common***/
.mb-10 {
    margin-bottom: 10px;
}

.mr-10 {
    margin-right: 10px;
}

.mt-10 {
    margin-top: 10px;
}

.ml-10 {
    margin-left: 10px;
}

.dk-dialog-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000aa;
    z-index: 10;
}

.dk-action-sheet {
    display: none;
    position: fixed;
    z-index: 11;
    width: 100%;
    bottom: 0;
    background-color: #fff;
    box-sizing: border-box;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.dk-action-sheet-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid #f1f1f1;
    font-size: 20px;
}

.dk-action-sheet-header-title {

}

.dk-common-header-close-btn {
    width: 24px;
    height: 24px;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dk-form-group {
    padding: 0 10px;
    box-sizing: border-box;
}
.dk-form-title{
    padding: 12px 10px 2px 10px;
    color:#888;
    border-bottom: 1px solid #ccc;
    font-size:14px;
    font-weight: bold;
}
.dk-form-item {
    display: flex;
    padding: 6px 10px;
    font-size: 16px;
    color: #555;
    border-bottom: 1px solid #f7f7f7;
}
.dk-form-item:last-child{
    border-bottom:none;
}
.dk-form-item-width100{
    padding:6px 0;
}

.dk-form-item > label {
    width: 25%;
    display: flex;
    align-items: center;

}

.dk-form-item-input {
    flex: 1;

}

.dk-form-item-input > input[type=input],
.dk-form-item-input > input[type=text],
.dk-form-item-input > input[type=number] {
    width: 100%;
    font-size: 16px;
    padding: 8px;
    border: none;
}

.dk-form-item-input > select {
    width: 100%;
    font-size: 14px;
    padding: 8px;
    border: none;
}
.dk-form-item-input > textarea{
    border:1px solid #f1f1f1;
    width:100%;
    background-color: #fdfdfd;
    padding:4px;
    min-height: 50px;
    
}
.dk-form-tip{
    font-size:12px;
    color:#888;
    line-height: 16px;
}

.dk-btn {
    display: block;
    background-color: red;
    padding: 12px;;
    color: #fff;
    width: 100%;
    text-align: center;
    border-radius: 6px;
    box-sizing: border-box;
}

.dk-btn-primary {
    background-color: red;

}

.dk-btn-warn {
    background-color: #ef4f4f;

}

.dk-btn-white {
    background-color: #fff;
    color: #666;
}

.dk-info-dialog {
    display: none;
    position: fixed;
    z-index: 2100;
    top: 20vh;
    left: 50%;
    width: 80vw;
    margin-left: -40vw;
    background-color: #fff;
    border-radius: 5px;
}

.dk-info-dialog-header {
    padding: 14px;
    font-size: 1rem;
    border-bottom: 1px solid #f1f1f1;
    text-align: center;
}

.dk-info-dialog-body {
    padding: 20px;
    font-size: 16px;
    text-align: center;
    line-height: 28px;

}

.dk-info-dialog-btn {
    border-top: 1px solid #f1f1f1;
    display: flex;
    justify-content: space-around;
}

.dk-toast {
    display: none;
    z-index: 10000;
    position: fixed;
    bottom: 20vh;
    left: 50%;
    width: 60vw;
    margin-left: -30vw;
    background-color: #999;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    box-sizing: border-box;
    color: #fff;
    box-shadow: 0px 0px 10px 4px #cccccc;

}

.dk-address-selector {
    display: none;
    position: fixed;
    bottom: 0;
    z-index: 200;
    background-color: #fff;
    width: 100%;
    flex-direction: column;
    padding: 0 10px 10px 10px;
    box-sizing: border-box;
    border-top: 1px solid #f1f1f1;
    font-size:16px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.dk-address-selector-header {
    padding: 10px;
    font-size: 20px;
    border-bottom: 1px solid #f1f1f1;
    text-align: center;
    display: flex;
}
.dk-address-selector-header-title{
    flex:1;
}
.dk-address-selector-header-btn{
    width:40px;
}

.dk-address-selector-result {
    display: flex;
    border-bottom: 1px solid #f1f1f1;

}

.dk-address-selector-result > div {
    width: 25%;
    padding: 10px;
}
.dk-address-selector-result > div.s{
    color:red;
}

.dk-address-selector-list {
    flex: 1;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    overflow-y: scroll;
    justify-content: flex-start;
    align-content: flex-start;
    height: 40vh;

}

.dk-address-selector-list > div {
    color:#444;
    padding:10px;
    display: flex;
    justify-content: center;
    align-items: center;
}