html{font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; font-weight: normal; font-size: 15px; height: 100%; } body{height: 100%; padding: 0; margin: 0; } #app{height: 100%; } button{outline: none; border-width: 0; } /* 移动端顶部导航 */ header#header {position: fixed; top: 0; z-index: 1000; padding: 12px 0; width: 100%; } .module-container {max-width: 1200px; margin: 0 auto; padding: 0 20px; } .mobile-navbar {display: flex; justify-content: space-between; align-items: center; width: 100%; } .logo {display: flex; align-items: center; gap: 10px; } .logo img {height: 40px; } .logo h1 {font-size: 1.2rem; font-weight: 700; } .menu-toggle {display: flex; flex-direction: column; justify-content: center; width: 30px; height: 30px; background: transparent; border: none; cursor: pointer; padding: 0; } .menu-toggle span {width: 25px; height: 3px; background-color:#0f172a; margin: 2px 0; transition: all 0.3s ease; border-radius: 2px; } .menu-toggle.active span:nth-child(1) {transform: rotate(45deg) translate(5px, 5px); } .menu-toggle.active span:nth-child(2) {opacity: 0; } .menu-toggle.active span:nth-child(3) {transform: rotate(-45deg) translate(7px, -6px); } .mobile-nav-links {position: fixed; top: 64px; left: 0; width: 100%; height: 0; background-color: white; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); overflow: hidden; transition: height 0.4s ease; z-index: 999; } .mobile-nav-links.active {height: calc(100vh - 64px); overflow-y: auto; } .mobile-nav-links a {display: block; padding: 16px 20px; color: var(--dark); font-weight: 600; border-bottom: 1px solid var(--border); transition: all 0.3s ease; } .mobile-nav-links a:hover, .mobile-nav-links a.active {color: var(--primary); background-color: var(--primary-light); padding-left: 25px; } /* 面包屑导航 */ .breadcrumb {padding: 20px 0; } .breadcrumb-content {display: flex; align-items: center; gap: 10px; font-size: 0.95rem; } .breadcrumb-content a {color: var(--gray); transition: color 0.3s ease; } .breadcrumb-content a:hover {color: var(--primary); } .breadcrumb-content span {color: var(--dark); font-weight: 600; } .breadcrumb-separator {color: var(--gray); } section{height: 100%; } html a{background-color: transparent; -webkit-text-decoration-skip: objects; -webkit-tap-highlight-color: transparent; text-decoration:none; } html .link:hover{cursor: pointer; } div.menu{position: absolute; right:10px; top:10px; font-size: 28px; } div.logo-wrapper{display: flex; flex-direction: column; align-items: center; align-content: center; justify-content: center; } div.logo-wrapper img{display: block; max-height:48px; } div.nav{display: flex; flex-direction: column; width:100%; align-content: center; align-items:center; } div.tools{display: flex; flex-direction: row; align-items: center; align-content: center; justify-content: center; font-size: 18px; margin-top: 15px; } div.tools div.icon{width: 24px; height: 24px; } div.tools div.contact{margin-left: 10px; } div.nav .nav-item{font-size: 18px; position: relative; text-align: center; margin:20px 0; width:100%; } div.nav .nav-item.active{color:rgba(74, 70, 255); } div.nav .nav-item a{color:#000; } div.nav .nav-item.active a{color:rgba(74, 70, 255); } div.nav .nav-item.active div.indicator{position: absolute; bottom: -14px; left: 0; right: 0; margin:auto; width: 32px; height: 2px; border-radius: 10px; background: rgba(74, 70, 255); } div.menu div.nav{position: relative; } div.nav div.nav-panel{background: #fafafa; width: 100%; text-align: center; font-size: 18px; } div.nav div.nav-panel div.section.active{color:rgba(74, 70, 255); } .el-main{padding:0; } /* 微信客服组件样式 */ .wechat-support {position: fixed; bottom: 30px; right: 30px; z-index: 1000; } .wechat-support .support-button {width: 60px; height: 60px; background: #07C160; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 15px rgba(7, 193, 96, 0.4); transition: all 0.3s ease; position: relative; z-index: 2; } .wechat-support .support-button:hover {transform: scale(1.1); box-shadow: 0 6px 20px rgba(7, 193, 96, 0.6); } .wechat-support .support-button i {font-size: 30px; color: white; } .wechat-support .support-card {position: absolute; bottom: 70px; right: 0; width: 280px; background: white; border-radius: 15px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); padding: 25px; transform: translateY(20px); opacity: 0; visibility: hidden; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); z-index: 1; } .wechat-support .support-card.active {transform: translateY(0); opacity: 1; visibility: visible; } .wechat-support .card-header {display: flex; align-items: center; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #eee; } .wechat-support .card-header i {font-size: 24px; color: #07C160; margin-right: 12px; } .wechat-support .card-header h3 {font-size: 1.3rem; color: #2c3e50; } .wechat-support .qrcode-container {text-align: center; padding: 15px 0; } .wechat-support .qrcode {width: 160px; height: 160px; margin: 0 auto; border-radius: 8px; display: flex; align-items: center; justify-content: center; overflow: hidden; } .wechat-support .qrcode img-wrapper{width:100%; height:100%; } .wechat-support .qrcode img {max-width: 100%; } .wechat-support .qrcode-text {margin-top: 15px; font-size: 0.9rem; color: #7f8c8d; line-height: 1.5; text-align: center; } .wechat-support .contact-info {margin-top: 20px; background: #f9f9f9; border-radius: 10px; padding: 15px; text-align: center; } .wechat-support .contact-info p {margin:0; font-size: 0.95rem; color: #555; } .wechat-support .contact-info strong {color: #07C160; } .wechat-support .open-btn {display: inline-block; background: linear-gradient(to right, #07C160, #09a5d9); color: white; padding: 14px 35px; border-radius: 50px; font-size: 1.1rem; font-weight: 600; cursor: pointer; border: none; box-shadow: 0 6px 20px rgba(7, 193, 96, 0.4); transition: all 0.3s ease; } .wechat-support .open-btn:hover {transform: translateY(-3px); box-shadow: 0 10px 25px rgba(7, 193, 96, 0.6); } .wechat-support .open-btn i {margin-right: 10px; } /* 底部区域优化 - 移动端 */ footer {background-color: var(--dark); color: white; padding: 2rem 0 1.5rem; margin-top: 0; } .footer-content {display: flex; flex-direction: column; gap: 25px; margin-bottom: 1.5rem; } .footer-column h3 {margin-bottom: 15px; font-size: 1.2rem; position: relative; padding-bottom: 10px; } .footer-column h3::after {content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background-color: var(--primary); } .footer-column ul {list-style: none; } .footer-column ul li {margin-bottom: 8px; } .footer-column a {color: #cbd5e1; text-decoration: none; transition: color 0.3s ease; display: block; padding: 4px 0; font-size: 0.85rem; } div.footer-column img{width:50%; margin:20px auto; } footer .contact-info p {display: flex; align-items: flex-start; margin-bottom: 12px; line-height: 1.6; font-size: 0.85rem; } footer .contact-info i {margin-right: 10px; min-width: 16px; color: var(--primary); } footer .copyright {text-align: center; padding-top: 20px; border-top: 1px solid #334155; color: #94a3b8; font-size: 0.8rem; margin-top: 20px; } /* 响应式设计 */ @media (min-width: 480px) {.module-container {padding: 0 20px; } } @media (min-width: 768px) {.module-container {max-width: 720px; padding: 0 15px; } } @media (min-width: 992px) {.module-container {max-width: 960px; } } @media (min-width: 1200px) {.module-container {max-width: 1140px; } }