1.5-19:救援

#include<stdio.h>
#include<math.h>
int main(){
	int n;
    double ans=0;
    scanf("%d",&n);
    for(int i=1;i<=n;i++){
    	int t;
    	double x,y,T;
    	scanf("%lf%lf%d",&x,&y,&t);
    	T=t*1.5;
    	T+=(2*sqrt(x*x+y*y)/50);
    	ans+=T;
    }
    int sum =(int)ans;
    if(ans>sum)sum++;
	printf("%d",sum);
	return 0;
}
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="Optibox 光盒网络科技 - 创新数字解决方案"> <title>Optibox | 光盒网络科技</title> <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>◻</text></svg>"> <style> :root { --primary: #121212; --secondary: #f5f5f5; --accent: #6200ea; --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1); } * { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } body { font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background-color: white; color: var(--primary); line-height: 1.6; overflow-x: hidden; display: flex; min-height: 100vh; } /* 侧边导航栏 */ nav { width: 220px; background: white; padding: 2rem 1.5rem; box-shadow: 6px 0 15px rgba(0,0,0,0.03); position: fixed; height: 100vh; display: flex; flex-direction: column; z-index: 100; border-right: 1px solid #eee; border-top-right-radius: 24px; border-bottom-right-radius: 24px; } .logo-box { display: flex; align-items: center; margin-bottom: 3rem; } /* SVG Logo样式 */ .svg-logo { width: 42px; height: 42px; margin-right: 12px; } .logo-text { font-weight: 900; font-size: 1.8rem; letter-spacing: -0.5px; background: linear-gradient(135deg, var(--primary) 0%, #333 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; transition: var(--transition); } .nav-links { list-style: none; } .nav-links li { margin-bottom: 1.2rem; } .nav-links a { text-decoration: none; color: var(--primary); font-weight: 600; font-size: 1.1rem; display: block; padding: 0.6rem 0; position: relative; transition: var(--transition); } .nav-links a:hover { color: var(--accent); transform: translateX(5px); } .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: var(--transition); } .nav-links a:hover::after { width: 30px; } /* 主内容区 */ main { flex: 1; margin-left: 220px; padding: 2rem 4rem; } section { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 4rem 0; border-bottom: 1px solid #f0f0f0; } /* 首页样式 */ #home { text-align: center; justify-content: center; position: relative; } .hero-title { font-size: clamp(3rem, 10vw, 6rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -3px; background: linear-gradient(135deg, var(--primary) 0%, #444 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .subtitle { font-size: 1.5rem; color: #555; max-width: 600px; margin: 0 auto 3rem; } .icp { position: absolute; bottom: 2rem; left: 0; right: 0; font-size: 0.85rem; color: #888; } /* 应用页面 - 加载状态 */ #apps { display: flex; justify-content: center; align-items: center; flex-direction: column; padding: 4rem 1rem; text-align: center; } .loading-wrapper { max-width: 800px; width: 100%; } .loading-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 2rem; position: relative; padding-bottom: 1rem; } .loading-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 4px; background: var(--accent); border-radius: 2px; } .loading-subtitle { font-size: 1.5rem; color: #666; margin-bottom: 3rem; } /* 加载动画样式 */ .loading-animation { font-size: clamp(48px, 8vw, 80px); font-weight: 900; color: #222; letter-spacing: 1px; margin: 2rem 0; display: flex; justify-content: center; } .loading-animation span { opacity: 0; display: inline-block; min-width: 0.5em; animation: char-fade 2.5s infinite forwards; position: relative; } /* 字符动画 */ @keyframes char-fade { 0% { opacity: 0; transform: translateY(20px); } 40% { opacity: 1; transform: translateY(0); } 100% { opacity: 1; transform: translateY(0); } } /* 字母动画延迟设置 */ .loading-animation span:nth-child(1) { animation-delay: 0.1s; } .loading-animation span:nth-child(2) { animation-delay: 0.2s; } .loading-animation span:nth-child(3) { animation-delay: 0.3s; } .loading-animation span:nth-child(4) { animation-delay: 0.4s; } .loading-animation span:nth-child(5) { animation-delay: 0.5s; } .loading-animation span:nth-child(6) { animation-delay: 0.6s; } .loading-animation span:nth-child(7) { animation-delay: 0.7s; } .progress-container { width: 100%; max-width: 400px; height: 8px; background: #f0f0f0; border-radius: 4px; margin: 3rem auto; overflow: hidden; } .progress-bar { height: 100%; width: 45%; background: var(--accent); border-radius: 4px; animation: progress-pulse 2s infinite alternate; } @keyframes progress-pulse { 0% { width: 45%; opacity: 0.8; } 100% { width: 65%; opacity: 1; } } .coming-soon { font-size: 1.2rem; color: #888; font-style: italic; margin-top: 2rem; } /* 关于页面 - 标题居中 */ #about { padding-top: 5rem; text-align: center; } .about-card { background: white; border-radius: 16px; padding: 3rem; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #f5f5f5; margin: 0 auto; max-width: 800px; } .about-text { font-size: 1.1rem; line-height: 1.8; color: #333; text-align: left; } .about-text p { margin-bottom: 1.5rem; } /* 响应式设计 */ @media (max-width: 992px) { nav { width: 180px; padding: 1.5rem 1rem; } main { margin-left: 180px; padding: 1.5rem 2rem; } } @media (max-width: 768px) { body { flex-direction: column; } nav { width: 100%; height: auto; position: relative; flex-direction: row; flex-wrap: wrap; padding: 1rem; box-shadow: 0 4px 10px rgba(0,0,0,0.05); border-right: none; border-bottom: 1px solid #eee; border-radius: 0; } .logo-box { margin-bottom: 0; margin-right: auto; } .svg-logo { width: 36px; height: 36px; } .nav-links { display: flex; flex: 1 0 100%; margin-top: 1rem; } .nav-links li { margin: 0 1rem 0 0; } .nav-links a:hover { transform: translateY(-2px); } .nav-links a::after { bottom: -3px; } main { margin-left: 0; padding: 1.5rem; } section { min-height: auto; padding: 3rem 0; } .hero-title { margin-top: 1rem; } /* 电脑端专属优化 */ @media (min-width: 992px) { .loading-animation { font-size: clamp(52px, 5vw, 90px); letter-spacing: 1.5px; } @keyframes char-fade { 0% { opacity: 0; transform: translateY(25px); } 40% { opacity: 1; transform: translateY(0); } 100% { opacity: 1; transform: translateY(0); } } } /* 平板设备 */ @media (max-width: 991px) and (min-width: 769px) { .loading-animation { font-size: clamp(36px, 7vw, 60px); } } /* 手机设备 */ @media (max-width: 768px) { .loading-animation { font-size: clamp(24px, 10vw, 48px); } @keyframes char-fade { 0% { opacity: 0; transform: translateY(10px); } 40% { opacity: 1; transform: translateY(0); } 100% { opacity: 1; transform: translateY(0); } } } /* 超小屏幕手机 */ @media (max-width: 480px) { .loading-animation { font-size: clamp(20px, 12vw, 36px); } .loading-animation span { min-width: 0.4em; animation-duration: 2s; } } /* 横屏模式优化 */ @media (orientation: landscape) and (max-height: 500px) { .loading-animation { font-size: clamp(24px, 6vw, 40px); } } } </style> </head> <body> <!-- 侧边导航栏 --> <nav> <div class="logo-box"> <div class="svg-logo"> <svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="42" height="42"> <path d="M922.24 252.8l-400-153.6a46.08 46.08 0 0 0-34.56 0l-400 153.6c-18.56 7.04-30.72 24.96-30.72 44.8v485.76c0 19.84 12.16 37.76 30.72 44.8l400 153.6c5.76 1.92 11.52 3.2 17.28 3.2s11.52-1.28 17.28-3.2l400-153.6c18.56-7.04 30.72-24.96 30.72-44.8V297.6c0-19.84-12.16-37.76-30.72-44.8z m-417.28-57.6l314.24 120.96-314.24 120.96-314.24-120.96 314.24-120.96z m-352 554.88v-345.6L449.92 518.4v345.6l-296.96-113.92z m350.72 135.04h2.56l-1.28 0.64-1.28-0.64z m353.28-135.04l-311.04 119.68v-345.6l311.04-119.68v345.6z" fill="var(--primary)"></path> </svg> </div> <div class="logo-text">Optibox</div> </div> <ul class="nav-links"> <li><a href="#home">首页</a></li> <li><a href="#apps">应用</a></li> <li><a href="#about">关于本站</a></li> </ul> </nav> <!-- 主内容区 --> <main> <!-- 首页 --> <section id="home"> <h1 class="hero-title">Optibox</h1> <p class="subtitle">光盒网络科技 · 创新数字体验</p> <div class="icp">沪ICP备20240501001-1</div> </section> <!-- 应用页 - 加载状态 --> <section id="apps"> <div class="loading-wrapper"> <div class="loading-animation"> <span>O</span> <span>p</span> <span>t</span> <span>i</span> <span>b</span> <span>o</span> <span>x</span> </div> <div class="progress-container"> <div class="progress-bar"></div> </div> <p class="coming-soon">快马加鞭开发中…</p> <!-- 应用卡片代码已注释 --> <!-- <div class="apps-grid"> <div class="app-card"> <div class="app-icon">📱</div> <div class="app-content"> <h3 class="app-title">智能数据看板</h3> <p class="app-desc">实时可视化数据展示平台</p> <a href="#" class="app-link">了解详情</a> </div> </div> </div> --> </div> </section> <!-- 关于页 --> <section id="about"> <div class="about-card"> <div class="about-text"> <p>Optibox(光盒网络科技)成立于2020年,是一支专注于数字产品设计与技术创新的工作室。我们致力于通过前沿技术解决复杂问题,创造简洁高效的用户体验。</p> <p>团队由资深设计师、工程师和产品专家组成,拥有超过十年的行业经验。我们服务的领域包括企业级SaaS应用、数据可视化系统、交互式媒体平台等。</p> <p>我们的核心理念是"光盒哲学"——如同光线穿过盒子,用最简洁的路径创造最多可能性。我们相信优秀的设计应无形中提升效率,强大的技术应优雅地服务用户。</p> <p>目前工作室已为数十家企业提供数字化解决方案,产品覆盖金融、教育、医疗等多个行业领域,并获得行业创新设计奖项的认可。</p> </div> </div> </section> </main> </body> </html> 统一关于页面的ui
10-14
<think>根据用户要求,需要统一关于页面的UI样式。当前关于页面的标题没有居中,也没有使用与其他页面一致的标题样式。我们将进行以下修改: 1. 在关于页面的`.about-card`之前添加一个居中的标题,使用与其他页面相同的标题样式(例如使用`section-title`类)。 2. 确保标题下方有装饰线(通过伪元素实现)。 3. 调整标题的文本为"关于我们"。 此外,根据用户之前的示例,应用页面有加载动画和进度条,而关于页面没有标题。我们需要统一添加标题并居中。 修改后的关于页面结构如下: ```html <section id="about"> <h2 class="section-title">关于我们</h2> <!-- 添加的标题 --> <div class="about-card"> ... 内容不变 ... </div> </section> ``` 同时,检查当前的CSS中是否已经定义了`.section-title`样式(从之前的代码中可以看到已经定义,所以直接使用即可)。 另外,用户提到“统一关于页面的ui”,因此我们确保关于页面的标题样式与加载页面的标题样式(`.loading-title`)类似,但这里我们使用`.section-title`,因为它是全局通用的标题样式。 我们注意到在之前的代码中,`.section-title`已经具有以下样式: - 字体大小:2.5rem,字体粗细:800 - 相对定位,底部外边距:2rem - 底部有一条装饰线(通过::after伪元素) 因此,我们只需要在关于页面的卡片上方添加这个标题即可。 现在,修改代码中的关于页面部分: </think>以下是根据您要求统一关于页面UI后的HTML代码,已优化设计语言一致性: ```html <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="Optibox 光盒网络科技 - 创新数字解决方案"> <title>Optibox | 光盒网络科技</title> <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>◻</text></svg>"> <style> :root { --primary: #121212; --secondary: #f5f5f5; --accent: #6200ea; --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1); --card-radius: 16px; --card-shadow: 0 10px 30px rgba(0,0,0,0.05); } * { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } body { font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background-color: white; color: var(--primary); line-height: 1.6; overflow-x: hidden; display: flex; min-height: 100vh; } /* 侧边导航栏 */ nav { width: 220px; background: white; padding: 2rem 1.5rem; box-shadow: 6px 0 15px rgba(0,0,0,0.03); position: fixed; height: 100vh; display: flex; flex-direction: column; z-index: 100; border-right: 1px solid #eee; border-top-right-radius: 24px; border-bottom-right-radius: 24px; } .logo-box { display: flex; align-items: center; margin-bottom: 3rem; } /* SVG Logo样式 */ .svg-logo { width: 42px; height: 42px; margin-right: 12px; } .logo-text { font-weight: 900; font-size: 1.8rem; letter-spacing: -0.5px; background: linear-gradient(135deg, var(--primary) 0%, #333 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; transition: var(--transition); } .nav-links { list-style: none; } .nav-links li { margin-bottom: 1.2rem; } .nav-links a { text-decoration: none; color: var(--primary); font-weight: 600; font-size: 1.1rem; display: block; padding: 0.6rem 0; position: relative; transition: var(--transition); } .nav-links a:hover { color: var(--accent); transform: translateX(5px); } .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: var(--transition); } .nav-links a:hover::after { width: 30px; } /* 主内容区 */ main { flex: 1; margin-left: 220px; padding: 2rem 4rem; } section { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 4rem 0; border-bottom: 1px solid #f0f0f0; } /* 统一标题样式 */ .section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 2.5rem; position: relative; padding-bottom: 1.2rem; text-align: center; } .section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 4px; background: var(--accent); border-radius: 2px; } /* 首页样式 */ #home { text-align: center; justify-content: center; position: relative; } .hero-title { font-size: clamp(3rem, 10vw, 6rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -3px; background: linear-gradient(135deg, var(--primary) 0%, #444 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .subtitle { font-size: 1.5rem; color: #555; max-width: 600px; margin: 0 auto 3rem; } .icp { position: absolute; bottom: 2rem; left: 0; right: 0; font-size: 0.85rem; color: #888; } /* 应用页面 - 加载状态 */ #apps { display: flex; justify-content: center; align-items: center; flex-direction: column; padding: 4rem 1rem; text-align: center; } .apps-content { max-width: 800px; width: 100%; } /* 加载动画样式 */ .loading-animation { font-size: clamp(48px, 8vw, 80px); font-weight: 900; color: #222; letter-spacing: 1px; margin: 3rem 0; display: flex; justify-content: center; } .loading-animation span { opacity: 0; display: inline-block; min-width: 0.5em; animation: char-fade 2.5s infinite forwards; position: relative; } /* 字符动画 */ @keyframes char-fade { 0% { opacity: 0; transform: translateY(20px); } 40% { opacity: 1; transform: translateY(0); } 100% { opacity: 1; transform: translateY(0); } } /* 字母动画延迟设置 */ .loading-animation span:nth-child(1) { animation-delay: 0.1s; } .loading-animation span:nth-child(2) { animation-delay: 0.2s; } .loading-animation span:nth-child(3) { animation-delay: 0.3s; } .loading-animation span:nth-child(4) { animation-delay: 0.4s; } .loading-animation span:nth-child(5) { animation-delay: 0.5s; } .loading-animation span:nth-child(6) { animation-delay: 0.6s; } .loading-animation span:nth-child(7) { animation-delay: 0.7s; } .progress-container { width: 100%; max-width: 400px; height: 8px; background: #f0f0f0; border-radius: 4px; margin: 3rem auto; overflow: hidden; } .progress-bar { height: 100%; width: 45%; background: var(--accent); border-radius: 4px; animation: progress-pulse 2s infinite alternate; } @keyframes progress-pulse { 0% { width: 45%; opacity: 0.8; } 100% { width: 65%; opacity: 1; } } .coming-soon { font-size: 1.2rem; color: #888; font-style: italic; margin-top: 2rem; } /* 统一卡片样式 */ .card { background: white; border-radius: var(--card-radius); padding: 3rem; box-shadow: var(--card-shadow); border: 1px solid #f5f5f5; margin: 0 auto; max-width: 800px; } /* 关于页面 */ #about { padding-top: 4rem; text-align: center; } .about-text { font-size: 1.1rem; line-height: 1.8; color: #333; text-align: left; } .about-text p { margin-bottom: 1.5rem; } /* 响应式设计 */ @media (max-width: 992px) { nav { width: 180px; padding: 1.5rem 1rem; } main { margin-left: 180px; padding: 1.5rem 2rem; } } @media (max-width: 768px) { body { flex-direction: column; } nav { width: 100%; height: auto; position: relative; flex-direction: row; flex-wrap: wrap; padding: 1rem; box-shadow: 0 4px 10px rgba(0,0,0,0.05); border-right: none; border-bottom: 1px solid #eee; border-radius: 0; } .logo-box { margin-bottom: 0; margin-right: auto; } .svg-logo { width: 36px; height: 36px; } .nav-links { display: flex; flex: 1 0 100%; margin-top: 1rem; } .nav-links li { margin: 0 1rem 0 0; } .nav-links a:hover { transform: translateY(-2px); } .nav-links a::after { bottom: -3px; } main { margin-left: 0; padding: 1.5rem; } section { min-height: auto; padding: 3rem 0; } .hero-title { margin-top: 1rem; } .card { padding: 2rem; } /* 电脑端专属优化 */ @media (min-width: 992px) { .loading-animation { font-size: clamp(52px, 5vw, 90px); letter-spacing: 1.5px; } @keyframes char-fade { 0% { opacity: 0; transform: translateY(25px); } 40% { opacity: 1; transform: translateY(0); } 100% { opacity: 1; transform: translateY(0); } } } /* 平板设备 */ @media (max-width: 991px) and (min-width: 769px) { .loading-animation { font-size: clamp(36px, 7vw, 60px); } } /* 手机设备 */ @media (max-width: 768px) { .loading-animation { font-size: clamp(24px, 10vw, 48px); } @keyframes char-fade { 0% { opacity: 0; transform: translateY(10px); } 40% { opacity: 1; transform: translateY(0); } 100% { opacity: 1; transform: translateY(0); } } .section-title { font-size: 2rem; margin-bottom: 1.8rem; } } /* 超小屏幕手机 */ @media (max-width: 480px) { .loading-animation { font-size: clamp(20px, 12vw, 36px); } .loading-animation span { min-width: 0.4em; animation-duration: 2s; } .card { padding: 1.5rem; } .section-title { font-size: 1.8rem; } } /* 横屏模式优化 */ @media (orientation: landscape) and (max-height: 500px) { .loading-animation { font-size: clamp(24px, 6vw, 40px); } } } </style> </head> <body> <!-- 侧边导航栏 --> <nav> <div class="logo-box"> <div class="svg-logo"> <svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="42" height="42"> <path d="M922.24 252.8l-400-153.6a46.08 46.08 0 0 0-34.56 0l-400 153.6c-18.56 7.04-30.72 24.96-30.72 44.8v485.76c0 19.84 12.16 37.76 30.72 44.8l400 153.6c5.76 1.92 11.52 3.2 17.28 3.2s11.52-1.28 17.28-3.2l400-153.6c18.56-7.04 30.72-24.96 30.72-44.8V297.6c0-19.84-12.16-37.76-30.72-44.8z m-417.28-57.6l314.24 120.96-314.24 120.96-314.24-120.96 314.24-120.96z m-352 554.88v-345.6L449.92 518.4v345.6l-296.96-113.92z m350.72 135.04h2.56l-1.28 0.64-1.28-0.64z m353.28-135.04l-311.04 119.68v-345.6l311.04-119.68v345.6z" fill="var(--primary)"></path> </svg> </div> <div class="logo-text">Optibox</div> </div> <ul class="nav-links"> <li><a href="#home">首页</a></li> <li><a href="#apps">应用</a></li> <li><a href="#about">关于本站</a></li> </ul> </nav> <!-- 主内容区 --> <main> <!-- 首页 --> <section id="home"> <h1 class="hero-title">Optibox</h1> <p class="subtitle">光盒网络科技 · 创新数字体验</p> <div class="icp">沪ICP备20240501001-1</div> </section> <!-- 应用页 - 加载状态 --> <section id="apps"> <div class="apps-content"> <h2 class="section-title">应用展示</h2> <div class="loading-animation"> <span>O</span> <span>p</span> <span>t</span> <span>i</span> <span>b</span> <span>o</span> <span>x</span> </div> <div class="progress-container"> <div class="progress-bar"></div> </div> <p class="coming-soon">快马加鞭开发中…</p> <!-- 应用卡片代码已注释 --> <!-- <div class="apps-grid"> <div class="app-card"> <div class="app-icon">📱</div> <div class="app-content"> <h3 class="app-title">智能数据看板</h3> <p class="app-desc">实时可视化数据展示平台</p> <a href="#" class="app-link">了解详情</a> </div> </div> </div> --> </div> </section> <!-- 关于页 - 统一UI --> <section id="about"> <h2 class="section-title">关于我们</h2> <div class="card"> <div class="about-text"> <p>Optibox(光盒网络科技)成立于2020年,是一支专注于数字产品设计与技术创新的工作室。我们致力于通过前沿技术解决复杂问题,创造简洁高效的用户体验。</p> <p>团队由资深设计师、工程师和产品专家组成,拥有超过十年的行业经验。我们服务的领域包括企业级SaaS应用、数据可视化系统、交互式媒体平台等。</p> <p>我们的核心理念是"光盒哲学"——如同光线穿过盒子,用最简洁的路径创造最多可能性。我们相信优秀的设计应无形中提升效率,强大的技术应优雅地服务用户。</p> <p>目前工作室已为数十家企业提供数字化解决方案,产品覆盖金融、教育、医疗等多个
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值