/***********************身份选择和标类型选择样式********************************/
.scUserIdenSelBox {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    display: none;
}

.scUserIdenSelWrap {
    width: 3.34rem;
    height: 3.38rem;
    background: url("../../images/loginBg.png") no-repeat;
    background-size: 100% 100%;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -1.67rem;
    margin-top: -1.68rem;
    z-index: 10;
}

.scUserIdenSelBox .userIdenSelClose {
    width: 20px;
    height: 20px;
    background: url("../../images/closeBtn_black.png") no-repeat;
    background-size: 100% 100%;
    position: absolute;
    right: 0.2rem;
    top: 0.15rem;
    cursor: pointer;
}

.identityNameWrap1 {
    width: 2.48rem;
    height: 0.36rem;
    background-color: #161719;
    position: absolute;
    left: 50%;
    margin-left: -1.24rem;
    top: -0.1rem;
    border-radius: 0.03rem 0.03rem;
    font-size: 0.16rem;
    color: white;
}

.identityNameTypeTop1 {
    width: 2.48rem;
    height: 0.36rem;
    position: absolute;
    left: 0;
    top: 0;
}

.identityNameTypeNow1 {
    width: 2.48rem;
    height: 0.36rem;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 0.36rem;
    font-size: 0.16rem;
    text-indent: 0.2rem;
}

.identityNameTypes1 {
    width: 2.48rem;
    height: auto;
    position: absolute;
    left: 0;
    top: 0.36rem;
    z-index: 15;
    display: none;
}

.identityNameTypeBtn1 {
    width: 0.42rem;
    height: 0.36rem;
    position: absolute;
    right: 0;
    top: 0;
    background: url("../../images/arrowDown01.png") no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
}

.identityNameType1 {
    width: 2.48rem;
    height: 0.36rem;
    background-color: rgba(0, 0, 0, 1.0);
    line-height: 0.36rem;
    font-size: 0.16rem;
    text-indent: 0.2rem;
}

.identityNameType1.selected {
    color: #2a6496;
}

.identityNameWrap1 .identityNameType1:hover {
    background-color: #555555;
}

/* 二维码部分 */
.example.loginType {
    position: absolute; /* 绝对定位，定位相对于父容器 */
    top: 50%; /* 垂直方向上居中 */
    left: 50%; /* 水平方向上居中 */
    width: 350px; /* 设置定宽 */
    height: 350px; /* 设置定高 */
    background-color: rgb(241, 231, 231);
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    box-sizing: border-box; /* 确保 padding 不会影响元素的宽高 */
    text-align: center;
    transform: translate(-50%, -50%); /* 将元素本身的宽高移动到其中心，确保完全居中 */
    z-index: 1; /* 确保该元素位于其他元素之上 */
}

.sweepcode {
    display: flex; /* 设置为 flexbox 布局 */
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    height: 100%; /* 保证该容器有高度，便于垂直居中 */
}

.renovate {
    display: flex; /* 让 renovate 本身也是 flex 容器，方便子元素的布局 */
    flex-direction: column; /* 子元素垂直排列 */
    justify-content: center; /* 确保 renovate 内部元素在竖直方向也居中 */
    align-items: center; /* 水平居中 */
    text-align: center; /* 确保文本水平居中 */
}

#mcertqrcode {
    margin: 0 auto 20px;
    border: 1px solid #ddd;
}

.renovate p {
    font-size: 14px;
    color: #666;
}

.renovate em {
    font-weight: bold;
    color: #333;
}

.downloadmcert {
    color: #007BFF;
    cursor: pointer;
}

.downloadmcert:hover {
    text-decoration: underline;
}

/* 二维码失效提示 */
.reinner.hidden {
    display: none;
}

.reinner {
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    border-radius: 8px;
}

.fresh {
    display: inline-block;
    margin-top: 10px;
    color: #007BFF;
    cursor: pointer;
}

.fresh:hover {
    text-decoration: underline;
}

/* 其他登录方式 */
.other-login {
    margin-top: 20px;
}

.other-login-tt {
    font-size: 16px;
    margin-bottom: 10px;
}

.swiper-box {
    position: relative;
}

.arrow-left, .arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #007BFF;
    color: #fff;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
}

.arrow-left {
    left: -40px;
}

.arrow-right {
    right: -40px;
}

.swiper-container {
    overflow: hidden;
    width: 100%;
}

.swiper-wrapper {
    display: flex;
}

/* 扫码成功提示 */
.success.hidden {
    display: none;
}

.success {
    margin: auto;
    text-align: center;
}

.success p {
    margin: 10px 0;
}

.success .codeSuc{
    background: url("../images/phone2.png") no-repeat center 55px;
    text-align: center;
    line-height: 24px;
    margin:auto;
    font-size: 14px;
}

.green {
    font-weight: bold;
}

.blue {
    color: #007BFF;
    cursor: pointer;
}

.blue:hover {
    text-decoration: underline;
}

