@charset "UTF-8";
/*AI就业助手 start*/
#learn{
    position:fixed;
    bottom:0;
    width:100%;
    min-width:1400px;
    height:calc(100% - 140px);
    background:url(../images/ai_bg.jpg) no-repeat center;
    background-size:100% 100%;
    overflow:hidden;
    box-sizing: border-box;
}
/*左 start*/
.left-sidebar{
    position:absolute;
    top:25px;
    left:25px;
    width:280px;
    height:calc(100% - 50px);
    background-color:#fff;
    border-radius:8px;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    padding:20px;
    overflow:hidden;
    box-sizing: border-box;
}
.first-title{
    width:100%;
    margin:20px auto 30px;
    text-align: center;
}
.first-title h1{
    color:#333;
    font-size:24px;
    font-weight:bold;
    margin:15px auto;
}
.first-title p{
    color:#666;
    line-height:24px;
}
.nav-item{
    width:100%;
    padding:10px 15px;
    background:#fff7f7;
    border-radius:5px;
    border-left:3px solid transparent;
    line-height:30px;
    transition:all 0.3s;
    margin-bottom:12px;
    cursor:pointer;
    overflow:hidden;
    box-sizing: border-box;
}
.nav-item.active {
    background:#fff7f7;
    color:#fb5323;
    border-left-color:#fb5323;
}
.nav-item img{
    float:left;
    margin-right:8px;
}
/*左 end*/

