*{margin:0;padding:0;box-sizing:border-box}:root{--primary-color: #3498db;--secondary-color: #2c3e50;--bg-color: #f5f6fa;--text-color: #333;--border-color: #ddd;--white: #ffffff;--shadow: 0 2px 8px rgba(0, 0, 0, .1)}body{font-family:Microsoft YaHei,PingFang SC,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif;line-height:1.6;color:var(--text-color);background-color:var(--bg-color)}#app{display:flex;flex-direction:column;min-height:100vh}.header{background:var(--white);box-shadow:var(--shadow);position:sticky;top:0;z-index:100}.header-content{max-width:1600px;margin:0 auto;padding:20px 40px;display:flex;justify-content:space-between;align-items:center}.logo{font-size:24px;font-weight:600;color:var(--secondary-color)}.header-actions{display:flex;gap:12px;align-items:center}.btn{padding:10px 20px;border:none;border-radius:6px;font-size:14px;font-weight:500;cursor:pointer;transition:all .3s ease}.btn-primary{background:var(--primary-color);color:var(--white)}.btn-primary:hover{background:#2980b9;transform:translateY(-2px)}.btn-secondary{background:var(--secondary-color);color:var(--white)}.btn-secondary:hover{background:#34495e;transform:translateY(-2px)}.main-container{flex:1;display:grid;grid-template-columns:1fr 1fr;gap:32px;max-width:1600px;margin:32px auto;padding:0 48px;width:100%}.editor-panel,.preview-panel{background:var(--white);border-radius:8px;box-shadow:var(--shadow);overflow:hidden;display:flex;flex-direction:column}.panel-header{padding:18px 24px;background:#f8f9fa;border-bottom:1px solid var(--border-color);display:flex;justify-content:space-between;align-items:center}.panel-header h2{font-size:16px;font-weight:600;color:var(--secondary-color)}.panel-header .hint{font-size:13px;color:#999}.editor-textarea{flex:1;width:100%;min-height:500px;padding:24px;border:none;font-family:Consolas,Monaco,monospace;font-size:14px;line-height:1.8;resize:none;outline:none;background:var(--white);color:var(--text-color)}.editor-textarea::placeholder{color:#bbb}.preview-content{flex:1;padding:24px;min-height:500px;overflow-y:auto;background:var(--white)}.preview-content .empty-hint{color:#bbb;font-style:italic;text-align:center;padding:40px 24px}.footer{background:var(--white);padding:24px 40px;text-align:center;color:#999;font-size:14px;border-top:1px solid var(--border-color)}.footer-content{max-width:1600px;margin:0 auto}.footer-links{margin-top:8px}.footer-links a{color:#666;text-decoration:none;transition:color .3s ease}.footer-links a:hover{color:var(--primary-color)}.footer-links .separator{margin:0 8px;color:#ddd}.template-selector{position:relative}.template-selector-toggle{display:flex;align-items:center;gap:8px;padding:8px 16px;background:var(--white);border:1px solid var(--border-color);border-radius:6px;cursor:pointer;font-size:14px;transition:all .3s ease}.template-selector-toggle:hover{border-color:var(--primary-color)}.template-selector-toggle.active{border-color:var(--primary-color);box-shadow:0 0 0 3px #3498db1a}.template-selector-toggle .arrow{font-size:10px;color:#999;transition:transform .3s ease}.template-selector-toggle.active .arrow{transform:rotate(180deg)}.template-dropdown{position:absolute;top:calc(100% + 8px);left:0;right:0;min-width:600px;background:var(--white);border:1px solid var(--border-color);border-radius:8px;box-shadow:0 4px 12px #00000026;z-index:1000;display:none;padding:16px}.template-dropdown.open{display:block;animation:fadeIn .2s ease}@keyframes fadeIn{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.template-categories{display:flex;gap:8px;margin-bottom:16px;padding-bottom:12px;border-bottom:1px solid var(--border-color)}.category-btn{padding:6px 12px;background:#f5f6fa;border:1px solid var(--border-color);border-radius:4px;font-size:13px;cursor:pointer;transition:all .3s ease}.category-btn:hover{background:#e8e9ea}.category-btn.active{background:var(--primary-color);color:var(--white);border-color:var(--primary-color)}.template-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:16px}.template-option{padding:12px;border:2px solid var(--border-color);border-radius:8px;cursor:pointer;transition:all .3s ease}.template-option:hover{border-color:var(--primary-color);box-shadow:0 2px 8px #3498db33}.template-option.active{border-color:var(--primary-color);background:rgba(52,152,219,.05)}.template-preview{width:100%;height:120px;border-radius:4px;margin-bottom:10px;overflow:hidden;position:relative}.template-preview .preview-content{width:100%;height:100%;padding:8px;display:flex;flex-direction:column}.preview-header{height:20%;background:rgba(255,255,255,.3);border-radius:2px;margin-bottom:8px}.preview-body{flex:1;display:flex;flex-direction:column;gap:4px}.preview-line{height:8px;background:rgba(255,255,255,.5);border-radius:2px}.preview-line.short{width:60%}.template-info{padding:0 4px}.template-name{font-size:14px;font-weight:600;color:var(--secondary-color);margin-bottom:4px}.template-desc{font-size:12px;color:#666;margin-bottom:8px;line-height:1.4}.template-features{display:flex;flex-wrap:wrap;gap:4px}.feature-tag{padding:2px 6px;background:#f0f0f0;border-radius:3px;font-size:11px;color:#666}.color-picker{position:relative}.color-picker-toggle{display:flex;align-items:center;gap:8px;padding:8px 16px;background:var(--white);border:1px solid var(--border-color);border-radius:6px;cursor:pointer;font-size:14px;transition:all .3s ease}.color-picker-toggle:hover{border-color:var(--primary-color)}.color-picker-toggle.active{border-color:var(--primary-color);box-shadow:0 0 0 3px #3498db1a}.color-preview{width:20px;height:20px;border-radius:4px;border:1px solid var(--border-color)}.color-dropdown{position:absolute;top:calc(100% + 8px);left:0;min-width:280px;background:var(--white);border:1px solid var(--border-color);border-radius:8px;box-shadow:0 4px 12px #00000026;z-index:1000;display:none;padding:8px}.color-dropdown.open{display:block;animation:fadeIn .2s ease}.color-option{display:flex;align-items:center;gap:12px;padding:10px;border-radius:6px;cursor:pointer;transition:all .3s ease}.color-option:hover{background:#f5f6fa}.color-option.active{background:rgba(52,152,219,.1)}.color-swatch{width:40px;height:40px;border-radius:6px;border:2px solid var(--border-color)}.color-info{flex:1}.color-name{font-size:14px;font-weight:500;color:var(--secondary-color);margin-bottom:4px}.color-palette{display:flex;gap:4px}.color-palette span{width:16px;height:16px;border-radius:3px}@keyframes slideIn{0%{transform:translate(100%);opacity:0}to{transform:translate(0);opacity:1}}@keyframes slideOut{0%{transform:translate(0);opacity:1}to{transform:translate(100%);opacity:0}}@media print{.header,.footer,.editor-panel{display:none!important}.main-container{display:block;margin:0;padding:0}.preview-panel{box-shadow:none;border-radius:0}.preview-content{padding:20px}}@media screen and (max-width: 1024px){.main-container{grid-template-columns:1fr;padding:0 32px}.editor-textarea,.preview-content{min-height:400px}.template-dropdown{min-width:400px}}@media screen and (max-width: 768px){.header-content{flex-direction:column;gap:16px;align-items:stretch;padding:16px 24px}.header-actions{justify-content:center;flex-wrap:wrap}.main-container{margin:24px auto;padding:0 24px;gap:24px}.editor-textarea,.preview-content{min-height:300px}.btn{padding:8px 16px;font-size:13px}.template-dropdown{min-width:100%;right:0}.template-grid{grid-template-columns:1fr}.color-dropdown{min-width:100%;right:0}}.resume-list{position:relative}.resume-list-toggle{display:flex;align-items:center;gap:8px;padding:8px 16px;background:var(--white);border:1px solid var(--border-color);border-radius:6px;cursor:pointer;font-size:14px;transition:all .3s ease}.resume-list-toggle:hover{border-color:var(--primary-color)}.resume-list-toggle.active{border-color:var(--primary-color);box-shadow:0 0 0 3px #3498db1a}.resume-list-toggle .arrow{font-size:10px;color:#999;transition:transform .3s ease}.resume-list-toggle.active .arrow{transform:rotate(180deg)}.resume-dropdown{position:absolute;top:calc(100% + 8px);left:0;min-width:400px;background:var(--white);border:1px solid var(--border-color);border-radius:8px;box-shadow:0 4px 12px #00000026;z-index:1000;display:none;padding:16px}.resume-dropdown.open{display:block;animation:fadeIn .2s ease}.resume-actions{display:flex;gap:12px;margin-bottom:16px;padding-bottom:12px;border-bottom:1px solid var(--border-color)}.btn-create{padding:8px 16px;background:var(--primary-color);color:var(--white);border:none;border-radius:6px;cursor:pointer;font-size:14px;display:flex;align-items:center;gap:6px;transition:all .3s ease}.btn-create:hover{background:#2980b9}.search-box{flex:1}.search-box input{width:100%;padding:8px 12px;border:1px solid var(--border-color);border-radius:6px;font-size:14px;outline:none;transition:border-color .3s ease}.search-box input:focus{border-color:var(--primary-color)}.resume-items{max-height:400px;overflow-y:auto}.empty-message{padding:20px;text-align:center;color:#999;font-size:14px}.resume-item{display:flex;justify-content:space-between;align-items:center;padding:12px;border:1px solid var(--border-color);border-radius:6px;margin-bottom:8px;cursor:pointer;transition:all .3s ease}.resume-item:hover{border-color:var(--primary-color);background:rgba(52,152,219,.05)}.resume-item-info{flex:1}.resume-item-name{font-size:14px;font-weight:600;color:var(--secondary-color);margin-bottom:6px}.resume-item-meta{display:flex;gap:12px;font-size:12px;color:#666}.template-badge{padding:2px 8px;background:#f0f0f0;border-radius:4px;font-size:11px}.resume-item-actions{display:flex;gap:8px}.resume-item-actions button{padding:4px 8px;background:transparent;border:1px solid var(--border-color);border-radius:4px;cursor:pointer;font-size:14px;transition:all .3s ease}.resume-item-actions button:hover{background:#f5f6fa;border-color:var(--primary-color)}@media screen and (max-width: 768px){.resume-dropdown{min-width:100%;right:0}.resume-actions{flex-direction:column}}.export-dialog{display:none;position:fixed;top:0;left:0;width:100%;height:100%;z-index:9999}.export-dialog-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5)}.export-dialog-content{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);background:var(--white);border-radius:12px;box-shadow:0 8px 32px #0003;width:90%;max-width:600px;max-height:90vh;overflow-y:auto}.export-dialog-header{display:flex;justify-content:space-between;align-items:center;padding:20px 24px;border-bottom:1px solid var(--border-color)}.export-dialog-header h3{margin:0;font-size:18px;color:var(--secondary-color)}.export-dialog-close{width:32px;height:32px;border:none;background:transparent;font-size:24px;cursor:pointer;color:#999;border-radius:4px;transition:all .3s ease}.export-dialog-close:hover{background:#f5f6fa;color:var(--secondary-color)}.export-dialog-body{padding:24px}.section-label{display:block;font-size:14px;font-weight:600;color:var(--secondary-color);margin-bottom:12px}.export-format-section{margin-bottom:24px}.format-options{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}.format-option{cursor:pointer}.format-option input[type=radio]{display:none}.format-card{display:flex;flex-direction:column;align-items:center;padding:16px;border:2px solid var(--border-color);border-radius:8px;transition:all .3s ease}.format-option input[type=radio]:checked+.format-card{border-color:var(--primary-color);background:rgba(52,152,219,.05)}.format-icon{font-size:32px;margin-bottom:8px}.format-name{font-size:14px;font-weight:600;color:var(--secondary-color);margin-bottom:4px}.format-desc{font-size:12px;color:#999}.export-settings-section{margin-bottom:24px}.settings-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}.setting-item{display:flex;flex-direction:column;gap:8px}.setting-item label{font-size:13px;color:#666}.setting-item select,.setting-item input{padding:8px 12px;border:1px solid var(--border-color);border-radius:6px;font-size:14px;outline:none;transition:border-color .3s ease}.setting-item select:focus,.setting-item input:focus{border-color:var(--primary-color)}.export-filename-section{margin-bottom:0}.export-filename-section input{width:100%;padding:10px 14px;border:1px solid var(--border-color);border-radius:6px;font-size:14px;outline:none;transition:border-color .3s ease}.export-filename-section input:focus{border-color:var(--primary-color)}.export-dialog-footer{display:flex;justify-content:flex-end;gap:12px;padding:16px 24px;border-top:1px solid var(--border-color)}.export-toast{position:fixed;top:20px;right:20px;padding:12px 20px;border-radius:8px;font-size:14px;color:var(--white);opacity:0;transform:translate(100%);transition:all .3s ease;z-index:10000}.export-toast-show{opacity:1;transform:translate(0)}.export-toast-success{background:#27ae60}.export-toast-error{background:#e74c3c}.export-toast-info{background:#3498db}@media screen and (max-width: 768px){.format-options,.settings-grid{grid-template-columns:1fr}.export-dialog-content{width:95%}}.editor-container{display:flex;flex-direction:column;height:100%}.editor-toolbar{display:flex;align-items:center;gap:8px;padding:10px 16px;background:#f8f9fa;border-bottom:1px solid #e1e4e8;flex-wrap:wrap}.toolbar-group{display:flex;align-items:center;gap:4px}.toolbar-btn{display:flex;align-items:center;justify-content:center;width:32px;height:32px;padding:0;border:1px solid #d1d5da;border-radius:4px;background:#fff;color:#586069;font-size:14px;cursor:pointer;transition:all .2s ease}.toolbar-btn:hover{background:#f6f8fa;border-color:#c5c9cd}.toolbar-btn:active{background:#edeff2}.toolbar-btn.active{background:#0366d6;border-color:#0366d6;color:#fff}.toolbar-btn .icon{font-style:normal}.toolbar-separator{width:1px;height:24px;background:#d1d5da;margin:0 4px}.editor-textarea{flex:1;width:100%;min-height:500px;padding:20px;border:none;font-family:Consolas,Monaco,Courier New,monospace;font-size:14px;line-height:1.6;resize:none;outline:none;background:#fff;color:#24292e;-moz-tab-size:2;tab-size:2}.editor-textarea::placeholder{color:#959da5}.editor-textarea:focus{background:#fff}.editor-status{display:flex;align-items:center;justify-content:space-between;padding:8px 16px;background:#f6f8fa;border-top:1px solid #e1e4e8;font-size:12px;color:#586069}.editor-status-item{display:flex;align-items:center;gap:4px}@media screen and (max-width: 768px){.editor-toolbar{padding:8px 12px}.toolbar-btn{width:28px;height:28px;font-size:13px}.editor-textarea{min-height:300px;padding:16px;font-size:13px}}.template-simple{font-family:Microsoft YaHei,PingFang SC,-apple-system,sans-serif;color:#333;line-height:1.6}.template-simple h1{font-size:28px;color:#2c3e50;border-bottom:3px solid #3498db;padding-bottom:10px;margin-bottom:20px}.template-simple h2{font-size:20px;color:#34495e;margin-top:25px;margin-bottom:15px;border-left:4px solid #3498db;padding-left:10px}.template-simple h3{font-size:16px;color:#34495e;margin-top:20px;margin-bottom:10px}.template-simple ul{list-style:none;padding-left:20px}.template-simple ul li{position:relative;padding-left:15px;margin:8px 0}.template-simple ul li:before{content:"•";position:absolute;left:0;color:#3498db}.template-simple strong{color:#2c3e50;font-weight:600}.template-simple a{color:#3498db;text-decoration:none}.template-simple a:hover{text-decoration:underline}.template-professional{font-family:Georgia,Times New Roman,serif;color:#1a1a1a;line-height:1.8}.template-professional h1{font-size:32px;color:#000;text-align:center;margin-bottom:30px;letter-spacing:2px}.template-professional h2{font-size:22px;color:#000;margin-top:30px;margin-bottom:15px;text-transform:uppercase;letter-spacing:1px;border-bottom:2px solid #000;padding-bottom:5px}.template-professional h3{font-size:18px;color:#333;margin-top:20px;margin-bottom:10px;font-weight:700}.template-professional ul{list-style:none;padding-left:0}.template-professional ul li{position:relative;padding-left:20px;margin:10px 0;line-height:1.6}.template-professional ul li:before{content:"▸";position:absolute;left:0;color:#000;font-weight:700}.template-professional strong{color:#000;font-weight:700}.template-professional a{color:#000;text-decoration:underline}.template-professional p{margin:10px 0}.template-selector{position:relative;display:inline-block}.template-selector-toggle{display:flex;align-items:center;gap:8px;padding:8px 16px;border:1px solid #d1d5da;border-radius:6px;background:#fff;color:#24292e;font-size:14px;cursor:pointer;transition:all .2s ease}.template-selector-toggle:hover{background:#f6f8fa;border-color:#c5c9cd}.template-selector-toggle.active{border-color:#0366d6;box-shadow:0 0 0 3px #0366d61a}.template-selector-toggle .icon{font-size:16px}.template-selector-toggle .arrow{font-size:10px;color:#959da5}.template-dropdown{position:absolute;top:calc(100% + 8px);left:0;min-width:280px;background:#fff;border:1px solid #d1d5da;border-radius:6px;box-shadow:0 8px 24px #959da533;z-index:1000;opacity:0;visibility:hidden;transform:translateY(-10px);transition:all .2s ease}.template-dropdown.open{opacity:1;visibility:visible;transform:translateY(0)}.template-option{display:flex;align-items:center;gap:12px;padding:12px 16px;cursor:pointer;transition:background .2s ease}.template-option:hover{background:#f6f8fa}.template-option.active{background:#f1f8ff}.template-option:first-child{border-radius:6px 6px 0 0}.template-option:last-child{border-radius:0 0 6px 6px}.template-preview{width:60px;height:80px;border:2px solid #d1d5da;border-radius:4px;background:#fff;flex-shrink:0}.template-preview-simple{background:linear-gradient(180deg,#3498db 0%,#3498db 15%,#fff 15%)}.template-preview-professional{background:linear-gradient(180deg,#000 0%,#000 10%,#fff 10%)}.template-info{flex:1}.template-name{font-size:14px;font-weight:600;color:#24292e;margin-bottom:4px}.template-desc{font-size:12px;color:#586069}@media screen and (max-width: 768px){.template-dropdown{min-width:240px}.template-preview{width:50px;height:66px}}
