/*#reset部分*/
body,
html {
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar{width:6px;height:6px;background-color:#fefefe}
::-webkit-scrollbar-track{background-color:#fefefe}
::-webkit-scrollbar-thumb{border-radius: 6px;background-color:rgba(69,90,100,0.3)}
/*#reset部分*/
.VIEW-login * {box-sizing: border-box;}
.VIEW-login canvas {position: relative;z-index: 2;pointer-events: none;}
.VIEW-login .tilt {position: absolute; width: 110%; height: 110%; top: -5%; left: -5%; overflow: hidden; }
.VIEW-login .tilt__back,
.VIEW-login .tilt__front {width: 100%; height: 100%; background-position: 50% 50%; background-repeat: no-repeat; background-size: cover; -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.VIEW-login .tilt__back {position: relative;}
.VIEW-login .tilt__front {position: absolute; top: 0; left: 0; }

/* 现代化背景设计 */
.VIEW-login .loginmain {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 添加动态背景效果 */
.VIEW-login .loginmain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx=".5" cy=".5" r=".5"><stop offset="0%" stop-color="%23ffffff" stop-opacity=".1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/><circle cx="900" cy="800" r="80" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* 脉冲动画 */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

/* 主容器现代化设计 */
.VIEW-login .loginmain .main-content{
    display: flex;
    width: 1130px;
    height: 520px;
    position: relative;
    z-index: 9;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.VIEW-login .loginmain .main-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

/* 右侧登录区域现代化设计 */
.VIEW-login .loginmain .main-content .main-right {
    width: 490px;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 0px;
    border-radius: 0px 20px 20px 0px;
    position: relative;
    overflow: hidden;
}

/*.VIEW-login .loginmain .main-content .main-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}*/

.VIEW-login .loginmain .main-content .main-right .main-right-content{
    width: 300px;
    margin: auto;
    text-align: center;
}

.VIEW-login .loginmain .main-content .main-right .login-head{
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.VIEW-login .loginmain .main-content .main-right .login-desc{
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* 表单样式现代化设计 */
.VIEW-login .loginmain .main-content .main-right .login-form .input-group {
    display: flex;
    margin-bottom: 25px;
    width: 100%;
    position: relative;
}

.VIEW-login .loginmain .main-content .main-right .login-form .input-group input{
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border-radius: 12px;
    border: 2px solid rgba(102, 126, 234, 0.1);
    background: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    color: #2c3e50;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.VIEW-login .loginmain .main-content .main-right .login-form .input-group input::placeholder {
    color: #95a5a6;
    font-weight: 400;
}

.VIEW-login .loginmain .main-content .main-right .login-form .input-group .input-img{
    width: 120px;
    height: 50px;
    margin-left: 15px;
    border-radius: 12px;
    border: 2px solid rgba(102, 126, 234, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.VIEW-login .loginmain .main-content .main-right .login-form .input-group .input-img:hover {
    border-color: rgba(102, 126, 234, 0.3);
    transform: scale(1.02);
}

.VIEW-login .loginmain .main-content .main-right .login-form input.input:focus{
    border: 2px solid #667eea;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
    outline: none;
}

.VIEW-login .loginmain .main-content .main-right .login-form .input-group .submit{
    width: 100%;
    height: 52px;
    padding: 0 20px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.VIEW-login .loginmain .main-content .main-right .login-form .input-group .submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.VIEW-login .loginmain .main-content .main-right .login-form .input-group .submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.VIEW-login .loginmain .main-content .main-right .login-form .input-group .submit:hover::before {
    left: 100%;
}

.VIEW-login .loginmain .main-content .main-right .login-form .input-group .submit:active {
    transform: translateY(-1px);
}

/* 底部链接现代化设计 */
.VIEW-login .loginmain .main-content .main-right .touch{
    text-align: center;
    color: #7f8c8d;
    margin-top: 40px;
    font-size: 14px;
    line-height: 1.6;
}

.VIEW-login .loginmain .main-content .main-right .touch a{
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.VIEW-login .loginmain .main-content .main-right .touch a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.VIEW-login .loginmain .main-content .main-right .touch a:hover{
    color: #764ba2;
    transform: translateY(-1px);
}

.VIEW-login .loginmain .main-content .main-right .touch a:hover::after {
    width: 100%;
}

.VIEW-login .loginmain .main-content .main-right .touch .layui-icon{
    font-size: 14px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.VIEW-login .loginmain .main-content .main-right .touch .layui-icon:hover{
    color: #764ba2;
    transform: scale(1.1);
}


.VIEW-login .loginmain .copyright{position: absolute;bottom: 30px;left: 0;right: 0;margin: auto;text-align: center;color: #FFFFFF;}
.VIEW-login .loginmain .copyright a{color: #FFFFFF;margin-left: 5px;}

@media (min-width: 1199px) {
    /* 左侧区域现代化渐变背景 */
    .VIEW-login .loginmain .main-content .main-left{
        flex: 1;
        height: 100%;
        color: #FFFFFF;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
        padding: 40px;
        border-radius: 20px 0 0 20px;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* 添加动态几何图形背景 */
    .VIEW-login .loginmain .main-content .main-left::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: float 20s ease-in-out infinite;
    }

    .VIEW-login .loginmain .main-content .main-left::after {
        content: '';
        position: absolute;
        top: 20%;
        right: 20%;
        width: 100px;
        height: 100px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        animation: pulse 4s ease-in-out infinite;
    }
    .VIEW-login .loginmain .main-content .main-left .name{font-size: 44px;margin: 90px 0 150px;font-weight: bold;}
    .VIEW-login .loginmain .main-content .main-left .introduce .introduce-onw{font-size: 20px;margin-bottom: 17px;}
    .VIEW-login .loginmain .main-content .main-left .introduce .introduce-tuo{font-style:italic;color: #C7C5C5;font-size: 12px;}
}
@media (max-width: 1200px) {
    .VIEW-login .loginmain .main-content {width: 80%;flex-direction: column;height: auto;padding-bottom: 60px;}
    .VIEW-login .loginmain .main-content .main-left .logo img {height: 44px;margin:auto auto 25px;display: block;}
    .VIEW-login .loginmain .main-content .main-left .name,
    .VIEW-login .loginmain .main-content .main-left .introduce {display: none;}
    .VIEW-login .loginmain .main-content .main-right {width: auto;height: auto;border-radius:10px;padding: 20px;}
    .VIEW-login .loginmain .main-content .main-right .login-head {margin-bottom: 10px;}
    .VIEW-login .loginmain .main-content .main-right .main-right-content {max-width: 270px;width: 100%;}
    .VIEW-login .loginmain .main-content .main-right .login-form .input-group .submit {margin-top: 0px;}
}


/* 响应式设计 */
@media (max-width: 768px) {
    .VIEW-login .loginmain .main-content {
        flex-direction: column;
        width: 90%;
        max-width: 400px;
        height: auto;
    }

    .VIEW-login .loginmain .main-content .main-left,
    .VIEW-login .loginmain .main-content .main-right {
        width: 100%;
        border-radius: 20px;
    }

    .VIEW-login .loginmain .main-content .main-left {
        /*height: 200px;*/
        border-radius: 20px 20px 0 0;
    }

    .VIEW-login .loginmain .main-content .main-right {
        border-radius: 0 0 20px 20px;
        padding: 30px 0;
    }

    .VIEW-login .loginmain .main-content .main-right .main-right-content {
        width: 280px;
    }
}

/* 加载动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.VIEW-login .loginmain .main-content {
    animation: fadeInUp 0.8s ease-out;
}


.page-container {
    justify-content: space-between;
    margin: 25px 0px 5px;
}

.ant-advanced-search-form{
    background: white;
    padding: 10px 0px!important;
    margin-bottom: 10px !important;
}


.lead {
    font-weight: 300;
}

.ignore {
    font-size: 14px;
    color: #999;
}

.pad30 {
    padding: 30px !important;
}

.pad20 {
    padding: 20px !important;
}

.pad10 {
    padding: 10px !important;
}

.pad5 {
    padding: 5px !important;
}

.pad0 {
    padding: 0px !important;
}

.pad-tb30 {
    padding: 30px 0 !important;
}

.pad-tb20 {
    padding: 20px 0 !important;
}

.pad-tb10 {
    padding: 10px 0 !important;
}

.pad-tb5 {
    padding: 5px 0 !important;
}

.pad-r30 {
    padding-right: 30px !important;
}

.pad-r20 {
    padding-right: 20px !important;
}

.pad-r10 {
    padding-right: 10px !important;
}

.pad-r5 {
    padding-right: 5px !important;
}

.pad-b30 {
    padding-bottom: 30px !important;
}

.pad-b20 {
    padding-bottom: 20px !important;
}

.pad-b10 {
    padding-bottom: 10px !important;
}

.pad-b5 {
    padding-bottom: 5px !important;
}

.pad-t30 {
    padding-top: 30px !important;
}

.pad-t20 {
    padding-top: 20px !important;
}

.pad-t10 {
    padding-top: 10px !important;
}

.pad-t5 {
    padding-top: 5px !important;
}

.pad-l30 {
    padding-left: 30px !important;
}

.pad-l20 {
    padding-left: 20px !important;
}

.pad-l10 {
    padding-left: 10px !important;
}

.pad-l5 {
    padding-left: 5px !important;
}

.mar30 {
    margin: 30px !important;
}

.mar20 {
    margin: 20px !important;
}

.mar10 {
    margin: 20px !important;
}

.mar5 {
    margin: 20px !important;
}

.mar0 {
    margin: 0px !important;
}

.mar-tb30 {
    margin: 30px 0 !important;
}

.mar-tb20 {
    margin: 20px 0 !important;
}

.mar-tb10 {
    margin: 10px 0 !important;
}

.mar-tb5 {
    margin: 5px 0 !important;
}

.mar-r30 {
    margin-right: 30px !important;
}

.mar-r20 {
    margin-right: 20px !important;
}

.mar-r10 {
    margin-right: 10px !important;
}

.mar-r5 {
    margin-right: 5px !important;
}

.mar-b30 {
    margin-bottom: 30px !important;
}

.mar-b20 {
    margin-bottom: 20px !important;
}

.mar-b10 {
    margin-bottom: 10px !important;
}

.mar-b5 {
    margin-bottom: 5px !important;
}

.mar-b30 {
    margin-top: 30px !important;
}

.mar-t20 {
    margin-top: 20px !important;
}

.mar-t10 {
    margin-top: 10px !important;
}

.mar-t5 {
    margin-top: 5px !important;
}

.mar-l30 {
    margin-left: 30px !important;
}

.mar-l20 {
    margin-left: 20px !important;
}

.mar-l10 {
    margin-left: 10px !important;
}

.mar-l5 {
    margin-left: 5px !important;
}

.bg-gradual-red {
    background: linear-gradient(rgb(255, 163, 162) 0%, rgb(255, 0, 0) 100%);
    color: #ffffff;
}

.bg-gradual-orange {
    background: linear-gradient(rgb(252, 230, 183) 0%, rgb(233, 168, 72) 100%);
    color: #ffffff;
}

.bg-gradual-green {
    background: linear-gradient(rgb(186, 240, 221) 0%, rgb(81, 188, 153) 100%);
    color: #ffffff;
}

.bg-gradual-purple {
    background: linear-gradient(rgb(213, 184, 250) 0%, rgb(143, 98, 201) 100%);
    color: #ffffff;
}

.bg-gradual-pink {
    background: linear-gradient(rgb(252, 183, 190) 0%, rgb(211, 96, 104) 100%);
    color: #ffffff;
}

.bg-gradual-blue {
    background: linear-gradient(rgb(175, 203, 253) 0%, rgb(90, 124, 207) 100%);
    color: #ffffff;
}

.bg-gradual-cyan {
    background: linear-gradient(rgb(165, 226, 252) 0%, rgb(21, 140, 191) 100%);
    color: #ffffff;
}


.text-red,
.line-red,
.lines-red {
    color: #ff0000;
}

.text-orange,
.line-orange,
.lines-orange {
    color: #ff9900;
}

.text-yellow,
.line-yellow,
.lines-yellow {
    color: #fbbd08;
}

.text-olive,
.line-olive,
.lines-olive {
    color: #8dc63f;
}

.text-green,
.line-green,
.lines-green {
    color: #4aac33;
}

.text-cyan,
.line-cyan,
.lines-cyan {
    color: #1cbbb4;
}

.text-blue,
.line-blue,
.lines-blue {
    color: #0154a4;
}

.text-purple,
.line-purple,
.lines-purple {
    color: #9b23f4;
}

.text-mauve,
.line-mauve,
.lines-mauve {
    color: #9c26b0;
}

.text-pink,
.line-pink,
.lines-pink {
    color: #e03997;
}

.text-brown,
.line-brown,
.lines-brown {
    color: #a5673f;
}

.text-grey,
.line-grey,
.lines-grey {
    color: #8799a3;
}

.text-gray,
.line-gray,
.lines-gray {
    color: #999999;
}

.text-black,
.line-black,
.lines-black {
    color: #333333;
}

.text-white,
.line-white,
.lines-white {
    color: #ffffff;
}

.setting-block{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    height: 120px;
    margin: auto;
    margin-bottom: 10px;
    font-size: 26px;
    color: #ffffff;
    cursor: pointer;
}

.setting-block .footer{
    font-size: 12px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
    padding: 3px 0;
    background: rgba(255,255,255,0.3);
}
.setting-block .footer:hover{
    background: rgba(0,0,0,0.15);
}

.avatar-uploader-60 {
    width: 60px;
    height: 60px;
}
.avatar-uploader-60 .el-upload-list{
    width: 60px;
    height: 60px;
}
.avatar-uploader-60 .el-upload-list .el-upload{
    width: 60px;
    height: 60px;
}
.avatar-uploader-60 .el-upload-list .el-upload-list__item{
    width: 60px;
    height: 60px;
}
.mar-l10{
    margin-right: 10px;
}
.mar-l20{
    margin-right: 20px;
}
.mar-l30{
    margin-right: 30px;
}
.mar-r10{
    margin-right: 10px;
}
.mar-r20{
    margin-right: 20px;
}
.mar-r30{
    margin-right: 30px;
}

.white-space{
    white-space: pre-wrap;
}

.inline{
    display: inline-block;
}

.flex-row{
    display: flex;
    flex-direction: row;
}
.flex-column{
    display: flex;
    flex-direction: column;
}

/*.el-table__cell .cell {*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    align-items: center;*/
/*}*/
.table-header{
    display: inline-block;
    flex: 1;
    width: 100%;
}
.pointer{
    cursor: pointer;
}

.flow ul .receiv {
    position: relative;
    height: auto;
    margin-bottom: 10px;
    min-height: 68px;
}

.flow ul .receiv .chat-use {
    width: 100%;
    min-height: 68px;
}

.flow ul .receiv .chat-use img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    margin-top: 10px;
}

.flow ul .receiv .chat-use cite {
    position: absolute;
    left: 60px;
    top: -2px;
    width: auto;
    line-height: 24px;
    color: #999;
    text-align: left;
}

.flow ul .receiv .chat-use cite i {
    font-style: normal;
    padding-left: 15px;
}

.flow ul .receiv .chat-text {
    position: relative;
    line-height: 22px;
    padding: 8px 15px;
    background: #e2e2e2;
    color: #333;
    display: inline-block;
    left: 60px;
    top: -40px;
    width: 600px;
    word-wrap: break-word;
}

.flow ul .receiv .chat-text:after {
    content: '';
    position: absolute;
    left: -10px;
    top: 13px;
    width: 0;
    height: 0;
    border-style: solid dashed dashed;
    border-color: #e2e2e2 transparent transparent;
    border-width: 10px;
    overflow: hidden;
}

.flow ul .send {
    position: relative;
    height: auto;
    margin-bottom: 10px;
    min-height: 68px;
    text-align: right;
}

.flow ul .send .chat-use {
    width: 100%;
    min-height: 68px;
}

.flow ul .send .chat-use img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    margin-top: 10px;
    float: right;
}

.flow ul .send .chat-use cite {
    position: absolute;
    right: 60px;
    top: -2px;
    width: auto;
    line-height: 24px;
    color: #999;
}

.flow ul .send .chat-use cite i {
    font-style: normal;
    padding-right: 15px;
}

.flow ul .send .chat-text {
    position: absolute;
    line-height: 22px;
    padding: 8px 15px;
    background: #e2e2e2;
    color: #333;
    display: inline-block;
    right: 60px;
    top: 30px;
}

.flow ul .send .chat-text:after {
    content: '';
    position: absolute;
    right: -10px;
    top: 13px;
    width: 0;
    height: 0;
    border-style: solid dashed dashed;
    border-color: #e2e2e2 transparent transparent;
    border-width: 10px;
    overflow: hidden;
}

.chat {
    width: 100%;
    height: auto;
}

.chat textarea {
    width: 98%;
}

.portlet {
    margin-bottom: 0 !important;
}

.my-ul {
    position: relative;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.absolute-center {
    position: absolute;

}
.absolute-bottom-00 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.display-none{
    display: none;
}
.block-mask{
    background: #7b7c7f;
    color: white;
    font-size: smaller;
    z-index: 1;
    height: 20px;
    line-height: 20px;
}

.block-hover:hover .hover-show{

    display: block;
}
.text-center{
    text-align: center;
}
.block-border{
    border: 1px solid #e2e2e2;
    margin: 5px;
}
.block-border.select{
    border: 1px solid #409eff;
}

.hide-upload .el-upload--picture-card{
    display: none !important;
}
.color-primary{
    color:  #409eff;
}
.new-news {
    position: fixed;
    right: 52px;
    z-index: 10;
    padding: 10px 15px;
    color: #0bb20c;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background-color: white;
}

.new-news:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -18px;
    left: 45%;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top: 10px solid white;
}
.table-column-expand .column-expand .cell{
    display: flex;
    align-items: center;
}
.display-flex{
    display: flex;
}

.cell-append-small .el-input-group__append{
    padding: 0 10px !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type="number"] {
    -moz-appearance: textfield;
}

.table-column-expand.el-table__row--level-0 {
    background: #F9F9F9 !important;
    height: 30px !important;
}
.table-warning-row{
    background-color: rgb(253, 246, 236) !important;
}
.table-warning-row td.el-table__cell{
    background: unset !important;
}