/*新建对话 start*/
.main-content{
    position:absolute;
    top:25px;
    right:0;
    width:calc(100% - 330px);
    height:calc(100% - 50px);
    padding:0 25px 0 0;
    overflow-y:auto;
    box-sizing: border-box;
}
.page-content{
    position:relative;
    width:100%;
    height:100%;
    margin:0 auto;
}
/*输入框 start*/
.ai-header {
    width:100%;
    font-size:24px;
    font-weight: bold;
    color: transparent;
    background: linear-gradient(90deg, #fb5323, #f72d7e, #548aee, #6ed27e, #e43232);
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: gradientMove 2s infinite linear;
    text-align: center;
    margin-bottom:15px;
}
/* @keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
} */
.ai-seek{
    background: #fff;
    border-radius:12px;
    border:1px solid #fb5323;
    overflow: hidden;
}
.ai-textarea{
    width:100%;
    padding:15px;
    font-size:14px;
    line-height: 1.5;
    border:none;
    outline:none;
    resize:none;
    box-sizing: border-box;
}
.ai-textarea::placeholder {
    color:#9ca3af;
}
.ai-footer {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 15px;
}
.ai-label{
    color:#333;
    font-size:14px;
    padding:5px 15px;
    border-radius:40px;
    border:1px solid #ccc;
    cursor: pointer;
}
.ai-label.sel{
    background:#fff7f7;
    border-color:#fb5323;
    color:#fb5323;
}
.send-btn{
    width:35px;
    height:35px;
    line-height:35px;
    background:#fb5323;
    border-radius:5px;
    border:none;
    padding:0; 
    text-align: center;
    cursor:pointer;   
}
.send-btn i{
    color:#fff;
    font-size:18px;
}
.send-btn:hover {
    background:#f7400c;
}
.send-btn:disabled{
    background:#ff997c;
    cursor:not-allowed;
}
.agreement{
    font-size:13px;
    color:#6b7280;
    margin-top:8px;
    text-align:center;
}
.agreement a{
    color:#fb5323;
    text-decoration:none;
}
.agreement a:hover{
    text-decoration:underline;
}
/*输入框 end*/

/*推荐主题 start*/
.ai_title{
    width:100%;
    margin:20px auto 10px;
    text-align:center;
}
.category-list {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:10px;
}
.category-item {
    padding:8px 18px;
    border-radius:20px;
    background:#fff;
    box-shadow:0 0 8px rgba(0,0,0,0.08);
    color:#333;
    cursor: pointer;
    transition: all 0.3s;
}
.category-item:hover {
    background:#fff1f1;
}
.category-item.active {
    background:#fb5323;
    color: white;
}

.hot-questions-container{
    position:relative;
    height:355px;
    margin-top:15px;
    overflow: hidden;
}
.questions-wrapper{
    position:relative;
    height:100%;
    overflow:hidden;
}
.questions-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:15px;
    position:absolute;
    width:100%;
    animation:seamlessScroll 20s linear infinite;
}
.question-item {
    display:flex;
    align-items:center;
    height:50px;
    line-height:50px;
    padding:0 15px;
    background:#fff;
    border-radius:5px;
    box-shadow:0 0 6px rgba(0,0,0,0.08);
    color:#555;
    font-size:14px;
    cursor:pointer;
    transition: all 0.3s;
    overflow:hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.question-item .question-icon{
    float:left;
    margin-right:5px;
}
.question-item .question-icon img{
    width:25px;
}
.question-item:hover {
    color:#fb5323;
}
/*推荐主题  end*/

/* 无缝循环滚动动画 */
@keyframes seamlessScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* 悬停时暂停滚动 */
.questions-wrapper:hover .questions-grid,
.question-item:hover ~ .questions-grid {
    animation-play-state: paused;
}

/*AI职业规划 start*/
.second-title{
    width:100%;
    text-align:center;
}
.second-title h1{
    width:100%;
    font-size:24px;
    font-weight: bold;
    color:transparent;
    background: linear-gradient(to right, #fb5323, #f72d7e);
    background-size: 150% 100%;
    background-clip: text;
    -webkit-background-clip: text; 
    text-align: center;
    margin-bottom:10px;
}
.second-title p span{
    color:#fb5323;
    margin:0 5px;
}
.chat-container{
    position:absolute;
    top:75px;
    width:100%;
    height:calc(100% - 260px);
    padding:6px 20px 0;
    overflow-y:auto;
    box-sizing: border-box;
}
.chat-message{
    position:relative;
    margin-bottom:20px;
}
.chat-message.user{text-align:right;}
.chat-message.ai{text-align:left;}
.chat-message .message-content{
    position:relative;
    display: inline-block;
    max-width:calc(100% - 60px);
    min-height:50px;
    font-size:15px;
    line-height:1.5;
    padding:15px 20px;
    border-radius:12px;
    box-sizing: border-box;
}
.chat-message.user .message-content{
    background:#fb5323;
    border:1px solid #fff;
    margin-right:60px;
    color: #FFFFFF;
}
.chat-message.ai .message-content{
    background:#fff;
    border:1px solid #ddd;
    margin-left:60px;
}
.chat-message.ai .message-content::before{
    content: '';
    position:absolute;
    left:-12px;
    top:10px;
    width: 0;
    height: 0;
    border:5px solid transparent;
    border-right-width:6px;
    border-color:transparent #ddd transparent transparent;
}
.chat-message.user .message-content::before{
    content: '';
    position:absolute;
    right:-12px;
    top:10px;
    width: 0;
    height: 0;
    border:5px solid transparent;
    border-left-width:6px;
    border-color:transparent transparent transparent #fb5323;
}
.ai-touxiang{
    position: absolute;
    left: 0;
    top: 0;
    width:50px;
    height:50px;
    border-radius:50%;
    background:url(../images/ai_touxiang.png) no-repeat center;
    background-size:cover;
    border:1px solid #fff;
    box-sizing: border-box;
}
.user-touxiang{
    position: absolute;
    right: 0;
    top: 0;
    width:50px;
    height:50px;
    border-radius:50%;
    background:url(../images/user_touxiang.png) no-repeat center;
    background-size:cover;
    border:1px solid #fff;
    box-sizing: border-box;
}
.message-content h2{
    color:#fb5323;
    font-size:16px;
    font-weight:bold;
    margin-bottom:10px;
}
.message-content p{
    color:#333;
    line-height:1.5;
}
.chat-message.user p{
    color:#fff;
}
.question-input{
    position:absolute;
    bottom:0;
    width:100%;
}
/*AI职业规划 start*/

/*AI简历生成 start*/
.resume-message{
    position:absolute;
    top:75px;
    width:100%;
    height:calc(100% - 145px);
    box-sizing: border-box;
}
.resume-box{
    position:absolute;
    width:100%;
    height:calc(100% - 25px);
    padding-right:10px;
    overflow-y:auto;
    box-sizing: border-box;
}
.form-section{
    background:#fff;
    padding:25px;
    border-radius:8px;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    margin-bottom:20px;
}
.section-title{
    display:flex;
    align-items:center;
    color:#fb5323;
    font-size:18px;
    font-weight:bold;
    border-bottom:1px solid #f0f0f0;
    padding-bottom:10px;
    margin-bottom:20px;
}
.section-title i{
    margin-right:8px;
    color:#fb5323;
    font-size:18px;
    font-weight:bold;
}
#one .layui-form-label{width:105px;}
#one .layui-input-block{margin-left:135px;}
.layui-form-checked span,
.layui-form-checked:hover span{
    background:#fb5323;
}
.layui-form-checked i,.layui-form-checked:hover i,
.layui-form-radio>i:hover, .layui-form-radioed>i{
    color:#fb5323;
}
.layui-laydate .layui-this{
    background:#fb5323!important;
}
.experience-card{
    border-radius:6px;
    padding:20px;
    margin-bottom: 15px;
    background-color:#fff7f7;
}
.card-title {
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-weight:600;
    margin-bottom:15px;
    color:#333;
}
.card-title .layui-btn{
    font-size:12px;
}
.required-mark{
    color:#ff5722;
    margin-right: 4px;
}
.form-tips{
    color:#999;
    font-size: 12px;
    margin-top: 5px;
}
.layui-form-label{text-align:left;}
.layui-input, .layui-select,
.layui-textarea {border-radius:4px;}
.add-btn-box {
    text-align:center;
    margin-top:15px;
}
.add-btn-box button{
    background:#fb5323;
    border-color:#fb5323;
    border-radius:6px;
    color:#fff;
}
.add-btn-box button:hover{
    opacity:0.9;
    color:#fff;
    border-color:#fb5323;
}
.action-btns{
    position:fixed;
    bottom:25px;
    width:calc(100% - 410px);
    background-color:#fff;
    border-radius:8px;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    padding:20px;
    text-align:center;
}
.action-btns button{
    border-radius:6px;
}
/*AI简历生成 end*/

/*AI简历诊断 start*/
.diagnosis-content{
    position:absolute;
    top:75px;
    width:100%;
    background:#fff;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0, 0, 0, 0.08);
    padding:0 20px 0;
    overflow:hidden;
    box-sizing:border-box;
}
.left-panel, .right-panel{
    flex:1;
    min-width:300px;
    padding:25px 10px;
}
.right-panel{
    padding:0 10px 20px;
}
.panel-title{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:18px;
    font-weight:bold;
    color:#fb5323;
    margin-bottom: 20px;
    padding-bottom:15px;
    border-bottom: 2px solid #f0f0f0;
}
.right-panel .panel-title{
    margin-bottom:5px;
}
.panel-title i,.step-title i{
    color:#fb5323;
    font-size:24px;
}
.upload-area {
    border:3px dashed #ddd;
    border-radius:10px;
    padding:5px 20px 20px;
    text-align:center;
    cursor:pointer;
    transition:all 0.3s;
    margin-bottom:20px;
}
.upload-area:hover, .upload-area.dragover {
    border-color:#fb5323;
    background-color:#fff7f7;
}
.upload-icon {
    font-size:4rem;
    color:#fb5323;
    margin-bottom:5px;
}
.upload-icon i{
    font-size:80px;
}
.upload-text {
    font-size:16px;
    margin-bottom: 10px;
    color: #555;
}
.upload-subtext {
    color: #888;
    margin-bottom:15px;
}
.file-input {
    display: none;
}
.btn {
    display: inline-block;
    background: #fb5323;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    font-size:15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}
.btn:hover {
    transform:translateY(-2px);
    box-shadow:0 5px 15px rgba(251, 83, 35, 0.3);
}
.btn:active {
    transform: translateY(0);
}
.diagnosis-content .btn-secondary {
    background: #5f6368;
    border:0;
    color:#fff;
}
.diagnosis-content .btn-secondary:hover {
    background: #505357;
}
.btn-full {
    width: 100%;
    text-align: center;
    margin-top:15px;
}
.btn-full i{font-size:18px;}
.file-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding:15px;
    margin-top:15px;
    display: none;
}
.file-info.show {
    display: block;
}
.file-name {
    font-weight: 600;
    color: #fb5323;
    word-break: break-all;
}
.file-size {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}
.resume-preview {
    max-height:300px;
    background:#f8f9fa;
    border-radius: 0px;
    padding:20px;
    margin-top:20px;
    overflow-y:auto;
}
.resume-preview h3 {
    color:#fb5323;
    font-size:18px;
    font-weight: bold;
    margin-bottom:10px;
}
.resume-preview h3 i{
    color:#fb5323;
    font-size:22px;
    margin-right:5px;
}
.resume-text {
    font-size:15px;
    line-height:1.7;
    color: #444;
}
.diagnosis-results {
    margin-top:0;
}
.score-display {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fbff, #e8f0fe);
    border-radius: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}
.score-display.show {
    opacity: 1;
    transform: translateY(0);
}
.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(#f0f0f0 0% 100%);
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 1.5s ease;
}
.score-inner {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fb5323;
}
.score-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}
.result-item {
    margin-bottom:10px;
    padding-bottom:10px;
    transform: translateY(20px);
    transition: all 0.5s ease;
}
.result-item.show {
    opacity: 1;
    transform: translateY(0);
}
.result-item:last-child {
    border-bottom: none;
}
.result-title {
    display:flex;
    align-items:center;
    gap: 0px;
    font-size:15px;
    color:#fb5323;
    font-weight:bold;
    margin-bottom: 10px;
}
.result-title i{font-size:20px;}
.key-word{
    color:#fb5323;
}
.result-good {
    color:#34a853;
}
.result-warning {
    color:#fbbc05;
}
.result-bad {
    color:#ea4335;
}
.result-content {
    color: #555;
    background:#fff7f7;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #fb5323;
}
.suggestions-list {
    list-style-type: none;
}
.suggestions-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}
.suggestions-list li:before {
    content: "•";
    color: #fb5323;
    font-weight: bold;
    position: absolute;
    left: 0;
}
.loading {
    display: none;
    text-align: center;
    padding: 30px;
}
.loading.show {
    display: block;
}
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #e8f0fe;
    border-top: 5px solid #fb5323;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.keyword {
    background:#fff;
    padding:5px 12px;
    border-radius:20px;
    font-size:14px;
    color: #fb5323;
}
.empty-state {
    text-align:center;
    padding:60px 20px;
    color: #888;
}
.empty-icon {
    color:#e0e0e0;
    margin-bottom: 20px;
}
.empty-icon i{
    font-size:80px;
}
.empty-text {
    font-size:16px;
    margin-bottom: 10px;
}
.empty-subtext {
    font-size:14px;
    max-width:400px;
    margin: 0 auto;
}
.result-item:nth-child(1) { transition-delay: 0.1s; }
.result-item:nth-child(2) { transition-delay: 0.2s; }
.result-item:nth-child(3) { transition-delay: 0.3s; }
.result-item:nth-child(4) { transition-delay: 0.4s; }
.result-item:nth-child(5) { transition-delay: 0.5s; }
/*AI简历诊断 end*/

