   

        :root {
            --primary: #6C63FF;
            --secondary: #FF6584;
            --accent: #00F5D4;
            --dark: #121212;
            --dark-light: #1E1E1E;
            --text: #F5F5F5;
            --text-light: #BBBBBB;
            --shadow: 0 0 15px rgba(108, 99, 255, 0.3);
            --shadow-hover: 0 0 25px rgba(108, 99, 255, 0.5);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 导航栏样式 */
        header {
            background-color: var(--dark-light);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
        }
        
        .logo span {
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .search-box {
            position: relative;
            flex: 0 1 500px;
            margin: 0 20px;
        }
        
        .search-box input {
            width: 100%;
            padding: 10px 15px 10px 40px;
            border-radius: 30px;
            border: 1px solid var(--primary);
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--text);
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .search-box input:focus {
            outline: none;
            box-shadow: var(--shadow);
            border-color: var(--accent);
        }
        
        .search-box i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* 主横幅 */
        .hero {
            padding: 60px 0;
            text-align: center;
            background: linear-gradient(135deg, var(--dark), var(--dark-light));
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(108, 99, 255, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0, 245, 212, 0.1) 0%, transparent 40%);
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 200% auto;
            animation: gradientShift 5s ease infinite;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .hero p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            color: white;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        
        /* 分类导航 */
        .categories {
            padding: 40px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2rem;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            margin: 10px auto;
            border-radius: 3px;
        }
        
        .category-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .category-tab {
            padding: 8px 20px;
            background-color: var(--dark-light);
            border: 1px solid var(--primary);
            border-radius: 30px;
            color: var(--text);
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.95rem;
        }
        
        .category-tab:hover, .category-tab.active {
            background-color: var(--primary);
            color: white;
            box-shadow: var(--shadow);
        }
        
        /* 符号网格 */
        .symbols-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .symbol-card {
            background-color: var(--dark-light);
            border-radius: 10px;
            padding: 20px 10px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .symbol-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.1), transparent);
            transition: 0.5s;
        }
        
        .symbol-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: var(--primary);
        }
        
        .symbol-card:hover::before {
            left: 100%;
        }
        
        .symbol {
            font-size: 2rem;
            margin-bottom: 10px;
        }
        
        .symbol-name {
            font-size: 0.8rem;
            color: var(--text-light);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        /* 复制提示 */
        .copy-toast {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background-color: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
            z-index: 1000;
        }
        
        .copy-toast.show {
            transform: translateX(-50%) translateY(0);
        }
        
        /* 特点介绍 */
        .features {
            padding: 60px 0;
            background-color: var(--dark-light);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: var(--dark);
            border-radius: 15px;
            padding: 30px;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
            border-color: var(--primary);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .feature-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--text);
        }
        
        .feature-desc {
            color: var(--text-light);
        }
        
        /* 使用指南 */
        .guide {
            padding: 60px 0;
        }
        
        .guide-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .step {
            background-color: var(--dark-light);
            border-radius: 15px;
            padding: 30px;
            position: relative;
        }
        
        .step-number {
            position: absolute;
            top: -15px;
            left: 30px;
            width: 30px;
            height: 30px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        .step-title {
            margin-bottom: 15px;
            padding-top: 10px;
            font-size: 1.2rem;
        }
        
        .step-desc {
            color: var(--text-light);
        }
        
        /* 示例图片区 */
        .examples {
            padding: 60px 0;
            background-color: var(--dark-light);
        }
        
        .examples-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .example-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            transition: var(--transition);
            cursor: pointer;
        }
        
        .example-img:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow);
        }
        
        /* 页脚 */
        footer {
            background-color: var(--dark);
            padding: 40px 0 20px;
            border-top: 1px solid rgba(108, 99, 255, 0.2);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .search-box {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .symbols-grid {
                grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
            }
            
            .symbol {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .logo span {
                font-size: 1.5rem;
            }
            
            .hero {
                padding: 40px 0;
            }
            
            .hero h1 {
                font-size: 1.6rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .category-tab {
                padding: 6px 15px;
                font-size: 0.85rem;
            }
            
            .symbols-grid {
                grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
                gap: 10px;
            }
        }
        
        /* 动画效果 */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .symbol-card {
            animation: fadeIn 0.5s ease forwards;
            opacity: 0;
        }
        
        /* 延迟加载动画 */
        .symbol-card:nth-child(1) { animation-delay: 0.1s; }
        .symbol-card:nth-child(2) { animation-delay: 0.2s; }
        .symbol-card:nth-child(3) { animation-delay: 0.3s; }
        .symbol-card:nth-child(4) { animation-delay: 0.4s; }
        .symbol-card:nth-child(5) { animation-delay: 0.5s; }
        .symbol-card:nth-child(6) { animation-delay: 0.6s; }
        .symbol-card:nth-child(7) { animation-delay: 0.7s; }
        .symbol-card:nth-child(8) { animation-delay: 0.8s; }
        .symbol-card:nth-child(9) { animation-delay: 0.9s; }
        .symbol-card:nth-child(10) { animation-delay: 1s; }
        /* 更多延迟可以继续添加 */

        .friend-links-container {
            width: 100%;
        }
        
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .friend-links a {
            color: #bbbbbb;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border-radius: 4px;
        }
        
        .friend-links a:hover {
            color: #007bff;
            transform: translateY(-2px);
        }
        
        @media (max-width: 768px) {
            .friend-links {
                gap: 1rem;
                padding: 0.5rem;
            }
            
            .friend-links a {
                font-size: 0.85rem;
            }
        }

	
        .logo-image {
    height: 40px;
        }
.main-nav{margin-left:1px}
.main-nav.nav-tabs.nav-stacked > li{}
.main-nav.nav-tabs.nav-stacked > li > a{padding:10px 8px;font-size:12px;font-weight:600;color:#4A515B;background:#E9E9E9;background:-moz-linear-gradient(top,#FAFAFA 0%,#E9E9E9 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#FAFAFA),color-stop(100%,#E9E9E9));background:-webkit-linear-gradient(top,#FAFAFA 0%,#E9E9E9 100%);background:-o-linear-gradient(top,#FAFAFA 0%,#E9E9E9 100%);background:-ms-linear-gradient(top,#FAFAFA 0%,#E9E9E9 100%);background:linear-gradient(top,#FAFAFA 0%,#E9E9E9 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA',endColorstr='#E9E9E9');-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA',endColorstr='#E9E9E9')";border:1px solid #D5D5D5;border-radius:4px}
.main-nav.nav-tabs.nav-stacked > li > a > span{color:#4A515B}
.main-nav.nav-tabs.nav-stacked > li.active > a,#main-nav.nav-tabs.nav-stacked > li > a:hover{color:#FFF;background:#3C4049;background:-moz-linear-gradient(top,#4A515B 0%,#3C4049 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#4A515B),color-stop(100%,#3C4049));background:-webkit-linear-gradient(top,#4A515B 0%,#3C4049 100%);background:-o-linear-gradient(top,#4A515B 0%,#3C4049 100%);background:-ms-linear-gradient(top,#4A515B 0%,#3C4049 100%);background:linear-gradient(top,#4A515B 0%,#3C4049 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#4A515B',endColorstr='#3C4049');-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr='#4A515B',endColorstr='#3C4049')";border-color:#2B2E33}
#main-nav.nav-tabs.nav-stacked > li.active > a,#main-nav.nav-tabs.nav-stacked > li > a:hover > span{}
.main-nav.nav-tabs.nav-stacked > li{margin-bottom:4px}
.nav-header.collapsed > span.glyphicon-chevron-toggle:before{content:"\e114"}
.nav-header > span.glyphicon-chevron-toggle:before{content:"\e113"}
footer.duomi-page-footer{background-color:white}
footer.duomi-page-footer .beta-message{color:#a4a4a4}
footer.duomi-page-footer .beta-message a{color:#53a2e4}
footer.duomi-page-footer .list-inline a,footer.authenticated-footer .list-inline li{color:#a4a4a4;padding-bottom:30px}
footer.duomi-page-footer{background-color:white}
footer.duomi-page-footer .beta-message{color:#a4a4a4}
footer.duomi-page-footer .beta-message a{color:#53a2e4}
footer.duomi-page-footer .list-inline a,footer.authenticated-footer .list-inline li{color:#a4a4a4;padding-bottom:30px}
.secondmenu a{font-size:12px;color:#4A515B;text-align:center;border-radius:4px}
.secondmenu > li > a:hover{background-color:#4ACA6D;border-color:#428bca;}
.secondmenu li.active{background-color:#4ACA6D;border-color:#428bca;border-radius:4px}
.secondmenu li.active > a{color:#ffffff}
.navbar-static-top{margin-bottom:5px}
.navbar-brand{display:inline-block;vertical-align:middle;}
#logo{}
.navbar-header{
	
}
.navbar-brand:hover{}
.collapse.glyphicon-chevron-toggle,.glyphicon-chevron-toggle:before{content:"\e113"}
.collapsed.glyphicon-chevron-toggle:before{content:"\e114"}
.col-md-2{max-height:66666px;margin:0;}
.badge{background-color:#f5694b}
.gotop{position:fixed;display:none;background:#4ACA6D;padding:12px 8px;;border-radius:3px;vertical-align:top;text-align:center;bottom:60px;right:18px;z-index:888}
.gotop .arrow{width:0;height:0;display:block;border-radius:3px;border-width:0 12px 15px;border-style:dashed dashed solid;border-color:transparent transparent #fff}
.gotop .arrow.lit{position:absolute;bottom:8px;right:8px;border-color:transparent transparent #4ACA6D}
.gotop:hover .arrow.lit{border-color:transparent transparent #4ACA6D}
.form-control{}
.form-control:hover{}
.panel-body{word-wrap:break-word;word-break:normal}
.bs-docs-example:after{position:absolute;top:-1px;left:-1px;padding:5px 8px;font-size:12px;font-weight:bold;background-color:#f5f5f5;border:1px solid #ddd;color:#9da0a4;-webkit-border-radius:4px 0 4px 0;-moz-border-radius:4px 0 4px 0;border-radius:4px 0 4px 0}
.bs-docs-example{position:relative;margin:5px 0;padding:5px 10px 1px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}
.bs-docs-demoexample:after{position:absolute;top:-1px;left:-1px;padding:5px 8px;font-size:12px;font-weight:bold;background-color:#f5f5f5;border:1px solid #ddd;color:#9da0a4;-webkit-border-radius:4px 0 4px 0;-moz-border-radius:4px 0 4px 0;border-radius:4px 0 4px 0}
.bs-docs-demoexample{position:relative;margin:5px 0;padding:5px 10px 1px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}

.btn-clipboardcode{position:absolute;top:0;right:0;z-index:10;display:block;padding:5px 8px;font-size:12px;color:#767676;cursor:pointer;background-color:#fff;border:1px solid #e1e1e8;border-right:0;border-top:0;border-radius:0 4px 0 4px}
.zeroclipboard-is-hover{color:#fff;background-color:#4ACA6D;border-color:#4ACA6D}
/*
::selection{background:#4ACA6D;color:#fff;}
::-moz-selection{background:#4ACA6D;color:#fff;}
::-webkit-selection{background:#4ACA6D;color:#fff;}
*/
#copycodeall{display:none; max-width:98%;}
.badge{background-color:#4ACA6D}
.col10main{min-height:500px;background-color:#fff;max-height:66666px;height:auto;padding-top:5px;}
.centertop,.mdtop4{border:1px solid #ddd;max-height:500px;height:280px}
.mdtop4{}
.centerbottom{border:1px solid #ddd;border-right:none;max-height:500px;height:300px}
.centercen{margin-top:10px;border-top:1px solid #ddd}
.panelborder{border:none}
.mdban4{border:1px solid #ddd;min-height:180px}
.img-rounded{margin-top:10px}
.fastmargin{margin-top:10px;padding-left:30px}
.mdban4{margin-bottom:10px}
.Span1left{float:left}
.ds-powered-by{display:none}
.ds-dialog-footer{display:none}
.divclear{padding:0px}
.divtblist{width:28%;float:left;margin-right:5%}
.divtblist:hover{cursor:pointer;color:#390;text-decoration:none;border-color:#4ACA6D;text-decoration:none}
.boddiv{color:#333}
.boddiv img{width:50px;height:50px;float:left;margin-right:10px}
.boddiv div{padding:3px;font-size:18px}
.boddiv span{display:block;font-size:12px;color:#999;margin-top:4px}
.jz a:hover{color:#1769ff;text-decoration:none}
.jz{line-height:50px;font-size:15px;color:#C8C8C8;position:relative;z-index:5}
.nav-zi{position:absolute;top:50px;left:0px;background-color:#fff;border:1px solid #4ACA6D;border-top:0px;height:auto;width:100%;text-align:left;}
.nav-zi ul{padding-top:20px;padding-bottom:10px}
.nav-zi li{width:280px}
.nav-zi a{border:1px solid #EDEDED;padding-left:40px;margin-left:10px;padding-right:20px;margin-right:10px;display:block;line-height:40px;-webkit-transition:all 0.2s ease-in;-moz-transition:all 0.2s ease-in;-ms-transition:all 0.2s ease-in;-o-transition:all 0.3s ease-in;transition:all 0.4s ease-in}
.nav-zi a:hover{background-color:#4ACA6D;;border:1px solid #FFF;}
.navbar-default  .navbar-brand{color: #fff;font-weight: 800;height: 50px;line-height: 50px;padding: 0;position: relative;margin: 0 15px !important;}
.navbar-default  .navbar-brand:hover {background: unset !important;}
.logo_ico {position: relative;top: 3px;background: #009a61;color: #fff;padding: 5px;border-radius: 5px;margin-right: 10px;}
.nav-zi a{color:#666;}
.hot a{color:#F34925;}
#topfiex a{}
#topfiex a:hover{background-color:#3CB371;}
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {color: #FFF; background-color: #3CB371;}
.sidebar .widget{background:#ffffff;padding:21px 30px}
.main-footer .widget{padding:0px 30px}
.widget .title{margin-top:0;padding-bottom:7px;border-bottom:1px solid #ebebeb;position:relative}
.widget .title:after{content:"";width:90px;height:1px;background:#f4645f;position:absolute;left:0;bottom:-1px}
.widget .recent-post .recent-single-post{border-bottom:1px dashed #ebebeb;padding-bottom:14px;margin-bottom:14px}
.widget .recent-post .recent-single-post:last-child{margin-bottom:0}
.widget .recent-post .recent-single-post .post-title{color:#505050;-webkit-transition:all 0.2s ease;-o-transition:all 0.2s ease;transition:all 0.2s ease}
.widget .recent-post .recent-single-post .post-title:hover{color:#f4645f;text-decoration:none}
.widget .recent-post .recent-single-post .data{color:#959595}
.widget .tag-cloud a{border:1px solid #4ACA6D;padding:2px 7px;color:#959595;line-height:1.5em;display:inline-block;margin:0 7px 7px 0;-webkit-transition:all 0.2s ease;-o-transition:all 0.2s ease;transition:all 0.2s ease}
.widget .tag-cloud a:hover{background:#4ACA6D;border:1px solid #4ACA6D;text-decoration:none}
.widget .tag-cloudf a{border:1px solid #303030;padding:2px 7px;color:#959595;line-height:1.5em;display:inline-block;margin:0 7px 7px 0;-webkit-transition:all 0.2s ease;-o-transition:all 0.2s ease;transition:all 0.2s ease}
.widget .tag-cloudf a:hover{background:#4ACA6D;border:1px solid #4ACA6D;text-decoration:none}
.widget .social{padding:0;margin:0}
.widget .social li{display:inline-block;margin:0 2px 5px 0;text-align:center}
.widget .social li a i{width:35px;height:35px;line-height:35px;border:1px solid #ebebeb;color:#959595;-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}
.widget .social li:hover i{background:#f4645f;border:1px solid #f4645f}
.widget .newsletter .input-group{margin-bottom:10px;display:block}
.widget .newsletter .input-group .email,.widget .newsletter .input-group btn{width:100%}
.widget .ad{text-align:center}
.widget .ad img{max-width:100%}
.main-footer{background:#303030;padding:35px 0 0;color:#959595}
.main-footer .widget .title{color:#ffffff;border-bottom:1px solid #303030}
.main-footer .widget .tag-cloud a{border:1px solid #303030}
.main-footer .widget .tag-cloud a:hover{border:1px solid #4ACA6D}
.main-footer .widget .friend-links a{border:none}
.main-footer .widget .friend-links a:hover{border:none}
.main-footer .widget .friend-links hr{margin:1em 0;border-top:1px dashed #303030}
.main-footer .widget .recent-post .recent-single-post{border-bottom:1px dashed #303030}
.main-footer .widget .recent-post .recent-single-post .post-title{color:#959595}
.main-footer .widget .recent-post .recent-single-post .post-title:hover{color:#4ACA6D}
.main-footer .widget .recent-post .recent-single-post .data{color:#505050}
.copyright{font-size: 13px;text-align: center;color: #666666;padding-top: 10px;padding-bottom: 10px;margin-bottom: 50px;}
.copyright span{margin:0 .5em}
.copyright a{color:#666666}
#Clientid .table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {padding: 8px;line-height: 2;vertical-align: top;border-top: 1px solid #ddd;}
.mulu{ margin-bottom:5px;}
.titcolor{ background-color:#f5f5f5;}
.footermap .list-inline{ border-bottom:1px dashed #ebebeb; padding-bottom: 5px;}
.hottag{color:#f4645f;}
.footermap a:hover{color:#f4645f;}
.greentag{color:#0d8c21;}
.footcenter{ text-align:center;}
.hbflag{ margin-bottom:15px;background: url(/static/images/hbflag.png) 0 bottom repeat-x #f5f5f5;}
.hbflag li a:hover{ background-color:#fff; color:#f4645f;}
.nav-tabs>li>a {color: #009a61;}
.nav > li:hover .dropdown-menu{display:block}
.navbar-default{background-color: #06568e;color: #9db1c5;}
.navbar-default .navbar-nav > li > a{color:#fff;}
.navbar-default .navbar-nav > li > a:focus,.navbar-default .navbar-nav > li > a:hover{color:#FFF;background-color:#4DC86F}
.navbar-default .navbar-nav > .open > a,.navbar-default .navbar-nav > .open > a:focus,.navbar-default .navbar-nav > .open > a:hover{color:#FFF;background-color:#0969ad}
.homead{width:284px;height:34px;font-family:华文行楷;color:white;font-size:22px;line-height:40px;margin-left:30%;text-align:center}
.had-1{background-color: #FF8C00; float: left; margin-left: 15px;}
.had-2{background-color: #00A3E4; float: left; margin-left: 20px}
.panel{
    margin: auto;}
.IcpMainInfo li{border-bottom:1px solid #f7f7f7;line-height:40px;font-size:14px;overflow:hidden}
.IcpMainInfo li span{width:160px;display:inline-block;float:left;padding-right:10px;text-align:right;color:#999999}
.IcpMainInfo li p{display:inline-block;float:left;padding-left:10px;color:#666666;padding-top:8px;}
.IcpMainInfo li p.Wzno{height:auto;overflow:hidden;line-height:30px}
.pusmall .IcpMainInfo li p{width:48%}
.bg-gray{background-color:#fdfdfd}
p{line-height:24px}
textarea{padding:5px;}
.btn{margin-left:2px;margin-right:2px;}
pre code{max-height:2000px;overflow-y:auto;}
.mt10{margin-top:10px;}
.mb10{margin-bottom:10px;}
.mt5{margin-top:5px;}
.mb5{margin-bottom:5px;}
.form-di{display:inline;}
.form-dib{display:inline-block;}
.input-encrypt-txt{width:90px;font-size:12px;}
.mt-10{margin-top:10px;}
.mb-10{margin-bottom:10px;}
.mt-5{margin-top:5px;}
.mb-5{margin-bottom:5px;}
.btn{margin-top:0px;}
h4{    font-size: 20px;
    color: #4aca6d;text-align: center;}
.line-24{line-height:24px}
.pre {position:relative;margin-bottom:24px;border-radius:3px;border:1px solid #C3CCD0;background:#FFF;overflow:hidden;}
.code {display:block;padding:12px 24px;overflow-y:auto;font-weight:300;font-size:0.8em;}
.code .has-numbering {margin-left:21px;}
.pre-numbering {position:absolute;top:0;left:0;width:20px;padding:12px 2px 12px 0;border-right:1px solid #C3CCD0;border-radius:3px 0 0 3px;background-color:#EEE;text-align:right;font-size:0.8em;color:#AAA;}
.red{color:red}
.py-tran-result{text-align:left;overflow:auto;height:auto;color:#000;font-size:16px;line-height:25px;max-height:500px;}
.py-tran-result em{display:inline-block;padding:5px;float:left;border:1px #999 solid;text-align:center;margin:2px;height:55px;line-height:25px;font-family:verdana;font-style:normal;}
.py-tran-result em{border:0;border-bottom:1px #ff3300 dashed;font-style:normal;}
.py-tran-result i{color:blue;font-style:normal;}
.f20{font-size:20px;}
.f30{font-size:20px;}
.f14{font-size:14px;}
.f12{font-size:12px}
.zifu-line35 {    line-height: 35px;
    letter-spacing: 3px;
    word-break: break-all;
    white-space: normal;
    background-color: var(--dark-light);
    border-radius: 15px;
    padding: 30px;
    position: relative;}
.py-star-fuhao{text-align:center;color:#484891;font-size:25px;font-weight:blod;}
.py-star-text{text-align:center;color:#484891;font-size:15px;font-weight:blod;}
.li-two li{
    width: 50%;
    float: left;
}
.li-two {
    width: 460px;
}
.li-two li a{
    white-space: pre-wrap;
}
.lineline {
    margin: 50px auto 0;
    background: #ececec;
    padding: 20px;
    overflow: auto;
    text-align: left;
}
.lineline-numbers {
    width: 20px;
    border-right: 1px solid #ccc;
    padding-right: 5px;
    color: #777;
}
.lineline-lines {
    padding-left: 20px;
    white-space: pre;
    white-space: -moz-pre;
    white-space: -pre;
    white-space: -o-pre;
    word-wrap: break-word;
}
.lineline-code {
    line-height: 18px;
    width: 100%;
    white-space: nowrap;
}

.fileinput-button {
    position: relative;
    overflow: hidden;
}
.fileinput-button input {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translate(-300px, 0) scale(4);
    font-size: 23px;
    direction: ltr;
    cursor: pointer;
}
.ptb10{padding-bottom:10px !important;padding-top:10px !important}
.YaHei{font-family:"Microsoft YaHei"}
.fl{display:inline-block;float:left;}
.fr{display:inline-block;float:right !important}
.mb20{margin-bottom:20px}
.mathunit{color:#436EEE;font-size:12px;margin-left:5px;margin-right:5px}
.AreaTxt{margin-right:10px}
li{border:0px;list-style-type:none;}
.footer-nav h2 {
    border-bottom: 1px solid #ddd;
    line-height:40px;
}
.footer-nav h3 {
    font-size: 16px;
    line-height:40px;
    margin-top:15px;
}
.footer-nav h3 span {
    border-left:5px #4DC86F solid;
    line-height:25px;
    padding-left:10px;
    font-weight:bold;
    color:#333;

}
.footer-nav .list-inline-bg {
    background-color:#F6F6F6;
    line-height:25px;
    padding:0 4px;
}
.footer-nav .list-inline-bg ul {
    padding:10px;

}
.footer-nav .list-inline-bg li{
    width:24%;
    line-height:28px;
}
.footer-nav .list-inline-bg li span {
    display:inline-block;
    width:4px;
    height:4px;
    border-radius:50%;
    background:#999;
    margin-right:6px;
    margin-bottom:4px;
}

.footer-nav .list-inline-bg li a {
    color:#444;
    font-size:14px;

}
h2 {
    font-size: 20px;
}
.ul-list {
    min-width: 400px;
    height: auto;
    overflow:hidden;
}
.ul-list li {
    width: 50%;
    float: left;
}
.ul-list li.divider {
    height: 1px;
    margin: 9px 0;
    width:100%;
    overflow: hidden;
    background-color: #e5e5e5;
    clear:both;
}
@media screen and (max-width: 670px) {
    .form-group .text-center .btn{margin-bottom:3px}
    #logo{padding-right:80px;}
    .footer-nav .list-inline-bg li{
        width:49%;
        line-height:28px;
        white-space:nowrap;
        overflow:hidden;
    }
}
.btn-xs{padding:3px 8px;}
.lx_name {
    width: 160px;
    display: inline-block;
    float: left;
    padding-right: 10px;
    text-align: right;
    color: #999999;
}
.lx_value{
    display: inline-block;
}
.dropdown{
    margin: 0;
}