/* ===== Reset & Variables ===== */ *,*::before,*::after{margin:0;padding:0;box-sizing:border-box;} ul,ol{list-style:none;} :root{ --orange:#E8751A; --orange-dark:#C96012; --orange-light:#F5A623; --red:#CC2929; --red-light:#E84040; --blue:#3B82C4; --blue-dark:#1A3550; --white:#fff; --gray-bg:#F5F6F8; --gray-100:#ECEEF1; --gray-300:#C4C8CE; --gray-400:#A0A5AD; --gray-500:#7A8290; --gray-600:#565C67; --gray-700:#3D4451; --gray-900:#1A1D24; --font-cn:"Microsoft YaHei","PingFang SC",sans-serif; --font-en:"Roboto",sans-serif; } html,body{height:100%;font-family:var(--font-cn);color:var(--gray-900);line-height:1.7;background:#fff;} /* Iconfont 场景化样式 */ .iconfont.icon-view{font-size:14px;color:var(--gray-500);} .iconfont.icon-phone{font-size:18px;color:var(--orange);} .iconfont.icon-email{font-size:18px;color:#165DFF;} .iconfont.icon-dizhi{font-size:14px;color:#E8751A;} .iconfont.icon-clipboard{font-size:14px;color:var(--orange);} .iconfont.icon-email-empty{font-size:48px;color:var(--gray-300);} .iconfont.icon-lock{font-size:13px;color:var(--gray-400);} .ct-info-icon .iconfont{font-size:20px;} .ct-info-icon.orange .iconfont{color:var(--orange);} .ct-info-icon.blue .iconfont{color:#165DFF;} .ct-info-icon.green .iconfont{color:#00B42A;} .ct-map-header .iconfont{font-size:18px;color:var(--orange);} .job-tag.location .iconfont{font-size:12px;} .job-contact .iconfont{font-size:14px;} .job-nav-title .iconfont{font-size:15px;} .proj-detail-meta .iconfont,.article-detail-meta .iconfont{font-size:14px;color:var(--gray-500);vertical-align:-1px;} a{text-decoration:none;color:inherit;transition:.2s;} img{max-width:100%;display:block;image-rendering:crisp-edges;image-rendering:-webkit-optimize-contrast;image-rendering:-moz-crisp-edges;} /* ===== Fixed Header ===== */ .fixed-header{ position:fixed;top:0;left:0;right:0;z-index:1000; display:flex;align-items:center; padding:0 60px;height:72px; background:rgba(255,255,255,.92);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px); box-shadow:0 2px 12px rgba(0,0,0,.04); transition:all .4s; } .logo{display:flex;align-items:center;position:relative;z-index:2;} .logo-img{height:44px;width:auto;transition:.3s;} .header-right{display:flex;align-items:center;gap:12px;margin-left:auto;position:relative;z-index:2;} .header-nav{display:flex;align-items:center;gap:4px;position:absolute;left:50%;transform:translateX(-50%);white-space:nowrap;} .nav-link{ position:relative;padding:8px 14px;font-size:15px;font-weight:500; color:var(--gray-700);letter-spacing:1px;transition:.25s;border-radius:4px;white-space:nowrap; } .nav-link:hover,.nav-link.active{color:var(--orange);} /* Dropdown */ .nav-dropdown{position:relative;} .nav-dropdown .dropdown-menu{ position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(4px); min-width:160px;background:rgba(255,255,255,.98);backdrop-filter:blur(12px);border-radius:8px; box-shadow:0 8px 32px rgba(0,0,0,.12);padding:8px 0;border:1px solid rgba(0,0,0,.06); opacity:0;visibility:hidden;transition:.25s;pointer-events:none; } .nav-dropdown:hover .dropdown-menu{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);pointer-events:auto;} .dropdown-menu a{display:block;padding:10px 24px;font-size:14px;color:var(--gray-700);white-space:nowrap;transition:.15s;text-align:center;} .dropdown-menu a:hover{color:var(--orange);background:rgba(232,117,26,.04);} /* Header Search */ .header-search{position:relative;display:flex;align-items:center;} .header-search-btn{background:none;border:none;cursor:pointer;color:var(--gray-500);padding:6px;border-radius:50%;transition:.2s;display:flex;align-items:center;justify-content:center;} .header-search-btn:hover{color:var(--orange);} .header-search-box{position:absolute;right:0;top:50%;transform:translateY(-50%);width:0;overflow:hidden;transition:width .3s;display:flex;align-items:center;background:#fff;border-radius:24px;border:1px solid transparent;height:38px;} .header-search-box.open{width:260px;border-color:var(--orange);box-shadow:0 2px 12px rgba(0,0,0,.08);} .header-search-box input{flex:1;border:none;outline:none;font-size:14px;padding:0 12px;height:100%;background:transparent;font-family:var(--font-cn);color:var(--gray-900);min-width:0;} .header-search-box input::placeholder{color:var(--gray-300);} .header-search-go{background:var(--orange);border:none;cursor:pointer;color:#fff;width:30px;height:30px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin-right:4px;flex-shrink:0;transition:.2s;} .header-search-go:hover{background:var(--orange-dark);} .header-search-mobile{display:none;color:var(--gray-500);padding:6px;transition:.2s;} .header-search-mobile:hover{color:var(--orange);} /* Mobile Menu Button */ .mobile-menu-btn{ display:none;width:32px;height:32px;background:none;border:none;cursor:pointer; flex-direction:column;justify-content:center;align-items:center;gap:5px;padding:4px; } .mobile-menu-btn span{display:block;width:20px;height:2px;background:var(--gray-700);transition:.3s;} /* Mobile Menu Overlay */ .mobile-menu-overlay{ position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:1001; opacity:0;visibility:hidden;transition:.3s; } .mobile-menu-overlay.open{opacity:1;visibility:visible;} /* Mobile Menu Drawer */ .mobile-menu{ position:fixed;top:0;right:-280px;width:280px;height:100%; background:#fff;z-index:1002;transition:.3s; display:flex;flex-direction:column; } .mobile-menu.open{right:0;} .mobile-menu-header{ display:flex;align-items:center;justify-content:space-between; padding:16px 20px;border-bottom:1px solid var(--gray-100); } .mobile-logo{height:32px;} .mobile-menu-close{ width:32px;height:32px;background:none;border:none; font-size:24px;color:var(--gray-500);cursor:pointer; } .mobile-nav{flex:1;overflow-y:auto;padding:12px 0;} .mobile-nav-item{border-bottom:1px solid var(--gray-100);} .mobile-nav-link{ display:flex;align-items:center;justify-content:space-between; padding:14px 20px;font-size:15px;color:var(--gray-700); } .mobile-nav-arrow{font-size:18px;transition:.3s;} .mobile-nav-item.open .mobile-nav-arrow{transform:rotate(90deg);} .mobile-nav-sub{display:none;background:var(--gray-bg);padding:8px 0;} .mobile-nav-item.open .mobile-nav-sub{display:block;} .mobile-nav-sub a{display:block;padding:10px 20px 10px 36px;font-size:14px;color:var(--gray-500);} .mobile-nav-sub a:hover{color:var(--orange);} /* ===== Swiper Fullpage ===== */ .swiper-fullpage{width:100%;height:100vh;overflow:hidden;} .swiper-fullpage .swiper-slide{height:100vh!important;overflow:hidden;position:relative;} /* ===== Slide Labels (right side dots) ===== */ .slide-labels{ position:fixed;right:36px;top:50%;transform:translateY(-50%);z-index:999; display:flex;flex-direction:column;gap:24px; } .slide-label{ display:flex;align-items:center;gap:10px;cursor:pointer; flex-direction:row-reverse; } .slide-label .dot{ width:10px;height:10px;border-radius:50%; background:rgba(255,255,255,.3);border:2px solid rgba(255,255,255,.5); transition:.3s;flex-shrink:0; } .slide-label.active .dot{ background:var(--orange);border-color:var(--orange); width:10px;height:24px;border-radius:5px; } .slide-label .txt{ font-size:12px;color:rgba(255,255,255,.5);letter-spacing:1px; opacity:0;transform:translateX(8px);transition:.25s;white-space:nowrap; } .slide-label:hover .txt{opacity:1;transform:translateX(0);} .slide-label.active .txt{opacity:1;transform:translateX(0);color:var(--orange);} .slide-labels.light .slide-label .dot{background:rgba(0,0,0,.1);border-color:rgba(0,0,0,.2);} .slide-labels.light .slide-label.active .dot{background:var(--orange);border-color:var(--orange);} .slide-labels.light .slide-label .txt{color:rgba(0,0,0,.3);} .slide-labels.light .slide-label.active .txt{color:var(--orange);} /* ===== Slide 1: Banner ===== */ .slide-banner{background:#0a0a0a;height:100vh;position:relative;} .banner-swiper{width:100%;height:100%;} .banner-swiper .swiper-slide{height:100vh!important;overflow:hidden;} .banner-slide-bg{ position:absolute;inset:0; background:center/cover no-repeat; filter:brightness(.85);transition:transform 6s ease-out; } .banner-swiper .swiper-slide-active .banner-slide-bg{transform:scale(1.05);} .banner-slide-content{ position:absolute;top:50%;left:120px;transform:translateY(-50%); z-index:2;display:flex;flex-direction:column; align-items:flex-start;max-width:700px; } .banner-slide-content.pos-left{left:120px;right:auto;align-items:flex-start;text-align:left;} .banner-slide-content.pos-center{left:50%;transform:translate(-50%,-50%);align-items:center;text-align:center;} .banner-slide-content.pos-right{left:auto;right:120px;align-items:flex-end;text-align:right;} .banner-slide-content.glass-on{ background:rgba(0,0,0,.25);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px); border-radius:16px;border:1px solid rgba(255,255,255,.1); padding:48px 60px; } .banner-slide-content.pos-center.glass-on{transform:translate(-50%,-50%);} .banner-slide-content h1{ font-size:48px;font-weight:700;color:#fff;line-height:1.3; margin-bottom:20px;letter-spacing:2px; opacity:0;transform:translateY(40px);transition:all .8s .3s; } .banner-swiper .swiper-slide-active .banner-slide-content h1{opacity:1;transform:translateY(0);} .banner-slide-content .desc{ font-size:16px;color:rgba(255,255,255,.75);line-height:1.9;max-width:600px; margin-bottom:40px; opacity:0;transform:translateY(30px);transition:all .8s .5s; } .banner-swiper .swiper-slide-active .banner-slide-content .desc{opacity:1;transform:translateY(0);} .banner-slide-content .btns{ display:flex;gap:16px; opacity:0;transform:translateY(20px);transition:all .8s .7s; } .banner-swiper .swiper-slide-active .banner-slide-content .btns{opacity:1;transform:translateY(0);} .banner-swiper .swiper-pagination{bottom:90px!important;} .banner-swiper .swiper-pagination-bullet{ width:32px;height:4px;border-radius:2px; background:rgba(255,255,255,.35);opacity:1;border:none;transition:.3s; } .banner-swiper .swiper-pagination-bullet-active{width:48px;background:var(--orange);} .btn-primary{ padding:14px 40px;border-radius:30px;font-size:15px;font-weight:600; background:var(--orange);color:#fff;letter-spacing:1px;transition:.3s; display:inline-block; } .btn-primary:hover{background:var(--orange-dark);transform:translateY(-2px);box-shadow:0 8px 24px rgba(232,117,26,.3);} .btn-ghost{ padding:14px 40px;border-radius:30px;font-size:15px;font-weight:600; background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.5); letter-spacing:1px;transition:.3s;display:inline-block; } .btn-ghost:hover{border-color:#fff;background:rgba(255,255,255,.1);} .scroll-hint{ position:absolute;bottom:40px;left:50%;transform:translateX(-50%);z-index:2; display:flex;flex-direction:column;align-items:center;gap:8px; color:rgba(255,255,255,.5);font-size:12px;letter-spacing:2px; } .scroll-hint .mouse{ width:24px;height:38px;border:2px solid rgba(255,255,255,.4);border-radius:12px; position:relative; } .scroll-hint .mouse::after{ content:"";position:absolute;top:6px;left:50%;transform:translateX(-50%); width:3px;height:8px;background:rgba(255,255,255,.6);border-radius:2px; animation:scrollDown 1.8s infinite; } @keyframes scrollDown{0%{opacity:1;top:6px;}100%{opacity:0;top:22px;}} /* ===== Slide 2: Donation Data ===== */ .slide-donation{ background:linear-gradient(135deg,#fff8f0 0%,#fff 50%,#f0f7ff 100%); display:flex;align-items:center;justify-content:center; height:100vh;padding-top:72px; } .donation-wrap{ width:100%;max-width:1300px;padding:0 40px; max-height:calc(100vh - 72px);overflow:hidden; opacity:0;transform:translateY(50px);transition:all .9s .2s; display:flex;flex-direction:column; } .swiper-slide-active .donation-wrap{opacity:1;transform:translateY(0);} .section-head{text-align:center;margin-bottom:2vh;} .section-head h2{font-size:clamp(24px,3vw,36px);font-weight:700;color:var(--gray-900);margin-bottom:4px;} .section-head h2::after{content:"";display:block;width:40px;height:3px;background:linear-gradient(90deg,var(--red),var(--orange));margin:8px auto 0;border-radius:2px;} .section-head .en{font-family:var(--font-en);font-size:13px;color:var(--gray-300);letter-spacing:3px;text-transform:uppercase;} .data-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:2vh;} .data-card{ background:rgba(255,255,255,.65);backdrop-filter:blur(16px); border-radius:14px;padding:18px 16px;text-align:center; box-shadow:0 8px 32px rgba(0,0,0,.06),inset 0 1px 0 rgba(255,255,255,.8); border:1px solid rgba(255,255,255,.6);transition:.3s; } .data-card:hover{transform:translateY(-4px);box-shadow:0 16px 48px rgba(232,117,26,.12);border-color:var(--orange-light);} .data-card .label{font-size:14px;color:var(--gray-500);margin-bottom:4px;} .data-card .amount{font-family:var(--font-en);font-size:clamp(20px,2.2vw,28px);font-weight:700;color:var(--orange);} .data-card .amount .unit{font-size:14px;color:var(--gray-500);font-weight:400;margin-left:4px;} .data-card .note{font-size:12px;color:var(--gray-300);margin-top:2px;} .donation-tables{display:grid;grid-template-columns:1fr 1fr;gap:16px;flex:1;min-height:0;} .dtable{ background:rgba(255,255,255,.6);backdrop-filter:blur(16px); border-radius:14px;padding:14px; box-shadow:0 8px 32px rgba(0,0,0,.06);border:1px solid rgba(255,255,255,.6); } .dtable h3{font-size:14px;font-weight:600;color:var(--gray-900);margin-bottom:6px;padding-bottom:5px;border-bottom:2px solid var(--orange-light);} .dtable table{width:100%;border-collapse:collapse;font-size:13px;table-layout:fixed;} .dtable th{text-align:center;padding:5px 8px;color:var(--gray-500);font-weight:500;border-bottom:1px solid var(--gray-100);} .dtable td{text-align:center;padding:5px 8px;color:var(--gray-700);border-bottom:1px solid var(--gray-100);} .dtable .td-r{font-family:var(--font-en);font-weight:500;color:var(--orange);} .dtable-head{margin-bottom:0;} .dtable-scroll-wrap{max-height:140px;overflow:hidden;position:relative;} .dtable-scroll-wrap.donation-scroll .dtable-scroll-inner{animation:donationScroll 15s linear infinite;} .dtable-scroll-wrap.donation-scroll:hover .dtable-scroll-inner{animation-play-state:paused;} @keyframes donationScroll{0%{transform:translateY(0);}100%{transform:translateY(-50%);}} .dtable-drug{grid-column:1/-1;} .dtable-drug h3{border-bottom-color:var(--orange);} .dtable-drug .drug-name{color:var(--orange);font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%;display:block;} .drug-scroll-wrap{max-height:140px;overflow:hidden;position:relative;} .drug-scroll-inner{animation:drugScroll 18s linear infinite;} .drug-scroll-wrap:hover .drug-scroll-inner{animation-play-state:paused;} @keyframes drugScroll{0%{transform:translateY(0);}100%{transform:translateY(-50%);}} /* ===== Slide 3: Projects ===== */ .slide-projects{ position:relative;height:100vh;overflow:hidden;cursor:grab; } .slide-projects.dragging{cursor:grabbing;} .slide-projects .proj-bg{ position:absolute;inset:0; background:center/cover no-repeat; filter:brightness(.65); transition:opacity .8s,transform 6s ease-out; opacity:0; } .slide-projects .proj-bg.active{opacity:1;} .swiper-slide-active .slide-projects .proj-bg.active{transform:scale(1.04);} .proj-info-card{ position:absolute;top:50%;right:8%;transform:translateY(-50%); width:380px; background:rgba(232,117,26,.88);backdrop-filter:blur(8px); border-radius:4px;padding:48px 40px;color:#fff; opacity:0;transform:translateY(-50%) translateX(40px); transition:all .7s .3s;z-index:5; } .swiper-slide-active .proj-info-card{opacity:1;transform:translateY(-50%) translateX(0);} .proj-info-card .card-label{ font-size:13px;letter-spacing:3px;opacity:.8;margin-bottom:12px; display:flex;align-items:center;gap:8px; } .proj-info-card .card-label::before{ content:"";display:block;width:24px;height:2px;background:var(--red-light);opacity:.8; } .proj-info-card h3{font-size:28px;font-weight:700;line-height:1.4;margin-bottom:16px;} .proj-info-card .card-divider{width:40px;height:2px;background:#fff;opacity:.5;margin-bottom:16px;} .proj-info-card p{font-size:15px;line-height:1.9;opacity:.9;margin-bottom:24px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;} .proj-info-card .card-btn{ display:inline-flex;align-items:center;gap:6px; padding:10px 28px;border:1.5px solid rgba(255,255,255,.6);border-radius:24px; font-size:14px;color:#fff;transition:.3s; } .proj-info-card .card-btn:hover{background:rgba(255,255,255,.15);border-color:#fff;} .proj-tabs{ position:absolute;bottom:60px;left:50%;transform:translateX(-50%); z-index:5;display:flex;gap:0;max-width:60vw; } .proj-tab{ padding:14px 28px;cursor:pointer; font-size:14px;color:rgba(255,255,255,.6); border-bottom:3px solid transparent; transition:.3s;white-space:nowrap;letter-spacing:1px; overflow:hidden;text-overflow:ellipsis;max-width:200px; } .proj-tab:hover{color:rgba(255,255,255,.85);} .proj-tab.active{color:#fff;border-bottom-color:var(--red);font-weight:600;} /* Mobile project nav (hidden on PC) */ .proj-mobile-nav{display:none;} .proj-nav-btn{ width:32px;height:32px;border-radius:50%;border:1.5px solid rgba(255,255,255,.6); background:rgba(0,0,0,.2);color:#fff;font-size:20px;line-height:1; cursor:pointer;transition:.2s;display:flex;align-items:center;justify-content:center; } .proj-nav-btn:hover{background:rgba(255,255,255,.2);border-color:#fff;} .proj-counter{font-size:13px;color:rgba(255,255,255,.8);letter-spacing:1px;} .proj-more-link{ position:absolute;bottom:24px;left:50%;transform:translateX(-50%); z-index:5;font-size:13px;color:rgba(255,255,255,.5); letter-spacing:2px;transition:.2s; } .proj-more-link:hover{color:var(--orange);} /* ===== Slide 4: News ===== */ .slide-news{ background:#fff; display:flex;align-items:center;justify-content:center; height:100vh;padding-top:72px; } .news-wrap{ width:100%;max-width:1200px;padding:0 60px; max-height:calc(100vh - 72px);overflow:hidden; opacity:0;transform:translateY(50px);transition:all .9s .2s; } .swiper-slide-active .news-wrap{opacity:1;transform:translateY(0);} .news-grid{display:grid;grid-template-columns:1fr 1fr;gap:36px;align-items:stretch;} .news-featured{border-radius:14px;overflow:hidden;position:relative;cursor:pointer;display:flex;} .news-featured img{width:100%;height:100%;object-fit:cover;transition:.5s;} .news-featured:hover img{transform:scale(1.03);} .news-featured .overlay{ position:absolute;bottom:0;left:0;right:0; padding:24px;background:linear-gradient(transparent,rgba(0,0,0,.7)); color:#fff; } .news-featured .overlay h3{font-size:16px;font-weight:600;margin-bottom:4px;} .news-featured .overlay .date{font-size:13px;opacity:.7;} .news-list{display:flex;flex-direction:column;gap:0;} .news-item{ display:flex;align-items:flex-start;gap:16px; padding:14px 0;border-bottom:1px solid var(--gray-100); cursor:pointer;transition:.2s; } .news-item:hover{padding-left:8px;} .news-item .date-box{flex-shrink:0;width:54px;text-align:center;} .news-item .date-box .day{font-family:var(--font-en);font-size:28px;font-weight:700;color:var(--orange);line-height:1;} .news-item .date-box .ym{font-size:12px;color:var(--gray-300);white-space:nowrap;margin-top:2px;} .news-item .text h4{font-size:14px;font-weight:500;color:var(--gray-900);margin-bottom:4px;line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;} .news-item .text p{font-size:13px;color:var(--gray-500);display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;} .more-link{font-size:13px;color:var(--orange);letter-spacing:1px;} .more-link:hover{text-decoration:underline;} /* ===== Slide 5: Partners + Footer ===== */ .slide-footer{ background:#F8F9FA; display:flex;flex-direction:column;justify-content:flex-start;align-items:center; height:100vh;padding-top:72px;overflow:hidden; } .partners-section{ width:100%;max-width:1200px;padding:40px 60px;flex:1; display:flex;flex-direction:column; opacity:0;transform:translateY(50px);transition:all .9s .2s; } .swiper-slide-active .partners-section{opacity:1;transform:translateY(0);} /* Partners carousel - 2 rows, 5 per row */ .partners-carousel-wrap{ position:relative;width:100%;flex:1;display:flex;align-items:center; } .partners-carousel-viewport{ flex:1;overflow:hidden;margin:0 50px; } .partners-carousel{ display:grid;grid-template-rows:repeat(2,1fr);grid-auto-flow:column;grid-auto-columns:calc((100% - 80px) / 5); gap:20px;transition:transform .5s ease; } .partner-item{ background:#fff;border-radius:12px;padding:20px; display:flex;align-items:center;justify-content:center; box-shadow:0 2px 12px rgba(0,0,0,.03);border:1px solid var(--gray-100); transition:.3s;min-height:160px;position:relative;overflow:hidden; } .partner-item:hover{box-shadow:0 8px 24px rgba(0,0,0,.08);transform:translateY(-2px);} .partner-item img{max-height:100px;width:auto;filter:grayscale(.3);transition:.3s;} .partner-item:hover img{filter:grayscale(0);} .partner-name{ position:absolute;bottom:0;left:0;right:0;background:rgba(0,0,0,.65);color:#fff;font-size:13px; text-align:center;padding:8px 6px;opacity:0;transition:opacity .25s;pointer-events:none; } .partner-item:hover .partner-name{opacity:1;} /* Carousel navigation - only show when needed */ .partners-nav{ position:absolute;top:50%;transform:translateY(-50%); width:40px;height:40px;border-radius:50%; background:rgba(255,255,255,.9);border:1px solid var(--gray-100); display:none;align-items:center;justify-content:center; cursor:pointer;transition:.3s;z-index:10; box-shadow:0 2px 12px rgba(0,0,0,.08); } .partners-carousel-wrap.has-more .partners-nav{display:flex;} .partners-nav:hover{background:#fff;box-shadow:0 4px 16px rgba(0,0,0,.12);} .partners-nav.prev{left:0;} .partners-nav.next{right:0;} .partners-nav svg{width:20px;height:20px;stroke:var(--gray-700);} /* Footer */ .footer-component{ width:100%; background:linear-gradient(to bottom,#fb8c1e,#f27019); position:relative;display:flex;flex-direction:column;flex-shrink:0; } .footer-main{flex:1;display:flex;align-items:center;padding:40px 0 20px;} .footer-content{ max-width:1200px;width:100%;margin:0 auto;padding:0; display:flex;justify-content:space-between;align-items:flex-start;gap:40px; } .footer-left{flex:1;display:flex;flex-direction:column;gap:12px;padding-right:60px;} .footer-logo{width:180px;height:auto;} .footer-title{font-size:22px;font-weight:600;color:#fff;letter-spacing:1px;} .footer-info p{font-size:14px;color:#fff;line-height:2;text-indent:2em;} .footer-mid{flex:1;display:flex;align-items:flex-start;gap:40px;} .footer-qr-section{flex:0 0 auto;} .footer-section{display:flex;flex-direction:column;gap:8px;} .footer-section-title{ font-size:16px;font-weight:700;color:#fff;margin-bottom:8px; display:flex;align-items:center;gap:8px; } .footer-section-title svg{flex-shrink:0;} .footer-links-list{display:grid;grid-template-columns:repeat(2,auto);gap:6px 0;list-style:none;padding:0;margin:0;} .footer-links-list li{font-size:14px;line-height:1.5;white-space:nowrap;padding-right:12px;border-right:1px solid rgba(255,255,255,.4);} .footer-links-list li:nth-child(2n){border-right:none;padding-right:0;padding-left:12px;} .footer-links-list a{color:#fff;transition:color .2s;white-space:nowrap;} .footer-links-list a:hover{color:#fedab7;} .footer-contact{font-size:13px;color:#fff;line-height:1.8;} .footer-contact a{color:#fff;transition:color .2s;} .footer-contact a:hover{color:#fedab7;} .footer-qr{text-align:center;} .footer-qr img{width:100px;height:auto;border-radius:4px;background:#fff;object-fit:contain;} .footer-bottom{border-top:1px solid rgba(255,255,255,.2);padding:16px 0;} .footer-bottom-content{ max-width:1200px;width:100%;margin:0 auto;padding:0; display:flex;justify-content:space-between;align-items:center; } .footer-copyright{font-size:13px;color:#fedab7;} .footer-company{font-size:13px;color:#fedab7;} /* ===== Responsive ===== */ /* ===== Column Page ===== */ .col-banner{ position:relative;height:280px; background:center/cover no-repeat var(--orange); display:flex;align-items:center;justify-content:center; margin-top:72px; } .col-banner-overlay{ position:absolute;inset:0; background:linear-gradient(180deg,rgba(0,0,0,.15) 0%,rgba(0,0,0,.4) 100%); } .col-banner-content{ position:relative;z-index:1;text-align:center;color:#fff; } .col-banner-content h1{ font-size:42px;font-weight:700;letter-spacing:2px;margin-bottom:12px; } .col-banner-en{ font-family:var(--font-en);font-size:16px;letter-spacing:3px; text-transform:uppercase;opacity:.9;margin-bottom:16px; } .col-banner-desc{ font-size:18px;opacity:.95;letter-spacing:2px; } /* Sub Tabs */ .col-tabs-wrap{ background:var(--gray-bg);border-bottom:none; position:sticky;top:72px;z-index:100;padding:12px 0; } .col-tabs{ max-width:1200px;margin:0 auto;display:flex;justify-content:center; gap:24px;align-items:center; } .col-tab{ padding:6px 32px;font-size:16px;color:#606266; border:none;border-radius:24px;transition:.3s;white-space:nowrap; font-weight:500;background:transparent; } .col-tab:hover{color:#fff;background:rgba(232,117,26,.8);} .col-tab.active{ color:#fff;background:var(--orange);font-weight:600; } /* Breadcrumb */ .col-breadcrumb-wrap{ background:#fff;border-bottom:none; } .col-breadcrumb{ max-width:1200px;margin:0 auto;padding:20px 0; font-size:14px;color:#909399; } .col-breadcrumb a{color:#606266;transition:.2s;} .col-breadcrumb a:hover{color:var(--orange);} .col-breadcrumb .sep{margin:0 8px;color:#C0C4CC;} .col-breadcrumb .current{color:var(--orange);} /* Content Area */ .col-content-wrap{background:#fff;min-height:50vh;} .col-content{ max-width:1200px;margin:0 auto;padding:0 0 40px; } .col-empty{ text-align:center;padding:80px 0;color:var(--gray-300);font-size:15px;grid-column:1/-1; } /* Section Title */ .col-section-title{ font-size:28px;font-weight:700;color:var(--gray-900); margin-bottom:32px;padding-bottom:16px; border-bottom:3px solid var(--orange);display:inline-block; } /* Page Content */ .col-page-body{line-height:2;font-size:15px;color:var(--gray-700);} .col-page-body img{max-width:100%;height:auto;border-radius:8px;margin:16px auto;display:block;} .col-page-body p{margin-bottom:16px;} /* Article List V2 */ .col-article-list-v2{display:flex;flex-direction:column;gap:32px;} /* Featured (first article) */ .col-art-featured{ display:block;position:relative;border-radius:14px;overflow:hidden; height:400px;box-shadow:0 8px 32px rgba(0,0,0,.1); } .col-art-featured-img{width:100%;height:100%;} .col-art-featured-img img{width:100%;height:100%;object-fit:cover;transition:.6s;} .col-art-featured:hover .col-art-featured-img img{transform:scale(1.04);} .col-art-featured-overlay{ position:absolute;bottom:0;left:0;right:0; padding:28px 32px;background:linear-gradient(transparent 0%,rgba(0,0,0,.35) 30%,rgba(0,0,0,.8) 100%); color:#fff; } .col-art-featured-overlay h3{font-size:22px;font-weight:700;line-height:1.5;margin-bottom:6px;} .col-art-featured-overlay p{font-size:14px;opacity:.8;line-height:1.7;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;} .col-art-date{font-size:12px;opacity:.6;margin-top:6px;display:inline-flex;align-items:center;gap:4px;} .col-art-date::before{content:'';display:inline-block;width:14px;height:14px;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") no-repeat center/contain;opacity:.7;} .col-art-tag{ display:inline-block;padding:4px 12px;border-radius:4px; background:var(--orange);color:#fff;font-size:12px;font-weight:600; margin-bottom:10px;letter-spacing:.5px; } /* Card list */ .col-art-cards{display:flex;flex-direction:column;gap:20px;} .col-art-card{ display:flex;gap:0;border-radius:12px;overflow:hidden; background:#fff;box-shadow:0 2px 12px rgba(0,0,0,.06); border:1px solid var(--gray-100);transition:.3s; } .col-art-card:hover{box-shadow:0 8px 28px rgba(232,117,26,.1);border-color:rgba(232,117,26,.2);transform:translateY(-2px);} .col-art-card{height:180px;} .col-art-card-cover{flex-shrink:0;width:260px;height:100%;overflow:hidden;} .col-art-card-cover img{width:100%;height:100%;object-fit:cover;transition:.4s;} .col-art-card:hover .col-art-card-cover img{transform:scale(1.06);} .col-art-no-cover{ width:100%;height:100%;display:flex;align-items:center;justify-content:center; background:linear-gradient(135deg,var(--orange) 0%,var(--orange-dark) 100%); color:#fff;font-size:28px;font-weight:700;letter-spacing:2px; } .col-art-card-body{ flex:1;padding:20px 24px;display:flex;flex-direction:column;justify-content:space-between; } .col-art-tag-sm{ display:inline-block;padding:2px 10px;border-radius:4px; background:rgba(232,117,26,.08);color:var(--orange);font-size:12px;font-weight:500; margin-bottom:8px; } .col-art-card-body h4{font-size:17px;font-weight:600;color:var(--gray-900);line-height:1.5;margin-bottom:6px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;} .col-art-card-body p{font-size:13px;color:var(--gray-500);line-height:1.7;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;margin:0;} .col-art-card-bottom{display:flex;align-items:center;justify-content:space-between;margin-top:auto;padding-top:12px;} .col-art-card-date{font-size:12px;color:var(--gray-300);font-family:var(--font-en);display:inline-flex;align-items:center;gap:4px;} .col-art-card-date::before{content:'';display:inline-block;width:13px;height:13px;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23C4C8CE' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") no-repeat center/contain;} .col-art-card-more{font-size:13px;color:var(--orange);font-weight:500;opacity:0;transition:.3s;} .col-art-card:hover .col-art-card-more{opacity:1;} /* Image Grid (Certificate Style) */ .col-image-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;} .col-image-item{ background:#fff;border-radius:8px;overflow:hidden; box-shadow:0 4px 16px rgba(0,0,0,.08);transition:.3s;cursor:pointer; } .col-image-item:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(232,117,26,.15);} .col-image-thumb{ width:100%;height:320px;background:var(--gray-bg); display:flex;align-items:center;justify-content:center;overflow:hidden; } .col-image-thumb img{width:100%;height:100%;object-fit:contain;padding:16px;} .col-image-title{ padding:16px;text-align:center;font-size:14px;color:var(--gray-900);background:#fff; } /* Text List */ .col-text-list{display:flex;flex-direction:column;} .col-text-item{ display:flex;align-items:center;justify-content:space-between; padding:16px 0;border-bottom:1px solid var(--gray-100);transition:.2s; } .col-text-item:hover{padding-left:8px;} .col-text-title{font-size:15px;color:var(--gray-700);} .col-text-title a{color:var(--gray-700);transition:.2s;} .col-text-title a:hover{color:var(--orange);} .col-text-date{font-size:13px;color:var(--gray-300);flex-shrink:0;margin-left:24px;} /* Person Grid (Team Member Card Style) */ /* Featured first person - large horizontal card */ .board-featured{ display:flex;gap:40px;align-items:flex-start; background:#fff;border:1px solid #ececec;border-radius:12px; padding:36px;margin-bottom:48px;transition:.3s; } .board-featured:hover{box-shadow:0 8px 24px rgba(0,0,0,.1);} .board-featured .featured-photo{ width:280px;min-width:280px;height:340px; border-radius:8px;overflow:hidden;background:#F5F6F8; } .board-featured .featured-photo img{width:100%;height:100%;object-fit:cover;} .board-featured .featured-info{flex:1;} .board-featured .featured-info h3{font-size:26px;font-weight:700;color:#303133;margin-bottom:8px;} .board-featured .featured-info .position{font-size:15px;font-weight:700;color:#E8751A;margin-bottom:20px;} .board-featured .featured-info .bio{font-size:14px;color:#606266;line-height:2;} /* Team grid */ .team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;row-gap:40px;} .team-member{ background:#fff;border-radius:12px;overflow:hidden; border:1px solid #ececec;transition:.3s;text-align:center; } .team-member:hover{box-shadow:0 8px 24px rgba(0,0,0,.1);} .member-photo{ width:160px;height:160px;border-radius:6px; background:#F5F6F8;overflow:hidden;margin:24px auto 0; } .member-photo img{width:100%;height:100%;object-fit:cover;} .member-placeholder{ width:100%;height:100%;display:flex;align-items:center;justify-content:center; background:var(--orange);color:#fff;font-size:48px;font-weight:700; } .member-info{padding:16px 20px 24px;} .member-info h3{font-size:22px;font-weight:600;color:#303133;margin-bottom:6px;} .member-position{font-size:14px;font-weight:700;color:#E8751A;margin-bottom:12px;} .member-bio{ font-size:14px;color:#606266;line-height:1.8;text-align:left; display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden; } /* Job Recruitment - Arco Design Style */ .job-layout{display:grid;grid-template-columns:200px 1fr;gap:24px;align-items:start;} .job-layout .job-hero-banner{grid-column:1 / -1;} .job-hero-banner{background:linear-gradient(135deg,#EDF4FF 0%,#E8EDFB 100%);border-radius:16px;padding:20px 32px;display:flex;align-items:center;justify-content:space-between;position:relative;overflow:hidden;} .job-hero-banner::before{content:'';position:absolute;top:-40px;right:-40px;width:160px;height:160px;background:rgba(22,93,255,.06);border-radius:50%;} .job-hero-text h2{font-size:24px;font-weight:700;color:#1D2129;margin-bottom:8px;} .job-hero-text p{font-size:14px;color:#4E5969;line-height:1.8;} .job-hero-stats{display:flex;gap:32px;position:relative;z-index:1;} .job-hero-stat{text-align:center;} .job-hero-stat .num{font-size:28px;font-weight:700;color:#165DFF;line-height:1;margin-bottom:4px;} .job-hero-stat .label{font-size:12px;color:#86909C;} .job-nav{position:sticky;top:60px;background:#fff;border:1px solid #F2F3F5;border-radius:12px;overflow:hidden;} .job-nav-title{padding:14px 16px;font-size:14px;font-weight:600;color:#1D2129;border-bottom:1px solid #F2F3F5;background:#FAFBFC;} .job-nav-list{list-style:none;padding:6px 0;margin:0;} .job-nav-list li a{display:block;padding:10px 16px;font-size:13px;color:#4E5969;text-decoration:none;border-left:3px solid transparent;transition:all .2s;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;} .job-nav-list li a:hover{color:#165DFF;background:#F7F8FA;} .job-nav-list li a.active{color:#165DFF;background:#EDF4FF;border-left-color:#165DFF;font-weight:500;} .job-main{display:flex;flex-direction:column;gap:20px;} .job-card{background:#fff;border:1px solid #F2F3F5;border-radius:16px;overflow:hidden;transition:all .25s;} .job-card:hover{border-color:#E5E6EB;box-shadow:0 8px 24px rgba(0,0,0,.06);} .job-card-header{padding:24px 28px 20px;border-bottom:1px solid #F2F3F5;display:flex;align-items:center;justify-content:space-between;} .job-card-title{display:flex;align-items:center;gap:12px;flex-wrap:wrap;} .job-card-title h3{font-size:18px;font-weight:600;color:#1D2129;} .job-card-tags{display:flex;gap:8px;} .job-tag{padding:3px 10px;font-size:12px;border-radius:4px;font-weight:500;} .job-tag.location{background:#EDF4FF;color:#165DFF;} .job-tag.type{border-radius:4px;font-weight:500;} .job-tag.type.fulltime{background:#E8FFEA;color:#00B42A;} .job-tag.type.parttime{background:#FFF3E8;color:#E8751A;} .job-card-body{padding:24px 28px;} .job-section{margin-bottom:20px;} .job-section:last-child{margin-bottom:0;} .job-section-title{font-size:14px;font-weight:600;color:#1D2129;margin-bottom:12px;display:flex;align-items:center;gap:8px;} .job-section-title::before{content:'';width:3px;height:14px;background:#165DFF;border-radius:2px;} .job-section-content{font-size:14px;color:#4E5969;line-height:1.9;padding-left:11px;white-space:pre-line;} .job-card-footer{padding:16px 28px;background:#FAFBFC;border-top:1px solid #F2F3F5;display:flex;align-items:center;justify-content:space-between;} .job-contact{font-size:13px;color:#86909C;display:flex;align-items:center;gap:16px;} .job-contact a{color:#165DFF;text-decoration:none;font-weight:500;} .job-contact a:hover{text-decoration:underline;} .job-apply-btn{padding:7px 24px;background:linear-gradient(135deg,#165DFF,#3B82F6);color:#fff;border:none;border-radius:6px;font-size:13px;font-weight:500;cursor:pointer;transition:all .2s;text-decoration:none;display:inline-block;} .job-apply-btn:hover{box-shadow:0 4px 12px rgba(22,93,255,.3);transform:translateY(-1px);} .job-empty{text-align:center;padding:60px 20px;color:#C9CDD4;grid-column:1 / -1;} .job-empty .empty-icon{font-size:48px;margin-bottom:16px;} .job-empty p{font-size:14px;color:#86909C;} /* Column Page Responsive */ /* ===== Form Page (前台表单) ===== */ .col-form-btn-wrap{text-align:center;padding:40px 0 20px;} .col-form-btn{ display:inline-block;padding:14px 60px;border:none;border-radius:30px; background:var(--orange);color:#fff;font-size:16px;font-weight:600; cursor:pointer;transition:.3s;letter-spacing:1px; } .col-form-btn:hover{background:var(--orange-dark);transform:translateY(-2px);box-shadow:0 8px 24px rgba(232,117,26,.3);} /* Form Dialog Overlay */ .col-form-overlay{ position:fixed;inset:0;z-index:2000;background:rgba(0,0,0,.5); display:flex;align-items:center;justify-content:center; opacity:0;visibility:hidden;transition:.3s; } .col-form-overlay.open{opacity:1;visibility:visible;} .col-form-dialog{ background:#fff;border-radius:12px;width:90%;max-width:520px; max-height:85vh;display:flex;flex-direction:column; box-shadow:0 20px 60px rgba(0,0,0,.2); transform:translateY(20px);transition:.3s; } .col-form-overlay.open .col-form-dialog{transform:translateY(0);} .col-form-dialog-header{ display:flex;align-items:center;justify-content:space-between; padding:20px 24px;border-bottom:1px solid var(--gray-100); font-size:18px;font-weight:600;color:var(--gray-900); } .col-form-close{ width:32px;height:32px;border:none;background:none; font-size:24px;color:var(--gray-500);cursor:pointer;transition:.2s; } .col-form-close:hover{color:var(--gray-900);} .col-form-dialog-body{flex:1;overflow-y:auto;padding:24px;} .col-form-group{margin-bottom:20px;} .col-form-label{display:block;font-size:14px;font-weight:500;color:var(--gray-700);margin-bottom:8px;} .col-form-required{color:#E84040;margin-left:2px;} .col-form-input,.col-form-textarea{ width:100%;padding:10px 14px;border:1px solid var(--gray-100);border-radius:6px; font-size:14px;color:var(--gray-900);transition:.2s;font-family:inherit; } .col-form-input:focus,.col-form-textarea:focus{outline:none;border-color:var(--orange);box-shadow:0 0 0 2px rgba(232,117,26,.1);} .col-form-textarea{resize:vertical;min-height:80px;} .col-form-options{display:flex;flex-wrap:wrap;gap:12px;} .col-form-radio,.col-form-checkbox{ display:flex;align-items:center;gap:6px;cursor:pointer;font-size:14px;color:var(--gray-700); } .col-form-radio input,.col-form-checkbox input{accent-color:var(--orange);} .col-form-upload{display:flex;flex-direction:column;gap:8px;} .col-form-upload-area{ border:2px dashed var(--gray-100);border-radius:8px;cursor:pointer;transition:.2s;overflow:hidden; } .col-form-upload-area:hover{border-color:var(--orange);background:rgba(232,117,26,.02);} .col-form-upload-preview{min-height:100px;display:flex;align-items:center;justify-content:center;} .col-form-upload-preview img{max-width:100%;max-height:200px;object-fit:contain;display:block;margin:0 auto;} .col-form-upload-placeholder{ display:flex;flex-direction:column;align-items:center;gap:8px; color:var(--gray-400);font-size:13px;padding:24px; } .col-form-dialog-footer{padding:16px 24px;border-top:1px solid var(--gray-100);} .col-form-submit{ display:block;width:100%;padding:12px;border:none;border-radius:8px; background:var(--orange);color:#fff;font-size:16px;font-weight:600; cursor:pointer;transition:.3s; } .col-form-submit:hover{background:var(--orange-dark);} /* ===== Inline Form (页面内嵌表单) ===== */ .col-inline-form-wrap{ margin-top:48px;max-width:680px;margin-left:auto;margin-right:auto; background:var(--gray-bg);border-radius:16px;padding:40px 48px; border:1px solid var(--gray-100); } .col-inline-form-header{text-align:center;margin-bottom:32px;} .col-inline-form-header h3{ font-size:22px;font-weight:700;color:var(--gray-900);margin-bottom:8px; position:relative;display:inline-block; } .col-inline-form-header h3::after{ content:'';display:block;width:40px;height:3px; background:linear-gradient(90deg,var(--orange),var(--orange-light)); margin:10px auto 0;border-radius:2px; } .col-inline-form-header p{font-size:14px;color:var(--gray-500);margin-top:8px;} .col-inline-form{display:flex;flex-direction:column;gap:0;} .col-ifield{margin-bottom:24px;} .col-ifield-label{display:block;font-size:14px;font-weight:600;color:var(--gray-700);margin-bottom:8px;} .col-ifield-req{color:#E84040;margin-left:2px;} .col-ifield-input,.col-ifield-textarea{ width:100%;padding:12px 16px;border:1px solid var(--gray-100);border-radius:8px; font-size:14px;color:var(--gray-900);transition:.2s;font-family:inherit; background:#fff; } .col-ifield-input:focus,.col-ifield-textarea:focus{ outline:none;border-color:var(--orange); box-shadow:0 0 0 3px rgba(232,117,26,.1); } .col-ifield-textarea{resize:vertical;min-height:100px;} .col-ifield-options{display:flex;flex-wrap:wrap;gap:16px;} .col-ifield-radio,.col-ifield-checkbox{ display:flex;align-items:center;gap:8px;cursor:pointer; font-size:14px;color:var(--gray-700); padding:8px 16px;background:#fff;border:1px solid var(--gray-100); border-radius:8px;transition:.2s; } .col-ifield-radio:hover,.col-ifield-checkbox:hover{border-color:var(--orange);background:rgba(232,117,26,.02);} .col-ifield-radio input,.col-ifield-checkbox input{accent-color:var(--orange);} .col-ifield-upload{display:flex;flex-direction:column;gap:8px;} .col-ifield-upload-area{ border:2px dashed var(--gray-100);border-radius:12px;cursor:pointer; transition:.2s;overflow:hidden;background:#fff; } .col-ifield-upload-area:hover{border-color:var(--orange);background:rgba(232,117,26,.02);} .col-ifield-upload-preview{min-height:120px;display:flex;align-items:center;justify-content:center;} .col-ifield-upload-preview img{max-width:100%;max-height:200px;object-fit:contain;display:block;margin:0 auto;} .col-ifield-upload-placeholder{ display:flex;flex-direction:column;align-items:center;gap:8px; color:var(--gray-300);font-size:13px;padding:32px; } .col-ifield-submit-wrap{text-align:center;margin-top:8px;} .col-ifield-submit{ display:inline-block;padding:14px 80px;border:none;border-radius:30px; background:var(--orange);color:#fff;font-size:16px;font-weight:600; cursor:pointer;transition:.3s;letter-spacing:1px; } .col-ifield-submit:hover{background:var(--orange-dark);transform:translateY(-2px);box-shadow:0 8px 24px rgba(232,117,26,.3);} .col-ifield-submit:disabled{opacity:.7;cursor:not-allowed;transform:none;box-shadow:none;} /* ========== Article Detail ========== */ .article-detail-wrap{max-width:1200px;margin:0 auto;padding:20px 40px 60px;display:grid;grid-template-columns:1fr 300px;gap:40px;align-items:start;} .article-detail-main{min-width:0;} .article-header{margin-bottom:32px;} .article-title{font-size:32px;font-weight:700;color:var(--gray-900);line-height:1.4;margin-bottom:16px;} .article-meta{display:flex;gap:24px;align-items:center;flex-wrap:wrap;padding:16px 0;border-bottom:1px solid var(--gray-100);margin-bottom:32px;font-size:14px;color:var(--gray-400);} .article-meta span{display:flex;align-items:center;gap:6px;} .article-share{display:flex;align-items:center;gap:8px;margin-left:auto;} .article-share-label{font-size:14px;color:var(--gray-600);margin-right:4px;} .article-share-btn{width:32px;height:32px;border:none;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:.3s;background:var(--gray-bg);color:var(--gray-600);} .article-share-btn.wechat:hover{background:#07C160;color:#fff;transform:translateY(-2px);} .article-share-btn.weibo:hover{background:#E6162D;color:#fff;transform:translateY(-2px);} .article-body{font-size:16px;line-height:2;color:var(--gray-700);} .article-body h2{font-size:20px;font-weight:600;color:var(--gray-900);margin:28px 0 14px;border-left:4px solid var(--orange);padding-left:14px;} .article-body h3{font-size:17px;font-weight:600;color:var(--gray-900);margin:20px 0 10px;} .article-body p{margin-bottom:14px;} .article-body img{max-width:100%;border-radius:6px;margin:12px auto;display:block;} .article-body blockquote{border-left:4px solid var(--orange);padding:14px 20px;margin:16px 0;background:var(--orange-light);color:var(--gray-600);} .article-body ul,.article-body ol{padding-left:26px;margin-bottom:14px;} .article-body li{margin-bottom:6px;} .article-body table{width:100%;border-collapse:collapse;margin:16px 0;} .article-body td,.article-body th{border:1px solid var(--gray-100);padding:10px 14px;font-size:14px;} .article-body th{background:var(--gray-bg);font-weight:600;} .article-body a{color:var(--orange);} /* 上一篇/下一篇卡片 */ .article-nav{display:flex;justify-content:space-between;gap:24px;margin-top:48px;padding-top:32px;border-top:1px solid var(--gray-100);} .article-nav-item{flex:1;padding:20px;background:var(--gray-bg);border-radius:10px;text-decoration:none;transition:.3s;min-width:0;} .article-nav-item:hover{background:#fff;box-shadow:0 4px 16px rgba(0,0,0,.08);transform:translateY(-2px);} .article-nav-item.next{text-align:right;} .article-nav-label{display:block;font-size:13px;color:var(--gray-400);margin-bottom:8px;} .article-nav-title{display:block;font-size:15px;color:var(--gray-900);line-height:1.5;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;} .article-nav-item:hover .article-nav-title{color:var(--orange);} .article-nav-item.disabled{pointer-events:none;opacity:.6;} /* 侧边栏 */ .article-sidebar{position:sticky;top:20px;display:flex;flex-direction:column;gap:24px;} .sidebar-section{background:var(--gray-bg);border-radius:12px;padding:24px 20px;} .sidebar-title{font-size:16px;font-weight:600;color:var(--gray-900);margin-bottom:16px;padding-bottom:12px;border-bottom:2px solid var(--orange);} .related-list{display:flex;flex-direction:column;} .related-item{display:flex;flex-direction:column;gap:4px;padding:12px 0;border-bottom:1px solid var(--gray-100);text-decoration:none;transition:.2s;} .related-item:last-child{border-bottom:none;} .related-item:hover .related-name{color:var(--orange);} .related-date{font-size:12px;color:var(--gray-400);} .related-name{font-size:14px;color:var(--gray-600);line-height:1.5;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;transition:.2s;} .category-list{display:flex;flex-direction:column;} .category-item{display:flex;justify-content:space-between;align-items:center;padding:10px 16px;font-size:14px;color:var(--gray-600);text-decoration:none;border-radius:6px;transition:.2s;} .category-item:hover{color:var(--orange);background:rgba(232,117,26,.08);} .category-item.active{color:var(--orange);font-weight:600;background:rgba(232,117,26,.08);} .category-count{font-size:12px;background:var(--gray-100);color:var(--gray-400);padding:2px 8px;border-radius:10px;} .category-item.active .category-count{background:rgba(232,117,26,.15);color:var(--orange);} /* 微信分享弹窗 */ .qr-modal{display:none;position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.6);z-index:10000;align-items:center;justify-content:center;} .qr-modal.show{display:flex;} .qr-modal-content{background:#fff;border-radius:12px;padding:32px;text-align:center;max-width:320px;} .qr-modal-title{font-size:18px;font-weight:600;color:var(--gray-900);margin-bottom:16px;} .qr-code{width:200px;height:200px;margin:0 auto 16px;background:var(--gray-bg);display:flex;align-items:center;justify-content:center;border-radius:8px;} .qr-tip{font-size:14px;color:var(--gray-400);margin-bottom:20px;} .qr-close-btn{width:100%;padding:10px;background:var(--orange);color:#fff;border:none;border-radius:6px;font-size:14px;cursor:pointer;transition:.2s;} .qr-close-btn:hover{background:#C96012;} /* ===== Text Card Grid (封面卡片) ===== */ .col-text-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;} .col-text-card{ display:block;background:#fff;border-radius:8px;overflow:hidden; box-shadow:0 4px 16px rgba(0,0,0,.08);transition:.3s;cursor:pointer; position:relative; } .col-text-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(232,117,26,.15);} .col-text-cover{ width:100%;aspect-ratio:300/426;overflow:hidden;background:var(--gray-bg);position:relative; } .col-text-cover img{width:100%;height:100%;object-fit:cover;transition:.3s;} .col-text-card:hover .col-text-cover img{transform:scale(1.05);} .col-text-file-tag{ position:absolute;top:12px;right:12px;z-index:2; padding:4px 12px;border-radius:4px; background:var(--orange);color:#fff;font-size:12px;font-weight:700; letter-spacing:.5px;font-family:var(--font-en); } .col-text-overlay{ position:absolute;top:0;left:0;right:0;bottom:0; display:flex;align-items:flex-start;justify-content:center; padding:24px;padding-top:28%;text-align:center; } .col-text-overlay-title{ color:#333;font-size:16px;font-weight:600;line-height:1.8; text-shadow:0 1px 2px rgba(255,255,255,.8),0 0 8px rgba(255,255,255,.6); display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden; } .col-text-date-badge{ position:absolute;right:8px;bottom:8px; padding:4px 10px;border-radius:4px; background:rgba(0,0,0,.55);color:#fff;font-size:12px; font-family:var(--font-en);letter-spacing:.5px; } .col-text-placeholder{ display:flex;align-items:center;justify-content:center; background:linear-gradient(135deg,var(--orange) 0%,var(--orange-dark) 100%); } .col-text-placeholder-inner{ text-align:center;padding:24px;color:#fff; } .col-text-placeholder-title{ display:block;font-size:16px;font-weight:600;line-height:1.6; display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden; } .col-text-placeholder-year{ display:block;font-family:var(--font-en);font-size:32px;font-weight:700; margin-top:12px;opacity:.8; } /* (card info removed - using date badge only) */ /* ===== Document List (文档列表样式) ===== */ .doc-list{display:flex;flex-direction:column;} .doc-item{display:flex;align-items:center;justify-content:space-between;padding:20px 0;border-bottom:1px solid var(--gray-100);transition:.3s;text-decoration:none;cursor:pointer;} .doc-item:hover{background:rgba(232,117,26,.03);padding-left:16px;padding-right:16px;} .doc-item:hover .doc-title{color:var(--orange);} .doc-item-left{display:flex;align-items:center;gap:16px;flex:1;min-width:0;} .doc-tag{display:inline-block;padding:4px 12px;background:rgba(232,117,26,.08);color:var(--orange);border-radius:4px;font-size:12px;white-space:nowrap;flex-shrink:0;} .doc-title{font-size:16px;color:var(--gray-900);transition:.3s;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;} .doc-date{font-size:14px;color:var(--gray-400);white-space:nowrap;margin-left:24px;} /* ===== Text Detail Download ===== */ .text-detail-download{ margin-top:40px;padding:24px;background:var(--gray-bg);border-radius:8px; text-align:center; } .text-download-btn{ display:inline-flex;align-items:center;gap:10px; padding:12px 32px;background:var(--orange);color:#fff; border-radius:24px;font-size:15px;font-weight:500;transition:.3s; } .text-download-btn:hover{background:var(--orange-dark);transform:translateY(-2px);box-shadow:0 8px 24px rgba(232,117,26,.3);color:#fff;} .text-download-type{ display:inline-block;padding:2px 8px;background:rgba(255,255,255,.25); border-radius:3px;font-size:11px;font-weight:600;letter-spacing:.5px; } /* Text Grid Responsive */ /* ===== Home Generic Section (text/person/page/job etc.) ===== */ .slide-section{ height:100vh;display:flex;align-items:center;justify-content:center; background:#F8F9FA;padding:80px 60px; } .section-wrap{width:100%;max-width:1200px;margin:0 auto;} /* Home text grid */ .home-text-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;} .home-text-card{ display:block;position:relative;border-radius:8px;overflow:hidden; aspect-ratio:300/426;background:#eee;transition:transform .3s; } .home-text-card:hover{transform:translateY(-4px);} .home-text-card .cover{width:100%;height:100%;background-size:cover;background-position:center;} .home-text-card .cover-placeholder{ display:flex;align-items:center;justify-content:center; background:linear-gradient(135deg,var(--orange),var(--orange-light)); color:#fff;font-size:16px;padding:20px;text-align:center; } .home-text-card .date-badge{ position:absolute;bottom:10px;right:10px; background:rgba(0,0,0,.5);color:#fff;font-size:12px; padding:2px 8px;border-radius:4px; } /* Home person grid */ .home-person-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:24px;text-align:center;} .home-person-card .avatar{ width:120px;height:120px;border-radius:50%;margin:0 auto 12px; background-size:cover;background-position:center;background-color:#eee; } .home-person-card .name{font-size:16px;font-weight:600;margin-bottom:4px;} .home-person-card .title{font-size:13px;color:var(--gray-500);} /* Home page content */ .home-page-content{max-height:60vh;overflow-y:auto;line-height:1.8;} .home-page-content img{max-width:100%;height:auto;} /* Slide with footer - allow scroll for content + footer */ .slide-with-footer{flex-direction:column;justify-content:flex-start;overflow-y:auto;padding-bottom:0;} .slide-with-footer .section-wrap{flex:1;display:flex;flex-direction:column;justify-content:center;padding-bottom:20px;} .slide-with-footer>.footer-component{margin:0 -60px;width:calc(100% + 120px);flex-shrink:0;} /* Home form */ .home-form-wrap{max-width:600px;margin:20px auto 0;} .home-inline-form .home-form-field{margin-bottom:16px;} .home-inline-form .home-form-field label{display:block;font-size:14px;color:#333;margin-bottom:6px;font-weight:500;} .home-inline-form .home-form-field input, .home-inline-form .home-form-field textarea, .home-inline-form .home-form-field select{width:100%;padding:10px 12px;border:1px solid #ddd;border-radius:6px;font-size:14px;outline:none;transition:border-color .3s;} .home-inline-form .home-form-field input:focus, .home-inline-form .home-form-field textarea:focus, .home-inline-form .home-form-field select:focus{border-color:#ff7800;} .home-inline-form .home-form-field textarea{resize:vertical;min-height:80px;} .home-form-submit{text-align:center;padding-top:10px;} .home-form-submit button{background:#ff7800;color:#fff;border:none;padding:12px 48px;border-radius:6px;font-size:15px;cursor:pointer;transition:background .3s;} .home-form-submit button:hover{background:#e66a00;} /* Home job list */ .home-job-list{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;} .home-job-card{background:#fff;border:1px solid #eee;border-radius:8px;padding:20px;transition:box-shadow .3s;} .home-job-card:hover{box-shadow:0 4px 16px rgba(0,0,0,.08);} .home-job-card .job-title{font-size:16px;font-weight:600;color:#333;margin-bottom:8px;} .home-job-card .job-meta{display:flex;gap:12px;font-size:13px;color:#999;margin-bottom:8px;} .home-job-card .job-meta span{display:flex;align-items:center;gap:4px;} .home-job-card .job-desc{font-size:13px;color:#666;line-height:1.6;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;} /* ===== About Intro Section ===== */ .about-intro-section{margin-bottom:60px;} .about-intro-section:last-child{margin-bottom:0;} .about-section-header{display:flex;align-items:baseline;gap:12px;margin-bottom:40px;} .about-section-header h2{font-size:24px;font-weight:700;color:#1D2129;position:relative;padding-left:14px;} .about-section-header h2::before{content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);width:4px;height:22px;border-radius:2px;background:#E8751A;} .about-section-header p{font-size:13px;color:#C9CDD4;letter-spacing:2px;} .about-section-alt{background:#F7F8FA;border-radius:16px;padding:48px 40px;margin-top:48px;} /* Intro Hero */ .about-intro-hero{display:grid;grid-template-columns:1fr 500px;gap:40px;align-items:end;background:#fff;border:1px solid #F2F3F5;border-radius:16px;padding:36px;} .about-intro-hero-text{display:flex;flex-direction:column;gap:16px;} .about-intro-hero-text p{font-size:15px;color:#4E5969;line-height:2;} .about-intro-hero-img{border-radius:16px;overflow:hidden;border:1px solid #F2F3F5;} .about-intro-hero-img img{width:100%;height:auto;display:block;object-fit:cover;} /* Stats */ .about-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:20px;} .about-stat-card{background:#fff;border:1px solid #F2F3F5;border-radius:12px;padding:24px 16px;text-align:center;transition:all .2s;} .about-stat-card:hover{border-color:#E8751A;box-shadow:0 4px 16px rgba(232,117,26,.1);} .about-stat-num{font-size:32px;font-weight:700;color:#E8751A;line-height:1.2;margin-bottom:4px;white-space:nowrap;} .about-stat-num span{font-size:14px;font-weight:500;color:#86909C;margin-left:2px;} .about-stat-label{font-size:13px;color:#86909C;} /* Values */ .about-values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:28px;} .about-value-card{background:#fff;border:1px solid #F2F3F5;border-radius:12px;padding:28px 24px;text-align:center;transition:all .25s;position:relative;overflow:hidden;} .about-value-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:#E8751A;transform:scaleX(0);transition:transform .3s;transform-origin:left;} .about-value-card:hover{border-color:#E5E6EB;box-shadow:0 8px 24px rgba(0,0,0,.06);} .about-value-card:hover::before{transform:scaleX(1);} .about-value-icon{width:64px;height:64px;border-radius:14px;margin:0 auto 16px;display:flex;align-items:center;justify-content:center;background:rgba(232,117,26,.1);} .about-value-icon img{width:36px;height:36px;filter:brightness(0) saturate(100%) invert(55%) sepia(95%) saturate(600%) hue-rotate(360deg) brightness(95%) contrast(90%);} .about-value-card h3{font-size:17px;font-weight:600;color:#1D2129;margin-bottom:8px;} .about-value-card p{font-size:14px;color:#86909C;line-height:1.7;} .about-scope-card{background:#fff;border:1px solid #F2F3F5;border-radius:12px;padding:28px 32px;} .about-scope-card h3{font-size:16px;font-weight:600;color:#1D2129;margin-bottom:14px;padding-left:12px;border-left:3px solid #E8751A;} .about-scope-card p{font-size:14px;color:#4E5969;line-height:2;} /* Strategy */ .about-strategy-row{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;} .about-strategy-card{background:#fff;border:1px solid #F2F3F5;border-radius:12px;overflow:hidden;transition:all .25s;} .about-strategy-card:hover{border-color:#E5E6EB;box-shadow:0 8px 24px rgba(0,0,0,.06);transform:translateY(-2px);} .about-strategy-img{width:100%;height:220px;object-fit:cover;display:block;background:#F2F3F5;} .about-strategy-body{position:relative;padding:40px 24px 28px;text-align:center;} .about-strategy-badge{width:56px;height:56px;border-radius:50%;position:absolute;top:-28px;left:50%;transform:translateX(-50%);display:flex;align-items:center;justify-content:center;font-size:22px;font-weight:700;color:#fff;box-shadow:0 4px 12px rgba(0,0,0,.1);border:3px solid #fff;} .about-badge-blue{background:linear-gradient(135deg,#165DFF,#3B82F6);} .about-badge-orange{background:linear-gradient(135deg,#E8751A,#F5A623);} .about-badge-green{background:linear-gradient(135deg,#00B42A,#34D399);} .about-badge-red{background:linear-gradient(135deg,#F53F3F,#F76560);} .about-badge-purple{background:linear-gradient(135deg,#722ED1,#9254DE);} .about-badge-cyan{background:linear-gradient(135deg,#0FC6C2,#14C9C9);} .about-badge-gold{background:linear-gradient(135deg,#D4A017,#FAAD14);} .about-badge-pink{background:linear-gradient(135deg,#EB2F96,#F759AB);} .about-strategy-card h3{font-size:18px;font-weight:600;color:#1D2129;margin-bottom:10px;} .about-strategy-card p{font-size:14px;color:#86909C;line-height:1.8;} /* Qualifications */ .about-qual-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;} .about-qual-card{background:#fff;border:1px solid #ebeef0;border-radius:12px;padding:24px 16px;text-align:center;transition:all .25s;} .about-qual-card:hover{border-color:#dcdfe3;} .about-qual-img{width:100%;height:auto;border-radius:8px;margin-bottom:12px;} .about-qual-card h4{font-size:14px;font-weight:600;color:#1D2129;margin-bottom:6px;line-height:1.5;} .about-qual-card p{font-size:12px;color:#C9CDD4;line-height:1.6;} /* Compliance */ .about-compliance-banner{background:linear-gradient(135deg,#1D2129 0%,#2A3441 100%);border-radius:16px;padding:40px;color:#fff;position:relative;overflow:hidden;} .about-compliance-banner::before{content:'';position:absolute;top:-50px;right:-50px;width:180px;height:180px;border-radius:50%;background:rgba(232,117,26,.12);} .about-compliance-banner>*{position:relative;z-index:1;} .about-compliance-lead{font-size:14px;color:rgba(255,255,255,.6);line-height:1.9;margin-bottom:28px;} .about-compliance-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;} .about-compliance-item{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);border-radius:12px;padding:22px;transition:all .2s;} .about-compliance-item:hover{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.15);} .about-compliance-item h4{font-size:15px;color:#E8751A;margin-bottom:8px;font-weight:600;} .about-compliance-item p{font-size:13px;color:rgba(255,255,255,.55);line-height:1.8;} /* About Intro Responsive */ /* ===== Contact Us ===== */ .ct-layout{display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:stretch;} .ct-info-panel{display:flex;flex-direction:column;gap:20px;} .ct-brand-card{background:linear-gradient(135deg,#FFF7ED 0%,#FFF0E0 100%);border-radius:16px;padding:28px 24px;position:relative;overflow:hidden;} .ct-brand-card::before{content:'';position:absolute;top:-30px;right:-30px;width:120px;height:120px;background:rgba(232,117,26,.08);border-radius:50%;} .ct-brand-card h3{font-size:20px;font-weight:700;color:#1D2129;margin-bottom:8px;position:relative;z-index:1;} .ct-brand-card .ct-en{font-size:13px;color:#86909C;font-style:italic;margin-bottom:12px;position:relative;z-index:1;} .ct-brand-card p{font-size:14px;color:#4E5969;line-height:1.8;position:relative;z-index:1;} .ct-info-list{background:#fff;border:1px solid #F2F3F5;border-radius:16px;overflow:hidden;} .ct-info-row{display:flex;align-items:center;gap:14px;padding:16px 24px;transition:background .2s;} .ct-info-row:not(:last-child){border-bottom:1px solid #F7F8FA;} .ct-info-row:hover{background:#FAFBFC;} .ct-info-icon{width:36px;height:36px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0;} .ct-info-icon.orange{background:rgba(232,117,26,.1);} .ct-info-icon.blue{background:rgba(22,93,255,.1);} .ct-info-icon.green{background:rgba(0,180,42,.1);} .ct-info-icon.purple{background:rgba(114,46,209,.1);} .ct-info-text{flex:1;} .ct-info-text .ct-label{font-size:12px;color:#86909C;margin-bottom:2px;} .ct-info-text .ct-value{font-size:14px;color:#1D2129;font-weight:500;} .ct-info-text .ct-value a{color:#E8751A;text-decoration:none;} .ct-info-text .ct-value a:hover{text-decoration:underline;} .ct-qr-row{gap:16px;} .ct-qr-inline{width:72px;height:72px;border-radius:10px;border:1px solid #F2F3F5;flex-shrink:0;object-fit:cover;} .ct-map-panel{display:flex;flex-direction:column;height:100%;} .ct-map-card{background:#fff;border:1px solid #F2F3F5;border-radius:16px;overflow:hidden;flex:1;display:flex;flex-direction:column;} .ct-map-header{padding:16px 24px;border-bottom:1px solid #F2F3F5;display:flex;align-items:center;gap:8px;} .ct-map-header h4{font-size:15px;font-weight:600;color:#1D2129;} .ct-map-body{width:100%;flex:1;min-height:380px;background:#F7F8FA;display:flex;align-items:center;justify-content:center;color:#C9CDD4;font-size:14px;} /* Contact Responsive */ /* Map tooltip */ .ct-map-tooltip{background:#fff;color:#1D2129;font-size:13px;padding:6px 12px;border-radius:8px;box-shadow:0 2px 8px rgba(0,0,0,.15);white-space:nowrap;pointer-events:none;} #ct-ol-map{min-height:380px;} #ct-ol-map canvas{border-radius:0 0 16px 16px;} /* ===== Search Result Page ===== */ .search-header{background:#fff;padding:16px 0;box-shadow:0 2px 8px rgba(0,0,0,.04);} .search-header-inner{max-width:1200px;margin:0 auto;padding:0 20px;} .search-box{max-width:800px;margin:0 auto;display:flex;align-items:center;background:#F5F6F8;border-radius:50px;padding:0 8px 0 32px;border:1px solid var(--orange);height:56px;} .search-box input{flex:1;border:none;background:transparent;outline:none;font-size:16px;padding:0;height:100%;font-family:var(--font-cn);color:var(--gray-900);} .search-box input::placeholder{color:var(--gray-300);} .search-box-btn{background:var(--orange);border:none;cursor:pointer;color:#fff;width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;transition:.2s;flex-shrink:0;} .search-box-btn:hover{background:var(--orange-dark);} .search-clear-btn{background:none;border:none;cursor:pointer;color:var(--gray-300);width:28px;height:28px;display:flex;align-items:center;justify-content:center;flex-shrink:0;padding:0;transition:color .2s;} .search-clear-btn:hover{color:var(--gray-500);} .search-container{max-width:1200px;margin:0 auto;padding:40px 20px 60px;} .search-info{margin-bottom:32px;padding-bottom:20px;border-bottom:2px solid #E4E7ED;} .search-keyword-text{font-size:18px;color:var(--gray-900);margin-bottom:8px;} .search-keyword-text .kw{color:var(--orange);font-weight:600;} .search-stats{font-size:14px;color:var(--gray-500);} .filter-tabs{display:flex;gap:16px;margin-bottom:32px;flex-wrap:wrap;} .filter-tab{padding:8px 24px;font-size:14px;color:#606266;background:#fff;border:1px solid #DCDFE6;border-radius:20px;cursor:pointer;transition:.3s;text-decoration:none;} .filter-tab:hover{color:var(--orange);border-color:var(--orange);} .filter-tab.active{color:#fff;background:var(--orange);border-color:var(--orange);} .result-list{display:flex;flex-direction:column;gap:24px;} .result-item{background:#fff;border-radius:12px;padding:32px;border:1px solid #F2F3F5;transition:all .25s;display:block;text-decoration:none;color:inherit;} .result-item:hover{border-color:#E5E6EB;box-shadow:0 8px 24px rgba(0,0,0,.06);} .result-header{display:flex;align-items:center;gap:12px;margin-bottom:12px;} .result-type{display:inline-block;padding:4px 12px;background:#FFF8F0;color:var(--orange);border-radius:4px;font-size:12px;font-weight:600;} .result-date{font-size:14px;color:var(--gray-500);} .result-title{font-size:20px;font-weight:600;color:var(--gray-900);margin-bottom:12px;line-height:1.4;} .result-title .highlight{color:var(--orange);background:rgba(232,117,26,.1);padding:0 4px;} .result-desc{font-size:15px;line-height:1.8;color:#606266;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;} .result-desc .highlight{color:var(--orange);font-weight:600;} .result-footer{margin-top:16px;padding-top:16px;border-top:1px solid #F5F6F8;display:flex;align-items:center;justify-content:space-between;} .result-path{font-size:13px;color:var(--gray-500);} .result-more{font-size:14px;color:var(--orange);display:flex;align-items:center;gap:4px;} .search-empty{text-align:center;padding:80px 20px;background:#fff;border-radius:12px;} .search-empty-icon{font-size:64px;color:#C0C4CC;margin-bottom:24px;} .search-empty h3{font-size:20px;color:var(--gray-900);margin-bottom:12px;} .search-empty p{font-size:15px;color:var(--gray-500);line-height:1.8;} .search-pagination{display:flex;justify-content:center;align-items:center;gap:8px;margin-top:40px;} .page-btn{min-width:40px;height:40px;padding:0 12px;background:#fff;border:1px solid #DCDFE6;border-radius:6px;font-size:14px;color:#606266;cursor:pointer;transition:.3s;display:flex;align-items:center;justify-content:center;text-decoration:none;} .page-btn:hover{color:var(--orange);border-color:var(--orange);} .page-btn.active{color:#fff;background:var(--orange);border-color:var(--orange);} .page-btn.disabled{opacity:.5;cursor:not-allowed;pointer-events:none;} /* ========== Project List ========== */ .project-list { display: flex; flex-direction: column; gap: 32px; } .project-item { display: grid; grid-template-columns: 445px 1fr; gap: 32px; background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid #F2F3F5; transition: all 0.25s; text-decoration: none; color: inherit; } .project-item:hover { border-color: #E5E6EB; box-shadow: 0 8px 24px rgba(0,0,0,0.06); } .project-cover { width: 445px; height: 280px; background: #F5F6F8; display: flex; align-items: center; justify-content: center; overflow: hidden; } .project-cover img { width: 100%; height: 100%; object-fit: cover; } .project-cover-placeholder { font-size: 16px; color: #909399; } .project-info { padding: 32px 32px 32px 0; display: flex; flex-direction: column; justify-content: space-between; } .project-header { margin-bottom: 16px; } .project-title { font-size: 22px; font-weight: 600; color: #303133; margin-bottom: 12px; line-height: 1.4; } .project-meta { display: flex; align-items: center; gap: 16px; font-size: 14px; color: #909399; } .project-tag { display: inline-block; padding: 4px 12px; background: #FFF8F0; color: #E8751A; border-radius: 4px; font-size: 12px; } .project-date { display: flex; align-items: center; gap: 4px; } .project-desc { font-size: 15px; line-height: 1.8; color: #606266; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; } .project-footer { display: flex; align-items: center; justify-content: space-between; } .project-stats { display: flex; gap: 24px; font-size: 14px; color: #909399; } .project-stat-item { display: flex; align-items: center; gap: 6px; } .project-stat-item .label { color: #909399; } .project-stat-item .value { color: #E8751A; font-weight: 600; } .view-detail-btn { padding: 8px 24px; background: transparent; color: #E8751A; border: 1px solid #E8751A; border-radius: 20px; font-size: 14px; cursor: pointer; transition: 0.3s; display: inline-block; } .view-detail-btn:hover { background: #E8751A; color: #fff; } @media (max-width: 768px) { .view-detail-btn { display: none; } } /* ========== Project Detail ========== */ .proj-detail-wrap { max-width: 1200px; margin: 0 auto; padding: 40px 0 60px; display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; } .proj-detail-main:only-child { grid-column: 1 / -1; } .proj-detail-main { background: #fff; } .proj-detail-title { font-size: 32px; font-weight: 700; color: #303133; margin-bottom: 16px; line-height: 1.4; } .proj-detail-meta { display: flex; gap: 24px; align-items: center; padding: 16px 0; border-bottom: 1px solid #E4E7ED; margin-bottom: 32px; font-size: 14px; color: #909399; } .proj-detail-meta span{display:flex;align-items:center;gap:6px;} .proj-section { margin-bottom: 48px; } .proj-section:last-child { margin-bottom: 0; } .proj-section-title { font-size: 24px; font-weight: 700; color: #303133; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #E8751A; } .proj-section-content { font-size: 16px; line-height: 2; color: #606266; } .proj-section-content p { margin-bottom: 16px; } .proj-section-content img { max-width: 100%; border-radius: 8px; margin: 24px auto; display: block; } /* Timeline */ .proj-timeline { position: relative; padding-left: 0; } .proj-timeline-item { display: grid; grid-template-columns: 120px 1fr; gap: 40px; margin-bottom: 48px; position: relative; } .proj-timeline-item:last-child { margin-bottom: 0; } .proj-timeline-item::before { content: ""; position: absolute; left: 140px; top: 30px; bottom: -62px; width: 2px; background: #E4E7ED; transform: translateX(-50%); } .proj-timeline-item:last-child::before { display: none; } .proj-timeline-item::after { content: ""; position: absolute; left: 140px; top: 16px; width: 12px; height: 12px; background: #E8751A; border-radius: 50%; border: 3px solid #fff; box-shadow: 0 0 0 2px #E8751A; transform: translateX(-50%); z-index: 1; } .proj-timeline-date { text-align: right; padding-top: 4px; position: relative; white-space: nowrap; } .proj-timeline-year { font-size: 18px; font-weight: 700; color: #E8751A; } .proj-timeline-body { background: #F5F6F8; border-radius: 12px; padding: 24px 28px; min-width: 0; overflow: hidden; } .proj-timeline-year-mobile { display: none; font-size: 16px; font-weight: 700; color: #E8751A; margin-bottom: 12px; } .proj-timeline-title { font-size: 20px; font-weight: 700; color: #303133; margin-bottom: 12px; } .proj-timeline-period { font-size: 16px; font-weight: 600; color: #606266; margin-bottom: 16px; } .proj-timeline-body p { font-size: 15px; line-height: 2; color: #606266; margin-bottom: 20px; } .proj-timeline-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px; } .proj-timeline-stat { display: flex; align-items: baseline; font-size: 14px; } .proj-stat-label { color: #909399; margin-right: 8px; white-space: nowrap; } .proj-stat-value { color: #303133; font-weight: 500; } /* Sidebar Anchor Nav */ .proj-detail-sidebar { position: sticky; top: 80px; } .proj-anchor-nav { background: #F5F6F8; border-radius: 12px; padding: 24px 20px; } .proj-anchor-title { font-size: 16px; font-weight: 600; color: #303133; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #E8751A; } .proj-anchor-list { display: flex; flex-direction: column; } .proj-anchor-item { padding: 10px 16px; font-size: 15px; color: #606266; cursor: pointer; transition: 0.2s; border-radius: 6px; text-decoration: none; display: block; border-left: 3px solid transparent; } .proj-anchor-item:hover { color: #E8751A; background: rgba(232,117,26,0.08); padding-left: 20px; } .proj-anchor-item.active { color: #E8751A; background: rgba(232,117,26,0.08); border-left-color: #E8751A; font-weight: 600; } /* ========== Side Toolbar ========== */ .side-toolbar { position: fixed; right: 20px; bottom: 120px; z-index: 999; display: flex; flex-direction: column; gap: 4px; opacity: 0; visibility: hidden; transform: translateY(20px); transition: opacity .3s, visibility .3s, transform .3s; } .side-toolbar.show { opacity: 1; visibility: visible; transform: translateY(0); } .side-tool { width: 48px; height: 48px; background: #E8751A; border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s, box-shadow .2s; box-shadow: 0 2px 12px rgba(232,117,26,0.3); } .side-tool:hover { background: #d06816; box-shadow: 0 4px 20px rgba(232,117,26,0.45); } .side-tool-icon { width: 24px; height: 24px; } /* QR popover */ .side-tool-qr { position: relative; } .side-tool-qrpop { position: absolute; right: 56px; bottom: -20px; background: #fff; border-radius: 10px; padding: 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.15); opacity: 0; visibility: hidden; transform: translateX(8px); transition: opacity .25s, visibility .25s, transform .25s; display: flex; flex-direction: column; align-items: center; gap: 10px; pointer-events: none; white-space: nowrap; min-width: 160px; } .side-tool-qr:hover .side-tool-qrpop { opacity: 1; visibility: visible; transform: translateX(0); pointer-events: auto; } .side-tool-qrpop-tip { font-size: 12px; color: #b0b0b0; } .side-tool-qrpop img { width: 130px; height: 130px; border-radius: 6px; display: block; }