/*AI模拟面试 start*/
.interview-content{
    position:absolute;
    top:75px;
    gap:30px;
    width:100%;
    height:calc(100% - 75px);
    padding:6px 0 0;
    overflow-y:auto;
    box-sizing:border-box;
}
.interview-content .chat-container{
    top:0;
    height:calc(100% - 175px);
}
/* 步骤导航 */
.steps-container {
    display:flex;
    justify-content:center;
    display:none;
}
.steps {
    display: flex;
    width: 100%;
    max-width: 800px;
    position: relative;
}
.steps:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #e0e0e0;
    z-index: 1;
}
.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}
.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 10px;
    border: 4px solid #f9fafc;
    transition: all 0.3s ease;
}
.step.active .step-circle {
    background-color: #fb5323;
    color:white;
    box-shadow: 0 0 0 4px rgba(251, 83, 35, 0.2);
}
.step.completed .step-circle {
    background-color: #4CAF50;
    color: white;
}
.step-label {
    font-size: 0.9rem;
    color: #888;
    font-weight: 600;
}
.step.active .step-label {
    color: #fb5323;
}
/* 内容区域 */
.in-content {
    width:100%;
    min-height:500px;
}
/* 第一步：上传简历 */
.step-content {
    display: none;
}
.step-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.step-title {
    display:flex;
    align-items:center;
    gap:10px;
    color:#fb5323;
    font-size:18px;
    font-weight:bold;
    margin-bottom:5px;
}
.step-description {
    color:#666;
    font-size:15px;
    line-height:1.6;
    margin-bottom:10px;
}
/* 上传区域 */
.upload-container {
    border: 3px dashed #d1d5db;
    border-radius: 15px;
    padding:25px 20px;
    text-align: center;
    background-color: #f9fafc;
    margin-bottom:20px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.upload-container:hover, .upload-container.dragover {
    border-color: #fb5323;
    background-color: rgba(118, 75, 162, 0.05);
}
.upload-text h3 {
    font-size:18px;
    margin-bottom: 10px;
    color: #333;
}
.upload-text p {
    color: #666;
    margin-bottom: 20px;
}
.upload-format {
    color: #888;
    font-size: 0.9rem;
}
/* 按钮样式 */
.buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.buttons i{
    font-size:28px;
    vertical-align:middle;
}
#local-upload{
    border:2px solid #f93d08;
    background:#fff;
    color:#f93d08;
}
.interview-page .btn-primary {
    background-color: #fb5323;
    color: white;
}
.interview-page .btn-primary:hover {
    background-color:#f93d08;
    transform:translateY(-2px);
    box-shadow:0 5px 15px rgba(251, 83, 35, 0.3);
}
.interview-page .interview-content .btn-secondary {
    background-color:white;
    color:#fb5323;
    border:2px solid #fb5323;
}
.interview-content .btn-secondary:hover {
    background-color: #f93d08;
}
.btn-next {
    background-color:#4CAF50;
    color:white;
    padding:15px 40px;
    font-size:18px;
}
.btn-next:hover {
    background-color: #3d8b40;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}
.btn-next i {
    font-size:18px;
    margin-left: 5px;
}
.interview-content .btn{
    font-size:18px;
}
/* 文件信息 */
.file-info {
    background-color: #f9fafc;
    border: 3px dashed #d1d5db;
    border-radius: 10px;
    padding: 20px;
    margin:10px 0;
    display: none;
    box-sizing: border-box;
}
.file-info.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
.file-info h4 {
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.file-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.file-detail {
    display: flex;
    flex-direction: column;
}
.file-detail label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}
.file-detail span {
    font-weight: 600;
    color: #333;
}
/* 第二步：岗位信息 */
.form-group {
    margin-bottom:10px;
}
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}
.form-input, .form-textarea {
    width: 100%;
    padding:13px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size:15px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}
