/* roulang page: index */
:root {
            --ink: #17253b;
            --muted: #66758b;
            --blue: #2458a6;
            --blue-dark: #173e79;
            --blue-soft: #eaf2ff;
            --teal: #3f8f8a;
            --orange: #d97942;
            --paper: #f5f7fb;
            --white: #ffffff;
            --line: #dce4ef;
            --radius: 8px;
            --shadow: 0 12px 34px rgba(27, 52, 88, .08);
            --shadow-hover: 0 16px 38px rgba(27, 52, 88, .15);
        }

        *, *::before, *::after { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            margin: 0;
            color: var(--ink);
            background: var(--paper);
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            font-size: 16px;
            line-height: 1.75;
        }
        a { color: inherit; text-decoration: none; transition: color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
        img { display: block; max-width: 100%; }
        button, input, select, textarea { font: inherit; }
        button { cursor: pointer; }
        :focus-visible { outline: 3px solid rgba(217,121,66,.48); outline-offset: 3px; }
        .container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
        .section { padding: 88px 0; }
        .section--tint { background: #edf3fa; }
        .eyebrow { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
        .section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 34px; }
        .section-head h2 { margin: 5px 0 0; font-size: 32px; line-height: 1.25; letter-spacing: 0; }
        .section-head p { max-width: 590px; margin: 0; color: var(--muted); }
        .text-link { color: var(--blue); font-weight: 700; white-space: nowrap; }
        .text-link:hover { color: var(--orange); }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 30;
            background: rgba(255,255,255,.96);
            border-bottom: 1px solid var(--line);
            box-shadow: 0 5px 18px rgba(24,49,83,.05);
        }
        .brand-row { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
        .brand { display: inline-flex; align-items: center; gap: 12px; min-width: 250px; }
        .brand-mark {
            width: 38px; height: 38px; display: grid; place-items: center;
            color: #fff; background: var(--blue); border-radius: 8px; font-weight: 900;
        }
        .brand-name { font-size: 17px; font-weight: 850; line-height: 1.25; }
        .brand-note { display: block; color: var(--muted); font-size: 11px; font-weight: 500; margin-top: 3px; }
        .header-tools { display: flex; align-items: center; gap: 12px; }
        .search-mini { display: flex; height: 42px; border: 1px solid var(--line); background: var(--paper); border-radius: 6px; overflow: hidden; }
        .search-mini input { width: 190px; border: 0; background: transparent; padding: 0 13px; color: var(--ink); }
        .search-mini input:focus { outline: none; background: #fff; }
        .search-mini button { width: 44px; border: 0; color: #fff; background: var(--blue); }
        .age-note { color: var(--orange); font-size: 13px; font-weight: 700; white-space: nowrap; }
        .menu-button { display: none; border: 1px solid var(--line); background: #fff; color: var(--blue); padding: 8px 12px; border-radius: 6px; }
        .channel-row { border-top: 1px solid #edf1f6; }
        .channel-nav { display: flex; align-items: center; gap: 6px; min-height: 48px; overflow-x: auto; }
        .channel-nav a { position: relative; padding: 10px 15px; color: #4c5d74; font-size: 14px; font-weight: 700; white-space: nowrap; }
        .channel-nav a:hover, .channel-nav a.active { color: var(--blue); }
        .channel-nav a.active::after { content: ""; position: absolute; left: 15px; right: 15px; bottom: 0; height: 3px; background: var(--orange); }

        .hero { position: relative; min-height: 480px; display: flex; align-items: center; overflow: hidden; background: #10294b; color: #fff; }
        .hero::before {
            content: ""; position: absolute; inset: 0;
            background:
                linear-gradient(90deg, rgba(12,34,64,.98) 0%, rgba(18,51,91,.87) 48%, rgba(18,51,91,.48) 100%),
                repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 18px);
        }
        .hero::after { content: ""; position: absolute; right: 7%; top: 18%; width: 330px; height: 250px; border: 1px solid rgba(255,255,255,.18); transform: rotate(-7deg); }
        .hero-inner { position: relative; z-index: 1; padding: 64px 0 58px; }
        .hero-copy { max-width: 720px; }
        .hero h1 { max-width: 700px; margin: 12px 0 20px; font-size: 52px; line-height: 1.18; letter-spacing: 0; }
        .hero p { max-width: 680px; margin: 0 0 28px; color: #d7e3f5; font-size: 18px; }
        .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
        .button { display: inline-flex; justify-content: center; align-items: center; gap: 8px; min-height: 46px; padding: 0 20px; border: 1px solid transparent; border-radius: 6px; font-weight: 800; }
        .button.primary { background: var(--orange); color: #fff; }
        .button.primary:hover { background: #bd6030; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(217,121,66,.28); }
        .button.light { background: #fff; color: var(--blue-dark); }
        .button.light:hover { background: var(--blue-soft); transform: translateY(-2px); }
        .button.outline { background: transparent; border-color: #b7c9df; color: #fff; }
        .button.outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
        .hero-points { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 38px; color: #c7d8ec; font-size: 13px; }
        .hero-points strong { display: block; color: #fff; font-size: 22px; line-height: 1.2; }

        .dashboard { margin-top: -1px; background: var(--white); border-bottom: 1px solid var(--line); }
        .metrics { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; }
        .metric { min-height: 142px; padding: 25px 24px; border-right: 1px solid var(--line); }
        .metric:last-child { border-right: 0; }
        .metric .label { color: var(--muted); font-size: 13px; font-weight: 700; }
        .metric strong { display: block; margin: 4px 0; color: var(--blue-dark); font-size: 34px; line-height: 1.2; }
        .metric p { margin: 0; color: var(--muted); font-size: 13px; }
        .status { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-size: 12px; font-weight: 800; }
        .status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }

        .matrix { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; }
        .feature-link, .small-link, .compare-panel, .form-panel { border: 1px solid var(--line); background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
        .feature-link { position: relative; min-height: 300px; padding: 34px; overflow: hidden; color: #fff; background: #24558e; }
        .feature-link::after { content: "中文\n筛选"; white-space: pre; position: absolute; right: 38px; bottom: 20px; color: rgba(255,255,255,.14); font-size: 84px; font-weight: 900; line-height: .9; text-align: right; }
        .feature-link > * { position: relative; z-index: 1; }
        .feature-link h3 { max-width: 400px; margin: 12px 0 10px; font-size: 29px; line-height: 1.25; }
        .feature-link p { max-width: 450px; color: #d8e7f8; }
        .small-stack { display: grid; gap: 18px; }
        .small-link { min-height: 141px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; }
        .small-link:hover, .feature-link:hover, .compare-panel:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
        .small-link h3 { margin: 5px 0; font-size: 20px; }
        .small-link p { margin: 0; color: var(--muted); font-size: 14px; }

        .tag { display: inline-block; padding: 4px 9px; border-radius: 4px; background: var(--blue-soft); color: var(--blue); font-size: 12px; font-weight: 800; }
        .tag.orange { background: #fff0e8; color: #b95e31; }
        .compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
        .compare-panel { padding: 28px; transition: transform .2s ease, box-shadow .2s ease; }
        .compare-panel.recommended { border-top: 4px solid var(--orange); }
        .compare-panel h3 { display: flex; justify-content: space-between; gap: 15px; margin: 0 0 16px; font-size: 21px; }
        .compare-list { list-style: none; padding: 0; margin: 0 0 20px; }
        .compare-list li { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid #edf0f5; color: var(--muted); font-size: 14px; }
        .compare-list b { color: var(--ink); font-weight: 700; text-align: right; }

        .news-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 40px; }
        .news-list { list-style: none; margin: 0; padding: 0; }
        .news-list li { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
        .news-list a { font-weight: 700; }
        .news-list a:hover { color: var(--blue); }
        .news-list time { color: var(--muted); font-size: 13px; white-space: nowrap; }
        .trend-box { padding: 25px; border-left: 3px solid var(--orange); background: #fff; }
        .trend-box h3 { margin: 0 0 12px; font-size: 20px; }
        .trend-box p { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
        .trend-tags { display: flex; flex-wrap: wrap; gap: 8px; }

        .accordion { margin: 0; background: transparent; }
        .accordion-item { border: 1px solid var(--line); border-bottom: 0; background: #fff; }
        .accordion-item:last-child { border-bottom: 1px solid var(--line); }
        .accordion-title { color: var(--ink); font-weight: 800; padding: 20px 48px 20px 20px; }
        .accordion-title:hover, .accordion-title:focus { color: var(--blue); background: var(--blue-soft); }
        .accordion-content { color: var(--muted); border-top: 1px solid var(--line); background: #fbfcfe; }

        .cta-area { padding: 74px 0; background: #e7eff9; }
        .cta-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 55px; align-items: start; }
        .cta-copy h2 { margin: 8px 0 15px; font-size: 34px; line-height: 1.25; }
        .cta-copy p { color: var(--muted); }
        .form-panel { padding: 30px; }
        label { color: var(--ink); font-size: 14px; font-weight: 800; }
        input, select, textarea { margin-top: 7px !important; border: 1px solid #cbd6e4 !important; border-radius: 5px !important; box-shadow: none !important; background: #fff !important; }
        input:focus, select:focus, textarea:focus { border-color: var(--blue) !important; box-shadow: 0 0 0 3px rgba(36,88,166,.12) !important; }
        textarea { min-height: 110px; resize: vertical; }
        .form-note { margin: 10px 0 0; color: var(--muted); font-size: 12px; }
        .footer { padding: 54px 0 24px; color: #d6e2f2; background: #183454; }
        .footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 45px; }
        .footer .brand-name { color: #fff; }
        .footer .brand-mark { background: var(--orange); }
        .footer h3 { margin: 0 0 14px; color: #fff; font-size: 15px; }
        .footer p { color: #b5c6da; font-size: 13px; }
        .footer-links { display: grid; gap: 7px; color: #c7d5e6; font-size: 14px; }
        .footer-links a:hover { color: #fff; }
        .copyright { display: flex; justify-content: space-between; gap: 20px; padding-top: 28px; margin-top: 35px; border-top: 1px solid rgba(255,255,255,.15); color: #aabdd3; font-size: 12px; }

        @media (max-width: 1024px) {
            .hero h1 { font-size: 44px; }
            .metrics { grid-template-columns: 1fr 1fr; }
            .metric:nth-child(2) { border-right: 0; }
            .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
        }
        @media (max-width: 760px) {
            .container { width: min(100% - 28px, 620px); }
            .brand-row { min-height: 64px; }
            .brand { min-width: 0; }
            .brand-name { font-size: 14px; }
            .brand-note, .age-note, .search-mini { display: none; }
            .menu-button { display: block; }
            .channel-nav { min-height: 44px; }
            .channel-nav a { padding: 9px 11px; font-size: 13px; }
            .channel-nav a.active::after { left: 11px; right: 11px; }
            .section { padding: 60px 0; }
            .hero { min-height: 500px; }
            .hero-inner { padding: 55px 0 48px; }
            .hero h1 { font-size: 37px; }
            .hero p { font-size: 16px; }
            .hero-points { gap: 15px; }
            .metric { min-height: 132px; padding: 20px 16px; }
            .metric strong { font-size: 28px; }
            .section-head { display: block; }
            .section-head h2 { font-size: 27px; margin-bottom: 10px; }
            .section-head .text-link { display: inline-block; margin-top: 14px; }
            .matrix, .compare-grid, .news-layout, .cta-grid, .footer-grid { grid-template-columns: 1fr; }
            .feature-link { min-height: 270px; }
            .small-stack { grid-template-columns: 1fr 1fr; }
            .cta-grid { gap: 28px; }
            .footer-grid { gap: 27px; }
            .copyright { display: block; }
            .copyright span { display: block; margin-top: 8px; }
        }
        @media (max-width: 520px) {
            .small-stack, .metrics { grid-template-columns: 1fr; }
            .metric, .metric:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
            .metric:last-child { border-bottom: 0; }
            .hero h1 { font-size: 32px; }
            .hero-actions .button { width: 100%; }
            .news-list li { display: block; }
            .news-list time { display: block; margin-top: 5px; }
            .form-panel { padding: 21px; }
        }

/* roulang page: category1 */
:root{
 --ink:#17253b;--muted:#66758b;--blue:#2458a6;--blue-dark:#173e79;
 --blue-soft:#eaf2ff;--teal:#3f8f8a;--orange:#d97942;--paper:#f5f7fb;
 --white:#fff;--line:#dce4ef;--radius:8px;
 --shadow:0 12px 34px rgba(27,52,88,.08);
 --shadow-hover:0 16px 38px rgba(27,52,88,.15)
}
*,:before,:after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;color:var(--ink);background:var(--paper);font-family:"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;font-size:16px;line-height:1.75}
a{color:inherit;text-decoration:none;transition:color .2s ease,border-color .2s ease,box-shadow .2s ease,transform .2s ease}
img{display:block;max-width:100%}
button,input,select,textarea{font:inherit}
button{cursor:pointer}
.container{width:min(1180px,calc(100% - 40px));margin:0 auto}
.section{padding:78px 0}
.section--tint{background:#edf3fa}
.site-header{position:sticky;top:0;z-index:30;background:rgba(255,255,255,.97);border-bottom:1px solid var(--line);box-shadow:0 5px 18px rgba(24,49,83,.05)}
.brand-row{min-height:70px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.brand{display:inline-flex;align-items:center;gap:12px;min-width:250px}
.brand-mark{width:38px;height:38px;display:grid;place-items:center;color:#fff;background:var(--blue);border-radius:8px;font-weight:900}
.brand-name{font-size:17px;font-weight:850;line-height:1.25}
.brand-note{display:block;color:var(--muted);font-size:11px;font-weight:500;margin-top:3px}
.header-tools{display:flex;align-items:center;gap:12px}
.search-mini{display:flex;height:42px;border:1px solid var(--line);background:var(--paper);border-radius:6px;overflow:hidden}
.search-mini input{width:190px;border:0;background:transparent;padding:0 13px;color:var(--ink)}
.search-mini input:focus{outline:none;background:#fff}
.search-mini button{width:44px;border:0;color:#fff;background:var(--blue)}
.search-mini button:hover{background:var(--blue-dark)}
.menu-button{display:none;border:1px solid var(--line);background:#fff;color:var(--blue);padding:8px 12px;border-radius:6px}
.channel-row{border-top:1px solid #edf1f6}
.channel-nav{display:flex;align-items:center;gap:6px;min-height:48px;overflow-x:auto}
.channel-nav a{position:relative;padding:10px 15px;color:#4c5d74;font-size:14px;font-weight:700;white-space:nowrap}
.channel-nav a:hover,.channel-nav a.active{color:var(--blue)}
.channel-nav a.active:after{content:"";position:absolute;left:15px;right:15px;bottom:0;height:3px;background:var(--orange)}
.page-intro{padding:56px 0 48px;background:#fff;border-bottom:1px solid var(--line)}
.intro-grid{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:60px;align-items:end}
.eyebrow{color:var(--blue);font-size:12px;font-weight:800}
.page-intro h1{max-width:750px;margin:10px 0 15px;font-size:46px;line-height:1.22}
.page-intro p{max-width:720px;color:var(--muted);margin:0}
.intro-note{border-left:3px solid var(--orange);padding:17px 20px;background:#fff8f3;color:#6d4c3d;font-size:14px}
.toolbar-wrap{padding:28px 0;background:var(--paper)}
.toolbar{display:grid;grid-template-columns:1.5fr 1fr 1fr auto;gap:12px;align-items:end;padding:20px;background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow)}
.field label{display:block;margin-bottom:5px;color:var(--muted);font-size:12px;font-weight:800}
.field input,.field select{width:100%;height:44px;margin:0;border:1px solid var(--line);border-radius:5px;background:#fbfcfe;color:var(--ink);padding:0 12px;box-shadow:none}
.field input:focus,.field select:focus{outline:3px solid rgba(36,88,166,.16);border-color:var(--blue);background:#fff}
.button{display:inline-flex;justify-content:center;align-items:center;gap:8px;min-height:44px;padding:0 18px;border:1px solid transparent;border-radius:6px;font-weight:800}
.button.primary{background:var(--blue);color:#fff}
.button.primary:hover{background:var(--blue-dark);transform:translateY(-2px);box-shadow:0 8px 18px rgba(36,88,166,.22)}
.button.outline{background:#fff;border-color:#adc1da;color:var(--blue)}
.button.outline:hover{border-color:var(--blue);background:var(--blue-soft)}
.tag{display:inline-block;padding:3px 9px;border-radius:4px;background:var(--blue-soft);color:var(--blue);font-size:12px;font-weight:800}
.tag.orange{background:#fff0e8;color:#b95e31}
.tag.teal{background:#e8f5f3;color:#28736e}
.results-section{padding:56px 0 80px}
.section-head{display:flex;justify-content:space-between;align-items:end;gap:24px;margin-bottom:28px}
.section-head h2{margin:5px 0 0;font-size:30px;line-height:1.3}
.section-head p{max-width:570px;margin:0;color:var(--muted)}
.result-layout{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:26px}
.result-list{display:grid;gap:14px}
.result-item{display:grid;grid-template-columns:184px minmax(0,1fr) auto;gap:20px;align-items:center;padding:16px;background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow)}
.result-item:hover{transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.thumb{width:184px;aspect-ratio:16/10;overflow:hidden;border-radius:5px;background:#dfe8f4;position:relative}
.thumb img{width:100%;height:100%;object-fit:cover}
.thumb:after{content:"";position:absolute;inset:0;background:linear-gradient(135deg,rgba(23,62,121,.3),transparent 60%)}
.result-copy h3{margin:7px 0 5px;font-size:20px;line-height:1.35}
.result-copy p{margin:0 0 8px;color:var(--muted);font-size:14px;line-height:1.6}
.meta{display:flex;flex-wrap:wrap;gap:8px;color:var(--muted);font-size:12px}
.item-action{white-space:nowrap}
.side-panel{padding:24px;background:#173e79;color:#fff;border-radius:var(--radius);min-height:100%}
.side-panel h3{margin:0 0 12px;font-size:22px}
.side-panel p{color:#d7e3f5;font-size:14px}
.side-list{margin:20px 0 0;padding:0;list-style:none}
.side-list li{padding:12px 0;border-top:1px solid rgba(255,255,255,.17);font-size:14px}
.side-list span{display:block;color:#a9c3e2;font-size:12px}
.pagination{display:flex;justify-content:center;gap:8px;margin-top:34px}
.pagination a,.pagination span{min-width:42px;height:42px;display:grid;place-items:center;border:1px solid var(--line);border-radius:5px;background:#fff;color:var(--blue);font-weight:700}
.pagination a:hover,.pagination .current{background:var(--blue);border-color:var(--blue);color:#fff}
.related{padding:54px 0;background:#fff;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.related-links{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
.related-links a{padding:10px 15px;border:1px solid var(--line);border-radius:5px;background:#fbfcfe;color:var(--blue);font-weight:700}
.related-links a:hover{border-color:var(--blue);background:var(--blue-soft)}
.faq{padding:70px 0}
.accordion{margin:0;background:transparent}
.accordion-item{border:1px solid var(--line);border-bottom:0;background:#fff}
.accordion-item:first-child{border-radius:8px 8px 0 0}
.accordion-item:last-child{border-bottom:1px solid var(--line);border-radius:0 0 8px 8px}
.accordion-title{padding:18px 22px;color:var(--ink);font-weight:800;font-size:16px}
.accordion-title:hover,.accordion-title:focus{background:var(--blue-soft);color:var(--blue)}
.accordion-content{border-top:1px solid var(--line);padding:18px 22px;color:var(--muted);font-size:14px;line-height:1.8}
.notice{margin-top:25px;padding:17px 20px;border-left:3px solid var(--teal);background:#eaf5f3;color:#315e5a;font-size:14px}
.footer{padding:56px 0 22px;background:#e9eff7;border-top:1px solid var(--line)}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:48px}
.footer p{max-width:420px;color:var(--muted);font-size:14px}
.footer h3{margin:0 0 13px;font-size:15px}
.footer-links{display:grid;gap:8px;color:#52657e;font-size:14px}
.footer-links a:hover{color:var(--orange)}
.copyright{display:flex;justify-content:space-between;gap:20px;margin-top:42px;padding-top:18px;border-top:1px solid #ccd8e7;color:#738197;font-size:12px}
:focus-visible{outline:3px solid rgba(217,121,66,.55);outline-offset:3px}
@media(max-width:1024px){
 .intro-grid,.result-layout{grid-template-columns:1fr}
 .intro-note{max-width:600px}
 .toolbar{grid-template-columns:1fr 1fr}
 .side-panel{min-height:auto}
}
@media(max-width:768px){
 .container{width:min(100% - 28px,620px)}
 .brand-row{min-height:64px}
 .brand{min-width:0}
 .brand-name{font-size:14px}
 .brand-note{font-size:10px}
 .header-tools .search-mini{display:none}
 .menu-button{display:block}
 .channel-nav{min-height:44px}
 .channel-nav a{padding:9px 11px;font-size:13px}
 .channel-nav a.active:after{left:11px;right:11px}
 .page-intro{padding:42px 0 36px}
 .page-intro h1{font-size:34px}
 .section-head{display:block}
 .section-head p{margin-top:10px}
 .toolbar{grid-template-columns:1fr;padding:16px}
 .result-item{grid-template-columns:118px minmax(0,1fr);gap:14px}
 .thumb{width:118px}
 .item-action{grid-column:2;justify-self:start}
 .footer-grid{grid-template-columns:1fr;gap:28px}
 .copyright{display:block}
 .copyright span{display:block;margin-top:6px}
}
@media(max-width:520px){
 .brand-mark{width:34px;height:34px}
 .page-intro h1{font-size:29px}
 .result-item{grid-template-columns:1fr}
 .thumb{width:100%;aspect-ratio:16/9}
 .item-action{grid-column:1;width:100%}
 .item-action .button{width:100%}
 .pagination a,.pagination span{min-width:38px;height:38px}
}
