/*dialog（消息框）*/

.showModal-bg {
    width: 100%;
    height: 100%;
    z-index: 9990;
    background-color: rgba(0, 0, 0, .6);
    position: fixed;
    top: 0;
    left: 0;
}

.showModal-content {
    /* width: 70%; */
    width: 280px;
    background-color: #fff;
    border-radius: 6px;
    position: fixed;
    z-index: 9991;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: hidden;
    padding-top: 8px;
}

.showModal-content .title {
    padding: 8px 10px;
    line-height: 1.6;
    color: #000;
    text-align: center;
    font-weight: bold;
}

.showModal-content .text {
    padding: 10px;
    line-height: 1.5;
    color: #666;
    text-align: center;
}

.showModal-content .btn-box {
    background-color: #fafafa;
    line-height: 40px;
    text-align: center;
    color: #888;
    font-weight: bold;
    margin-top: 4px;
    cursor: pointer;
}

.showModal-content .btn-box .enterText {
    color: #48291a;
}

.showModal-content .fs14 {
    font-size: 14px;
}

.showModal-content .inputCode {
    display: block;
    height: 38px;
    line-height: 38px;
    padding: 0 8px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    font-size: 14px;
    width: 100%;
}

.showModal-content .imgCode {
    width: 100px;
    display: block;
    height: 38px;
    margin: 0;
}

.showModal-content .inputGroup {
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}


/*线条*/

.bottom-line,
.right-line,
.top-line,
.left-line {
    position: relative;
}

.bottom-line:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5);
}

.top-line:before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5);
}

.right-line:after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #ddd;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: scaleX(.5);
    transform: scaleX(.5);
}

.left-line:before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #ddd;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: scaleX(.5);
    transform: scaleX(.5);
}

.bottom-line.main-line:after,
.top-line.main-line:before,
.left-line.main-line:before,
.right-line.main-line:after {
    background-color: #a7a7aa;
}


/*线条 end*/


/*flex布局*/

.flex-row {
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.flex-col {
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.flex-full {
    -webkit-flex: 1;
    flex: 1;
}

.flex-inline {
    display: -webkit-inline-flex !important;
    display: inline-flex !important;
}

.flex-top {
    -webkit-align-items: flex-start;
    align-items: flex-start;
}


/*flex布局 end*/