.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #fb5323;
}
.form-textarea {
    resize: vertical;
    font-family: inherit;
}
/* 第三步：面试题 */
.questions-container{
    max-height:435px;
    padding-top:10px;
    overflow-y: auto;
    padding-right:10px;
    box-sizing: border-box;
}
.question-category {
    margin-bottom:15px;
    background-color:#fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius:10px;
    padding:15px;
    border-left:5px solid #fb5323;
}
.question-category .wenti-item{
    display:flex;
    align-items:center;
    height:50px;
    line-height:50px;
    padding:0 15px;
    background:#fff7f7;
    border-radius:6px;
    box-shadow:none;
    color:#555;
    font-size:14px;
    cursor:pointer;
    margin-bottom:10px;
    overflow:hidden;
}
.category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size:18px;
    font-weight:bold;
    color: #fb5323;
    margin-bottom: 10px;
}
.question-number {
    display: inline-block;
    background-color:#fb5323;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-weight: bold;
    margin-right: 10px;
}
.question-text {
    display: inline;
    line-height: 1.6;
}
.bottom-btn{
    display: flex;
    justify-content: center;
    margin-top:20px;
}
.bottom-btn button{
    margin:0 20px;
}
#export-questions i{
    font-size:18px;
    font-weight:bold;
}
#prev-step-3{
    border:2px solid #fb5323;
    background:#fff;
    color:#fb5323;
}
#regenerate-questions{
    background-color:#4CAF50;
}
#prev-step-2{
    position:absolute;
    left: 170px;
    bottom: 11px;
    padding: 0 20px;
    line-height: 31px;
    font-size:14px;
    font-weight:normal;
    border-radius: 40px;
}
#prev-step-2 .layui-icon{
    font-size:14px;
    margin-right:5px;
}
/*AI模拟面试 end*/

