﻿.el-dialog__wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    margin: 0;
}

.el-dialog {
    position: relative;
    margin: 0 auto 50px;
    background: #fff;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
}

.el-dialog__header {
    padding: 20px 20px 10px;
}

.el-dialog__headerbtn {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0;
    background: 0 0;
    border: none;
    outline: 0;
    cursor: pointer;
    font-size: 16px;
}

.el-dialog__body {
    padding: 30px 20px;
    color: #606266;
    font-size: 14px;
    word-break: break-all;
}

.el-button {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    background: #fff;
    border: 1px solid #dcdfe6;
    color: #606266;
    -webkit-appearance: none;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
    margin: 0;
    -webkit-transition: .1s;
    transition: .1s;
    font-weight: 500;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 4px;
}

.el-button--default {
    padding: 0;
    background-color: #fff;
    border-color: #ddd;
}

.el-button:focus, .el-button:hover {
    color: #409eff;
    border-color: #c6e2ff;
    background-color: #ecf5ff;
}

.el-button--default:hover {
    border-color: #086ee1;
    color: #086ee1;
    background-color: #fff;
}

.content-center {
    text-align: center;
}

.content {
    padding: 0 4px;
    margin-top: -10px;
    font-size: 16px;
    line-height: 28px;
    color: #000;
}

.title {
    font-size: 18px;
    color: #e4571e;
    padding: 0 4px;
}

.icon-xspj {
    width: 1em;
    height: 1em;
    vertical-align: -.15em;
    fill: currentColor;
    overflow: hidden;
}

.el-icon-close:before {
    content: "\e6db";
}

.btn-xspj {
    background: #216afa;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    width: 144px;
    height: 42px;
}

.btn-wrap {
    margin: 32px auto 0;
    text-align: center;
}

.el-dialog__headerbtn .el-dialog__close {
    color: #999;
}

[class*=" el-icon-"], [class^=el-icon-] {
    font-family: element-icons !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: baseline;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar-track {
    background: #fff;
}

.close-btn {
    display: inline-block;
    font-size: 20px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}
.close-btn:hover {
    color: #333;
}

.v-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
    background: #000;
}


/* 弹窗样式 */
/* 弹窗样式 */
.invite-dialog-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1000;
}

.dialog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.invite-dialog {
    position: relative;
    width: 600px;
    max-width: 90%;
    margin: 50px auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    animation: dialogFadeIn 0.3s ease-out;
}

.dialog-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dialog-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.dialog-body {
    padding: 20px;
}

/* 用户信息区域 - 头像在左，文字在右 */
.user-info-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f8ff;
    margin-right: 15px;
}

.user-text-content {
    flex: 1;
}

.user-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #2c7be5;
}

/* 固定文字样式 */
.fixed-text {
    color: #666;
    line-height: 1.5;
}

.first-line {
    font-size: 14px;
}

.second-line {
    margin-top: 10px;
    color: red;
    font-size: 14px;
}

.third-line {
    margin-bottom: 20px;
    margin-left: 75px;
    font-size: 14px;
}

/* 邀请信息框 */
.invite-box {
    padding: 15px;
    border-radius: 6px;
    text-align: left;
}

.code-box {
    background-color: #f0f8ff;
    padding: 15px;
    border-radius: 6px;
    text-align: left;
}

.invite-title {
    font-size: 14px;
    color: #4a90e2;
    margin-bottom: 5px;
    display: inline-flex;
    color:black;
}

.invite-code {
    font-size: 20px;
    font-weight: bold;
    color: #2c7be5;
    margin-bottom: 15px;
    display: inline-flex;
    letter-spacing: 1px;
}

.invite-link {
    padding: 8px 10px;
    border-radius: 4px;
    word-break: break-all;
    font-size: 13px;
    margin-bottom: 15px;
    display: inline-flex;
    color: #2c7be5;
}

/* 按钮区域 */
.button-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0 15px;
}

.copy-all-btn {
    background-color: #ff8400;
    color: white;
    border: none;
    padding: 8px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.copy-all-btn:hover {
    background-color: #3a7bc8;
}

.cancel-btn {
    background-color: #f0f0f0;
    color: #333;
    border: none;
    padding: 8px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.cancel-btn:hover {
    background-color: #e0e0e0;
}

/* 按钮下方文字 */
.button-footer-text {
    text-align: center;
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-top: 10px;
}

@keyframes dialogFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





