@charset "UTF-8";
/*
 * nprogress.css v0.2.0 — 阅丞集团官网专用—第三方页面加载进度条样式 / YC Official Website — Third-Party Page Loading Progress Bar Styles
 * nprogress.css v0.2.0 — NProgress 页面顶部加载进度条（已定制：蓝紫渐变+隐藏spinner）/ NProgress Top Loading Bar (Customized: Blue-Purple Gradient + Hidden Spinner)
 *
 * 【代码说明 / Code Info】
 * 作用 / Purpose：第三方开源页面顶部加载进度条样式表 / Third-party open-source top loading progress bar stylesheet (NProgress)
 * 功能 / Features：页面顶部加载进度条样式、蓝紫渐变色（#00A4FF→#7C4DFF）、3px高度、
 *      隐藏右上角spinner圈圈、进度条动画、百分比显示
 *      Top loading progress bar styles, blue-purple gradient (#00A4FF→#7C4DFF), 3px height,
 *      hide top-right spinner, progress bar animation, percentage display
 * 应用模块 / Module：全站所有页面（通过YC-pro-header.php引入，配合nprogress.js使用）/ All pages (imported via YC-pro-header.php, used with nprogress.js)
 * 定制内容 / Customization：原NProgress默认蓝色→改为阅丞集团蓝紫渐变；原spinner显示→隐藏
 *      Original NProgress default blue → changed to YC Group blue-purple gradient; original spinner shown → hidden
 *
 * 【版权声明 / Copyright Notice】
 * 本文件基于第三方开源软件NProgress定制，其原始版权归原作者所有。阅丞集团依据相关开源许可证合法使用并定制本文件的样式部分，原始代码结构及核心逻辑未作修改。本文件的原始版权声明及许可证条款完整保留，具有法律效力。
 * This file is customized based on the third-party open-source software NProgress. Its original copyright belongs to the original author(s). YC Group legally uses and customizes the style portion of this file under the applicable open-source license, while the original code structure and core logic remain unmodified. The original copyright notice and license terms of this file are fully preserved and have legal effect.
 * 原始库 / Original Library: NProgress (https://github.com/rstacruz/nprogress)
 * 原始作者 / Original Author: Rico Sta. Cruz
 * 原始许可证 / Original License: MIT License
 * 定制内容 / Customization: 蓝紫渐变色 / Blue-purple gradient color; 隐藏spinner / Hide spinner
 */

/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: linear-gradient(90deg, #00A4FF, #7C4DFF);

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 3px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #00A4FF, 0 0 5px #7C4DFF;
  opacity: 1.0;

  -webkit-transform: rotate(3deg) translate(0px, -4px);
      -ms-transform: rotate(3deg) translate(0px, -4px);
          transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: none;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
          animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0%   { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