/*我的简历 start*/
.mine-content{
    position:absolute;
    top:45px;
    width:100%;
    height:calc(100% - 45px);
    padding:6px 20px 0;
    overflow-y:auto;
    box-sizing:border-box;
}
.resume_list{
    display:flex;
    flex-wrap: wrap;
}
.resume_list li{
    position:relative;
    width:calc((100% - 100px)/6);
    background:#fff;
    border-radius:10px;
    box-shadow:0 0 5px 1px rgba(0,0,0,0.08);
    margin:0 20px 20px 0;
    transition:all .5s ease;
    overflow:hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.resume_list li:hover{
    box-shadow:0 16px 16px rgba(0,0,0,.1);
}
.resume_list li:nth-child(6n){
    margin-right:0;
}
.resume_list li a{
    display:block;
    width:100%;
    overflow:hidden;
}
.resume_list li .c_up{
    position:relative;
    width:100%;
    height:220px;
    overflow:hidden;
}
.resume_list li .c_up i.mask{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#000;
    opacity:0;
    z-index:9;
}
.resume_list li:hover i.mask{
    opacity:.25;
}
.resume_list li .c_up i.icon_watch{
    position:absolute;
    top:50%;
    left:50%;
    margin:-25px 0 0 -25px;
    width:50px;
    height:50px;
    background:url("../images/icon_watch.png") no-repeat center;
    background-size:cover;
    transform: scale(0.1);
    -webkit-transform: scale(0.1);
    transition: all .35s ease-out;
    z-index:10;
    opacity:0;
}
.resume_list li:hover i.icon_watch{
    transform:scale(1.2);
    opacity:0.8;
}
.resume_list li .c_up img{
    width:100%;
    transition: all .5s;
}
.resume_list li:hover .c_up img{
    transform:scale(1.12,1.12);
}
.resume_list li .c_down{
    position:relative;
    z-index:2;
    width:100%;
    padding:10px 10px 0;
    margin:0 auto;
    transition: all .6s;
    overflow:hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.resume_list .c_down h4{
    width:100%;
    line-height:30px;
    color:#000;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow:hidden;
}
.resume_list .c_down p {
    width:100%;
    height:30px;
    line-height:30px;
    color:#888;
    text-overflow:ellipsis;
    white-space:nowrap;
    overflow:hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.resume_list .p_down{
    display:flex;
    width:100%;
    gap:10px;
    padding:0 10px 15px;
    margin-top:5px;
    overflow:hidden;
    box-sizing: border-box;
}
.resume_list .p_down span{
    display:inline-block;
    width:calc(50% - 5px);
    height:40px;
    line-height:40px;
    background:#ddd;
    border-radius:8px;
    color:#333;
    text-align:center;
    transition:all 0.3s;
    overflow:hidden;
    cursor: pointer;
}
.resume_list span i{
    font-size:20px;
    vertical-align:-2px;
}
.resume_list a.resume_btn{
    width:calc(50% - 5px);
    height:40px;
    line-height:40px;
    background:#fb5323;
    border:1px solid #fb5323;
    border-radius:8px;
    color:#fff;
    font-size:15px;
    text-align:center;
    transition:all 0.3s;
    overflow:hidden;
}
.resume_list a.resume_btn:hover{
    color:#fff;
    opacity:0.9;
}
.notice_layer{
    text-align:center;
}
.notice_layer>p{
    margin-top:10px;
}
.layui-layer-btn .layui-layer-btn0 {
    border-color:#fb5323!important;
    background-color:#fb5323!important;
    margin-bottom:10px;
}
/*我的简历 end*/

/*AI简历生成弹窗 start*/
#resume_layer{
    position:fixed;
    z-index:99999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
    display:none;
}
.pop_up{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:610px;
    height:400px;
    background:#fff url(../images/ai_layer.jpg) no-repeat center top;
    border-radius:25px;
    text-align: center;
}
.pop_up h1{
    color:#333;
    font-size:24px;
    font-weight:bold;
    line-height:90px;
    text-align: center;
}
.close{
    position:absolute;
    z-index:99;
    right:20px;
    top:0;
    color:#333;
    font-size:35px;
    line-height:80px;
    cursor:pointer;
}
.pop_up img{
    padding:30px 0;
}
.pop_up a{
    display:block;
    width:150px;
    line-height:45px;
    background:#fb5323;
    border-radius:6px;
    color:#fff;
    font-size:15px;
    text-align:center;
    margin:20px auto;
}
/*AI简历生成弹窗 end*/

.chat-container::-webkit-scrollbar,
.resume-box::-webkit-scrollbar,
.diagnosis-content::-webkit-scrollbar,
.interview-content::-webkit-scrollbar,
.questions-container::-webkit-scrollbar,
.mine-content::-webkit-scrollbar{
    width:6px;
    background:rgba(255,255,255,0.4);
}
.chat-container::-webkit-scrollbar-thumb,
.resume-box::-webkit-scrollbar-thumb,
.diagnosis-content::-webkit-scrollbar-thumb,
.interview-content::-webkit-scrollbar-thumb,
.questions-container::-webkit-scrollbar-thumb,
.mine-content::-webkit-scrollbar-thumb{
    border-radius:5px;
    background:#fff;
}
.resume-preview::-webkit-scrollbar{
    width:6px;
    background:#ddd;
}
.resume-preview::-webkit-scrollbar-thumb{
    border-radius:5px;
    background:#fb5323;
}
pre{
    font-family: 微软雅黑;
}