@charset "UTF-8";
/*---------- 弹窗公共样式 ----------*/
.mask {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(85, 85, 85, .6);
}

.window {
    position: absolute;
    left: 50%;
    top: 50%;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.window .btn-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    margin: 10px;
    background: url("../../images/onewebsitehandle/icon-window-close-grey.svg") no-repeat center center/cover;
    cursor: pointer;
}

.window h4 {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.window .window-inner {
    padding: 30px;
}

/*---------- 切换角色弹窗 ----------*/
.switch-roles .window {
    width: 260px;
    height: 320px;
    margin-left: -130px;
    margin-top: -160px;
}

.switch-roles .window .window-inner {
    padding: 30px 20px 0;
}

.switch-roles .roles-list {
    width: 100%;
    height: 269px;
    padding: 30px 0;
    box-sizing: border-box;
}

.switch-roles ul {
    height: 100%;
    padding: 0 10px;
    overflow-y: auto;
}

.switch-roles ul li {

}

.switch-roles ul li button {
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
    padding: 5px 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    color: #e3c597;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: #003c88;
    user-select: none;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.switch-roles ul li button:hover {
    background: #003c88;
    opacity: .9;
}

.switch-roles ul li button:active {
    border-color: #adadad;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}

.switch-roles ul li span {
    margin-left: 20px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.switch-roles ul li span:hover {
    color: #2487c8;
}

/*---------- 一事联办服务二维码弹窗 ----------*/
.service-no-access .window {
    width: 260px;
    height: 320px;
    margin-left: -130px;
    margin-top: -160px;
}

.service-no-access .qr-code-box {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 35px auto 20px;
}

.service-no-access .qr-code-box span {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
}

.service-no-access .qr-code-box span:nth-child(1) {
    left: 0;
    top: 0;
    border-left: 1px solid #003c88;
    border-top: 1px solid #003c88;
    border-top-left-radius: 4px;
}

.service-no-access .qr-code-box span:nth-child(2) {
    right: 0;
    top: 0;
    border-right: 1px solid #003c88;
    border-top: 1px solid #003c88;
    border-top-right-radius: 4px;
}

.service-no-access .qr-code-box span:nth-child(3) {
    left: 0;
    bottom: 0;
    border-left: 1px solid #003c88;
    border-bottom: 1px solid #003c88;
    border-bottom-left-radius: 4px;
}

.service-no-access .qr-code-box span:nth-child(4) {
    right: 0;
    bottom: 0;
    border-right: 1px solid #003c88;
    border-bottom: 1px solid #003c88;
    border-bottom-right-radius: 4px;
}

.service-no-access .qr-code {
    position: initial;
    width: 150px;
    height: 150px;
    padding: 8px;
    box-sizing: border-box;
}

.service-no-access .qr-code img {
    display: block;
    width: 134px;
    height: 134px;
}

.service-no-access p {
    font-size: 12px;
    color: #999;
    text-align: center;
}