.pop-box {
    /*弹出窗口后，弹出的DIV采用此CSS，保证置于最上层
     z-index控制Z轴的坐标，数值越大，离用户越近
    */
    z-index: 101;
    /*这个数值要足够大，才能够显示在最上层*/
    margin-bottom: 3px;
    display: none;
    position: absolute;
    background: gray;
    border: solid1px #6e8bde;
    position: absolute;
    transform: (-50%, -50%);
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    background: #fff;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#bg {
    display: none;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    /*弹出窗口后，添加遮罩层，采用此CSS，将该层置于弹出DIV和页面层之间
     z-index控制Z轴的坐标，数值越大，离用户越近 rgba(72, 74, 68, 0.46)
    */
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.45);
    filter: alpha(opacity=70);
}

.header {
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    color: #76797c;
    text-align: right;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid #dfdfdf;
    font-size: 14px;
}

.closeIcon {
    display: inline-block;
    padding: 0 5px;
    transform: scale(1.3, 1);
    cursor: pointer;
}
.closeIcon:hover {
    color: #3598db;
}

.modal-footer {
    height: 50px;
    line-height: 50px;
    border-top: 1px solid #dfdfdf;
    text-align: right;
    padding-right: 20px;
}

.request {
    position: absolute;
    right: 100px;
}

.tip {
    position: absolute;
    left: 175px;
    top: 9px;
    cursor: pointer;
}

.tip svg path {
    fill: #a2a7aa;
}

.tip:hover svg path {
    fill: #3598db;
}

.primaryBtn {
    line-height: 1.499;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    padding: 0 15px;
    font-size: 14px;
    border-radius: 4px;
    height: 32px;
    margin-left: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    -webkit-transition: all .3s cubic-bezier(.645, .045, .355, 1);
    transition: all .3s cubic-bezier(.645, .045, .355, 1);
    -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, .015);
    box-shadow: 0 2px 0 rgba(0, 0, 0, .015);
    color: rgba(0, 0, 0, .65);
    background-color: #3598db;
    border-color: #3598db;
    border: 0;
    color: #fff;
}

.closeBtn {
    background-color: #fff;
    border: 1px solid #c9c9c9;
    color: #2c3034;
}

.closeBtn:hover {
    border-color: #3598db;
    color: #3598db;
}

.requestBtn:hover,
.requestBtn:active,
.requestBtn:focus {
    border: 0;
}

.modal-body {
    padding: 30px 50px 20px;
}

.modal-input {
    color: #76797c;
    width: 200px;
    font-variant: tabular-nums;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    list-style: none;
    position: relative;
    display: inline-block;
    padding: 4px 31px 4px 10px;
    height: 36px;
    font-size: 14px;
    line-height: 1.5;
    background-color: #fff;
    background-image: none;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.tooltip {
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: #fff;
    position: absolute;
    padding: 5px 20px;
    width: 220px;
    font-size: 12px;
    left: 160px;
    display: none;
}

.tooltip-arrow {
    position: absolute;
    border-color: transparent;
    border-width: 0 5px 5px;
    border-bottom-color: rgba(0, 0, 0, 0.75);
    top: -5px;
    border-style: solid;
}

.modal-row {
    margin-bottom: 20px;
    position: relative;
}

.errTip {
    position: absolute;
    bottom: -25px;
    color: red;
}

.client_secret {
    display: none;
}

.client_secret>span {
    display: inline-block;
    width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}