CINXE.COM

AI导航 - SSLphp.AI-Tool导航 - SSLphp导航系统 - 专业AIGC网站导航

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>AI导航 - SSLphp.AI-Tool导航 - SSLphp导航系统 - 专业AIGC网站导航</title> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta content="SSLphp.AI-Tool导航,ai网址导航,AIGC导航为AI创作者提供AI绘画、AI智能对话、AI翻译、AI提示词、AI工具、AI智能写作、AI 3D设计、AI视频、AI语音等AI网站导航指引。" name="description" /> <meta content="SSLphp.AI-Tool导航,AI导航,AI网址导航,AIGC,AIGC网站,AI工具,AI导航,AI人工智能,AI绘画,AI智能对话,AI翻译,AI提示词,AI工具,AI智能写作,AI 3D设计,AI视频,AI语音,AI资讯,AI资源,AI开源" name="Keywords" /> <meta content="MyraStudio" name="author" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <!---应用--> <!--应用保存--> <!-- 应用程序 favicon --> <link rel="shortcut icon" href="http://zhanting.cn/storage/upload/20240611/6667cc733c10a.ico"> <link rel="stylesheet" href="https://cdn.phpbe.com/ui/be-icons.css"> <!-- 应用程序 css --> <link rel="stylesheet" href="static/index/select2.min.css"> <link rel="stylesheet" href="/static/sslphp/home/assets/sslphp.min.css"> <link href="/static/sslphp/home/assets/css/icons.min.css" rel="stylesheet" type="text/css" /> <link href="/static/sslphp/home/assets/css/theme.min.css" rel="stylesheet" type="text/css" /> </head> <style> body { background-color: #eff4f8; } @media only screen and (max-width: 768px) { .navbar-header { height: 50px; background-color: #ffffff; } } @media only screen and (max-width: 768px) { .container-fluid, .container-lg, .container-md, .container-sm, .container-xl { margin-top: -110px; } } #sidebar-menu ul li { padding: 2px 10px; /* 添加左右边距 */ } #sidebar-menu ul li a:hover { background-color: #ff6000 !important; /* 背景色为蓝色 */ color: #ffffff !important; /* 字体颜色为白色 */ border-radius: 10px; text-decoration: none; transition: background-color 0.3s; } </style> <style> /*内容鼠标弹动*/ .content-block { transition: transform 0.3s ease; } .content-block:hover { transform: translateY(-10px); } .content-block:hover h3 { color: #007bff; } .content-block:active { transform: translateY(0); } </style> <style> /*手机访问隐藏天气*/ @media (max-width: 767px) { .header-breadcumb { display: none; } } /*手机访问隐藏天气*/ /*手机版logo显示*/ /* 在移动设备上显示 */ @media (max-width: 768px) { .hide-on-desktop { margin-top: 0px; display: block; } } /* 在电脑上隐藏 */ @media (min-width: 769px) { .hide-on-desktop { display: none; } } </style> <style> .ad-container { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: #fff; color: #333; padding: 20px; border-radius: 5px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); animation: fadeIn 0.5s; z-index: 9999; } @keyframes fadeIn { from { opacity: 0; transform: translate(-50%, -50%) scale(0.5); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } } .ad-text { font-size: 16px; margin-bottom: 10px; } .ad-button { display: block; margin: 0 auto; padding: 5px 10px; background-color: #4CAF50; color: #fff; border: none; border-radius: 3px; cursor: pointer; font-size: 14px; text-transform: uppercase; transition: background-color 0.3s; } .ad-button:hover { background-color: #45a049; } .close-button { position: absolute; top: 5px; right: 5px; cursor: pointer; color: #aaa; font-size: 18px; font-weight: bold; transition: color 0.3s; } .close-button:hover { color: #333; } </style> <body> <div id="ad-container" class="ad-container" style="display: none;"> <span class="close-button" onclick="closeAd()">×</span> <div class="ad-text">把本站保存至桌面有奖励可领取</div> <button class="ad-button" id="downloadButton">领取奖励</button> </div> <script> var adContainer = document.getElementById('ad-container'); function showAd() { adContainer.style.display = 'block'; adContainer.style.animation = 'fadeIn 0.5s'; } function closeAd() { adContainer.style.animation = 'fadeOut 0.5s forwards'; setTimeout(function() { adContainer.style.display = 'none'; }, 500); // 0.5s后隐藏弹窗 } function hasSeenAdToday() { var lastSeen = localStorage.getItem('adLastSeen'); if (!lastSeen) return false; var lastSeenDate = new Date(lastSeen); var today = new Date(); return ( lastSeenDate.getDate() === today.getDate() && lastSeenDate.getMonth() === today.getMonth() && lastSeenDate.getFullYear() === today.getFullYear() ); } function markAdAsSeen() { var today = new Date(); localStorage.setItem('adLastSeen', today.toISOString()); } function hasClickedDownload() { return localStorage.getItem('adDownloadClicked') === 'true'; } function markDownloadClicked() { localStorage.setItem('adDownloadClicked', 'true'); } if (!hasSeenAdToday() && !hasClickedDownload()) { showAd(); markAdAsSeen(); } /* if (!hasSeenAdToday()) { showAd(); markAdAsSeen(); }*/ document.getElementById("downloadButton").addEventListener("click", function() { // 获取浏览器信息 var browserInfo = navigator.userAgent; // 获取当前域名 var domain = window.location.hostname; // 构建 .url 文件内容 var fileContent = "[InternetShortcut]\r\nURL=http://127.0.0.20?source=sslphp"; // 创建 Blob 对象 var blob = new Blob([fileContent], { type: 'text/plain' }); // 创建下载链接 var urlObject = URL.createObjectURL(blob); // 创建一个 <a> 元素 var a = document.createElement('a'); // 设置下载链接和文件名 a.href = urlObject; a.download = "我的网址导航.url"; // 添加点击事件监听器 a.addEventListener('click', function() { // 发送下载事件到服务器 fetch('/Download/trackDownload', { method: 'POST', body: JSON.stringify({ file: "我的网址导航.url", browser_info: browserInfo, domain: domain }), headers: { 'Content-Type': 'application/json' } }) .then(response => { if (response.ok) { console.log('Download tracked successfully'); } else { console.error('Failed to track download'); } }) .catch(error => { console.error('Error tracking download:', error); }); }); // 添加到页面中并触发点击 document.body.appendChild(a); a.click(); // 清理 document.body.removeChild(a); URL.revokeObjectURL(urlObject); }); /* function closeAd() { var adContainer = document.querySelector('.ad-container'); adContainer.style.animation = 'fadeOut 0.5s forwards'; setTimeout(function() { adContainer.style.display = 'none'; }, 500); // 0.5s后隐藏弹窗 }*/ document.addEventListener('keydown', function(event) { if (event.key === 'Escape') { closeAd(); } }); </script> <!---应用--> <!-- 开始页面 --> <div id="layout-wrapper"> <!-- ========== 左侧边栏开始 ========== --> <div class="vertical-menu"> <div data-simplebar class="h-100"> <!-- LOGO --> <div class="navbar-brand-box"> <a href="/" class="logo"> <span> <img style="margin-left: -50px; margin-top: 10px;" src="http://zhanting.cn/storage/upload/20240611/666808a49386d.png" alt="" height="45"> </span> <i> <img src="http://zhanting.cn/storage/upload/20240611/666808a49386d.png" alt="" height="24"> </i> </a> </div> <!--- 侧边菜单 --> <div id="sidebar-menu"> <!-- 左侧菜单开始 --> <ul class="metismenu list-unstyled" id="side-menu"> <li><a href="#hot"><i class="bi-droplet-half"></i><span>热门推荐</span></a></li> <li> <a href="#categoryContent_56" class="has-arrow"><i class="bi-translate"></i><span>AI文本工具</span></a> <ul class="sub-menu" aria-expanded="false"> <li> <a href="#subCategoryContent_56" onclick="showSubCategoryContent(57, 56)"> AI写作工具</a> </li> <!--<a href="#subCategoryContent_57"></a>--> <li> <a href="#subCategoryContent_56" onclick="showSubCategoryContent(58, 56)"> AI聊天</a> </li> <!--<a href="#subCategoryContent_58"></a>--> <li> <a href="#subCategoryContent_56" onclick="showSubCategoryContent(59, 56)"> AI提示词</a> </li> <!--<a href="#subCategoryContent_59"></a>--> <li> <a href="#subCategoryContent_56" onclick="showSubCategoryContent(60, 56)"> AI内容检查</a> </li> <!--<a href="#subCategoryContent_60"></a>--> </ul> </li> <li> <a href="#categoryContent_61" class="has-arrow"><i class="bi-card-image"></i><span>AI图片处理</span></a> <ul class="sub-menu" aria-expanded="false"> <li> <a href="#subCategoryContent_61" onclick="showSubCategoryContent(62, 61)"> AI绘画</a> </li> <!--<a href="#subCategoryContent_62"></a>--> <li> <a href="#subCategoryContent_61" onclick="showSubCategoryContent(64, 61)"> 在线修图</a> </li> <!--<a href="#subCategoryContent_64"></a>--> <li> <a href="#subCategoryContent_61" onclick="showSubCategoryContent(65, 61)"> AI图像增强</a> </li> <!--<a href="#subCategoryContent_65"></a>--> <li> <a href="#subCategoryContent_61" onclick="showSubCategoryContent(66, 61)"> AI抠图</a> </li> <!--<a href="#subCategoryContent_66"></a>--> <li> <a href="#subCategoryContent_61" onclick="showSubCategoryContent(67, 61)"> 魔术橡皮擦</a> </li> <!--<a href="#subCategoryContent_67"></a>--> <li> <a href="#subCategoryContent_61" onclick="showSubCategoryContent(68, 61)"> AI去水印</a> </li> <!--<a href="#subCategoryContent_68"></a>--> <li> <a href="#subCategoryContent_61" onclick="showSubCategoryContent(69, 61)"> 图片修复</a> </li> <!--<a href="#subCategoryContent_69"></a>--> <li> <a href="#subCategoryContent_61" onclick="showSubCategoryContent(70, 61)"> AI图片压缩</a> </li> <!--<a href="#subCategoryContent_70"></a>--> <li> <a href="#subCategoryContent_61" onclick="showSubCategoryContent(71, 61)"> AI头像生成</a> </li> <!--<a href="#subCategoryContent_71"></a>--> <li> <a href="#subCategoryContent_61" onclick="showSubCategoryContent(72, 61)"> 图片放大</a> </li> <!--<a href="#subCategoryContent_72"></a>--> <li> <a href="#subCategoryContent_61" onclick="showSubCategoryContent(75, 61)"> AI模特生成</a> </li> <!--<a href="#subCategoryContent_75"></a>--> <li> <a href="#subCategoryContent_61" onclick="showSubCategoryContent(76, 61)"> AI LOGO生成</a> </li> <!--<a href="#subCategoryContent_76"></a>--> </ul> </li> <li> <a href="#categoryContent_77"><i class="bi-chat-dots"></i><span>AI 聊天对话</span></a> </li> <li> <a href="#categoryContent_78" class="has-arrow"><i class="bi-camera-reels"></i><span>AI视频工具</span></a> <ul class="sub-menu" aria-expanded="false"> <li> <a href="#subCategoryContent_78" onclick="showSubCategoryContent(79, 78)"> AI视频生成</a> </li> <!--<a href="#subCategoryContent_79"></a>--> <li> <a href="#subCategoryContent_78" onclick="showSubCategoryContent(80, 78)"> AI视频剪辑</a> </li> <!--<a href="#subCategoryContent_80"></a>--> <li> <a href="#subCategoryContent_78" onclick="showSubCategoryContent(81, 78)"> AI虚拟数字人</a> </li> <!--<a href="#subCategoryContent_81"></a>--> <li> <a href="#subCategoryContent_78" onclick="showSubCategoryContent(82, 78)"> AI换脸</a> </li> <!--<a href="#subCategoryContent_82"></a>--> <li> <a href="#subCategoryContent_78" onclick="showSubCategoryContent(84, 78)"> AI字幕翻译</a> </li> <!--<a href="#subCategoryContent_84"></a>--> </ul> </li> <li> <a href="#categoryContent_85" class="has-arrow"><i class="bi-sort-alpha-up"></i><span>AI音频工具</span></a> <ul class="sub-menu" aria-expanded="false"> <li> <a href="#subCategoryContent_85" onclick="showSubCategoryContent(86, 85)"> AI音频</a> </li> <!--<a href="#subCategoryContent_86"></a>--> <li> <a href="#subCategoryContent_85" onclick="showSubCategoryContent(87, 85)"> AI配音(文字转语言)</a> </li> <!--<a href="#subCategoryContent_87"></a>--> <li> <a href="#subCategoryContent_85" onclick="showSubCategoryContent(88, 85)"> 识别(语音转文字)</a> </li> <!--<a href="#subCategoryContent_88"></a>--> <li> <a href="#subCategoryContent_85" onclick="showSubCategoryContent(89, 85)"> AI语音克隆</a> </li> <!--<a href="#subCategoryContent_89"></a>--> <li> <a href="#subCategoryContent_85" onclick="showSubCategoryContent(90, 85)"> AI人声分离</a> </li> <!--<a href="#subCategoryContent_90"></a>--> <li> <a href="#subCategoryContent_85" onclick="showSubCategoryContent(91, 85)"> AI作曲</a> </li> <!--<a href="#subCategoryContent_91"></a>--> </ul> </li> <li> <a href="#categoryContent_92" class="has-arrow"><i class="bi-slash-square-fill"></i><span>AI办公工具</span></a> <ul class="sub-menu" aria-expanded="false"> <li> <a href="#subCategoryContent_92" onclick="showSubCategoryContent(93, 92)"> AI文档</a> </li> <!--<a href="#subCategoryContent_93"></a>--> <li> <a href="#subCategoryContent_92" onclick="showSubCategoryContent(94, 92)"> AI PPT</a> </li> <!--<a href="#subCategoryContent_94"></a>--> <li> <a href="#subCategoryContent_92" onclick="showSubCategoryContent(95, 92)"> AI数据可视化</a> </li> <!--<a href="#subCategoryContent_95"></a>--> <li> <a href="#subCategoryContent_92" onclick="showSubCategoryContent(96, 92)"> AI Excel</a> </li> <!--<a href="#subCategoryContent_96"></a>--> <li> <a href="#subCategoryContent_92" onclick="showSubCategoryContent(97, 92)"> AI 思维导图</a> </li> <!--<a href="#subCategoryContent_97"></a>--> </ul> </li> <li> <a href="#categoryContent_98" class="has-arrow"><i class="bi-safe-fill"></i><span>AI编程开发</span></a> <ul class="sub-menu" aria-expanded="false"> <li> <a href="#subCategoryContent_98" onclick="showSubCategoryContent(99, 98)"> AI编程</a> </li> <!--<a href="#subCategoryContent_99"></a>--> <li> <a href="#subCategoryContent_98" onclick="showSubCategoryContent(100, 98)"> AI(无代码/低代码)</a> </li> <!--<a href="#subCategoryContent_100"></a>--> <li> <a href="#subCategoryContent_98" onclick="showSubCategoryContent(101, 98)"> AI应用开发</a> </li> <!--<a href="#subCategoryContent_101"></a>--> </ul> </li> <li> <a href="#categoryContent_102" class="has-arrow"><i class="bi-screwdriver"></i><span>AI设计工具</span></a> <ul class="sub-menu" aria-expanded="false"> <li> <a href="#subCategoryContent_102" onclick="showSubCategoryContent(63, 102)"> AI 3D建模</a> </li> <!--<a href="#subCategoryContent_63"></a>--> <li> <a href="#subCategoryContent_102" onclick="showSubCategoryContent(103, 102)"> AI建筑设计</a> </li> <!--<a href="#subCategoryContent_103"></a>--> <li> <a href="#subCategoryContent_102" onclick="showSubCategoryContent(104, 102)"> AI室内设计</a> </li> <!--<a href="#subCategoryContent_104"></a>--> <li> <a href="#subCategoryContent_102" onclick="showSubCategoryContent(105, 102)"> AI LOGO设计</a> </li> <!--<a href="#subCategoryContent_105"></a>--> <li> <a href="#subCategoryContent_102" onclick="showSubCategoryContent(106, 102)"> AI 字体设计</a> </li> <!--<a href="#subCategoryContent_106"></a>--> </ul> </li> <li> <a href="#categoryContent_107" class="has-arrow"><i class="bi-puzzle"></i><span>AI插件大全</span></a> <ul class="sub-menu" aria-expanded="false"> <li> <a href="#subCategoryContent_107" onclick="showSubCategoryContent(108, 107)"> ChatGPT插件</a> </li> <!--<a href="#subCategoryContent_108"></a>--> <li> <a href="#subCategoryContent_107" onclick="showSubCategoryContent(109, 107)"> Stable Diffusion插件</a> </li> <!--<a href="#subCategoryContent_109"></a>--> <li> <a href="#subCategoryContent_107" onclick="showSubCategoryContent(110, 107)"> Midjoureny插件</a> </li> <!--<a href="#subCategoryContent_110"></a>--> <li> <a href="#subCategoryContent_107" onclick="showSubCategoryContent(111, 107)"> Ps ai插件</a> </li> <!--<a href="#subCategoryContent_111"></a>--> </ul> </li> <li> <a href="#categoryContent_112"><i class="bi-piggy-bank"></i><span>AI内容检测</span></a> </li> <li> <a href="#categoryContent_113"><i class="bi-safe-fill"></i><span>AI模型下载</span></a> </li> <li> <a href="#categoryContent_114"><i class="bi-safe2"></i><span>AI大模型</span></a> </li> <li> <a href="#categoryContent_115"><i class="bi-sign-intersection-y-fill"></i><span>AI开发框架</span></a> </li> <li> <a href="#categoryContent_116"><i class="bi-twitter"></i><span>AI社区</span></a> </li> <li> <a href="#categoryContent_117"><i class="bi-unity"></i><span>AI开放平台</span></a> </li> <li> <a href="#categoryContent_118"><i class="bi-type"></i><span>AI学习平台</span></a> </li> <li> <a href="#categoryContent_119"><i class="bi-universal-access"></i><span>AI竞赛</span></a> </li> <li> <a href="#categoryContent_120"><i class="bi-yin-yang"></i><span>AI算力平台</span></a> </li> </ul> </div> <!-- 侧边栏 --> </div> </div> <!-- 左侧边栏结束 --> <!-- ============================================================== --> <!-- 开始右侧内容 --> <!-- ============================================================== --> <div class="main-content"> <header id="page-topbar"> <div class="navbar-header"> <div class="d-flex align-items-center"> <button type="button" class="btn btn-sm mr-2 d-lg-none header-item" id="vertical-menu-btn"> <i class="fa fa-fw fa-bars"></i> </button> <img class="hide-on-desktop" src="http://zhanting.cn/storage/upload/20240611/666808a49386d.png" alt="" height="25"> <!--天气--> <!--天气--> <a id="baiduLink" href="/news" target="_blank" style="text-decoration: none; color: black; font-size: 16px;"> <i class="bi-discord"></i> 资讯</a> <style> @media only screen and (max-width: 767px) { #baiduLink { display: none; } } </style> </div> <!--搜索--> <div class="search-box" style="display: none;"> <form onsubmit="search(); return false;"> <div class="input-group mb-3"> <input type="text" class="form-control" placeholder="你想搜索的内容" id="searchQuery"> <div class="input-group-append custom-select-icon"> <select class="custom-select" id="searchEngine"> <option value="site" data-icon="https://sslphp.com/storage/upload/20240304/65e4aa45d6f31.svg">站内</option> <option value="baidu" data-icon="https://aigc.sslphp.com/storage/upload/20240303/65e485adb3beb.svg">百度</option> <option value="sogou" data-icon="https://sslphp.com/storage/upload/20240304/65e4aaff1e33c.svg">搜狗</option> <option value="bing" data-icon="https://sslphp.com/storage/upload/20240304/65e4aa8323e55.svg">必应</option> <option value="google" data-icon="https://sslphp.com/storage/upload/20240304/65e4ab69b2f5a.svg">谷歌</option> </select> <button class="btn btn-primaryt" type="button" onclick="search()"> <i class="fas fa-search"></i> 搜索一下 </button> </div> </div> </form> <span class="ico-ji" id="searchIcon"></span> </div> <script> document.addEventListener('DOMContentLoaded', function() { document.querySelector('.search-box').style.display = 'block'; }); </script> <script> const searchInput = document.getElementById("searchQuery"); const searchIcon = document.getElementById("searchIcon"); searchInput.addEventListener("focus", function() { searchIcon.style.display = "block"; }); searchInput.addEventListener("blur", function() { searchIcon.style.display = "none"; }); </script> <style> /*搜索隐藏*/ @media only screen and (max-width: 768px) { .search-box { display: none !important; } } /*搜索隐藏*/ /*搜索动画*/ .btn:focus, .btn:active { outline: none; /* Remove outline */ box-shadow: none; /* Remove box shadow */ } .btn-outline-success.dropdown-toggle { color: #fff; background-color: #282a2d !important; border-color: #282a2d !important; } .btn-outline-success.dropdown-toggle:focus { box-shadow: 0 0 0 0rem rgb(204, 11, 11) !important; } .form-control:focus { border-color: transparent; /* Set border color to transparent */ box-shadow: none; /* Remove box shadow */ } .ico-ji { background-image: url(https://sslphp.com/storage/upload/20240304/65e4afa082b38.gif); width: 32px; height: 41px; background-position: top center; background-size: contain; display: none; /* 初始状态隐藏 */ position: absolute; top: 11px; left: 50%; /* 根据用户登录状态动态设置left属性 */ transform: translateX(-50%); z-index: 9999; } /*搜索动画*/ .btn-primaryt { background-color: #ff6000 !important; /* 自定义按钮颜色 */ color: #fff; /* 文字颜色 */ border: none; /* 移除边框 */ /* 内边距 */ } .btn-primaryt:hover { background-color: #f06006 !important; color: #fff; /* 自定义悬停颜色 */ } .btn-outline-success { color: #282a2d; /* Custom text color */ border-color: #282a2d !important; /* Custom border color */ } .btn-outline-success:hover { background-color: #f06006 !important; border: 1px solid #f06006 !important; /* Custom hover background color */ color: #fff; /* Custom hover text color */ } .search-box { border: 0px solid #ccc; padding: 0px; border-radius: 5px; margin: 0 auto; max-width: 400px; height: 40px; } .img-icon { width: 20px; height: 20px; margin-right: 5px; } .form-control { height: 40px; /* Adjust input height */ } .select2-results__options { max-height: none !important; /* Remove max-height */ overflow-y: hidden; /* Hide vertical scrollbar */ } .select2-results__options { white-space: nowrap; /* Prevent text wrapping */ } .select2-container .select2-selection--single { width: 100%; height: auto; } .select2-results__option { display: flex; align-items: center; } .select2-container .select2-selection--single .select2-selection__rendered { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .select2-container .select2-selection--single .select2-selection__rendered { line-height: 38px; } .select2-container--default .select2-selection--single .select2-selection__arrow { height: 26px; position: absolute; top: 6px; right: 1px; width: 20px; } .form-control { display: block; width: 100%; height: calc(1.5em + .75rem + 2px); padding: .375rem .75rem; font-size: 1rem; font-weight: 400; line-height: 1.5; background-color: #fff; background-clip: padding-box; border: 0px solid #ced4da; border-radius: .25rem; transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out; } .select2-container--default .select2-selection--single { background-color: #fff; border: 0px solid #aaa; border-radius: 4px; } </style> <!--搜索--> <div class="d-flex align-items-center"> <button class="btn btn-outline-success dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" style="margin: 0px 18px;"> <i class="bi-mouse3"></i> 投稿 </button> <div class="dropdown-menu" aria-labelledby="dropdownMenuButton"> <a class="dropdown-item" href="/sell"><i class="bi-cloud-arrow-up-fill"></i> 网站投稿</a> <a class="dropdown-item" href="/zsell"><i class="bi-cloud-arrow-up"></i> 资讯投稿</a> </div> <div class="dropdown d-inline-block ml-2"> <a href="/user/login" class="btn btn-outline-success my-2 my-sm-0"><i class="mdi mdi-worker"></i> </a> </div> </div> </div> </header> <style> .sousuo { height: 200px; background: linear-gradient(to bottom, #ffffff, #eff4f8); display: flex; flex-direction: column; justify-content: center; } .inner-content { margin: auto; /* 上下居中 */ } .tab-content { text-align: center; } .nav.nav-tabs { display: flex; justify-content: center; } .nav-item { text-align: center; } .search-title { text-align: center; font-size: 24px; line-height: 1.17647059em; margin-bottom: .88235294em; color: #212529; white-space: nowrap; font-weight: normal; } .nav-tabs .nav-link { color: #212529; } .nav-tabs .nav-link.active { color: #ff6000; } /*手机版搜索框*/ #site-search form { display: flex; align-items: center; justify-content: space-between; margin: 0; } #site-search input { flex: 1; padding: 5px; border: none; border-radius: 0; } #site-search button { padding: 5px 10px; background-color: #ff6000; color: rgb(255, 255, 255); border: none; border-radius: 0 5px 5px 0; cursor: pointer; margin-left: -1px; } #baidu-search form { display: flex; align-items: center; justify-content: space-between; margin: 0; } #baidu-search input { flex: 1; padding: 5px; border: none; border-radius: 0; } #baidu-search button { padding: 5px 10px; background-color: #ff6000; color: rgb(255, 255, 255); border: none; border-radius: 0 5px 5px 0; cursor: pointer; margin-left: -1px; } #bing-search form { display: flex; align-items: center; justify-content: space-between; margin: 0; } #bing-search input { flex: 1; padding: 5px; border: none; border-radius: 0; } #bing-search button { padding: 5px 10px; background-color: #ff6000; color: rgb(255, 255, 255); border: none; border-radius: 0 5px 5px 0; cursor: pointer; margin-left: -1px; } #sogou-search form { display: flex; align-items: center; justify-content: space-between; margin: 0; } #sogou-search input { flex: 1; padding: 5px; border: none; border-radius: 0; } #sogou-search button { padding: 5px 10px; background-color: #ff6000; color: rgb(255, 255, 255); border: none; border-radius: 0 5px 5px 0; cursor: pointer; margin-left: -1px; } #google-search form { display: flex; align-items: center; justify-content: space-between; margin: 0; } #google-search input { flex: 1; padding: 5px; border: none; border-radius: 0; } #google-search button { padding: 5px 10px; background-color: #ff6000; color: rgb(255, 255, 255); border: none; border-radius: 0 5px 5px 0; cursor: pointer; margin-left: -1px; } /*手机版搜索框*/ /* 默认隐藏 div.sousuo 的内容 */ /* 默认隐藏 div.sousuo 的内容 */ /* 默认隐藏 div.sousuo 的内容 */ /* 在屏幕宽度大于等于768px时显示div.sousuo的内容 */ @media screen and (min-width: 768px) { .sousuo { display: none; } } </style> <div class="sousuo mt-5"> <div class="inner-content"> <h2 class="search-title">百万设计师都在用的AI工具导航</h2> <ul class="nav nav-tabs"> <li class="nav-item"> <!--<a class="nav-link active" data-toggle="tab" href="#site-search">站内</a>--> <a class="nav-link active" data-toggle="tab" href="#site-search"> <img src="https://sslphp.com/storage/upload/20240304/65e4aa45d6f31.svg" style="max-width: 23px; max-height: 23px;" alt="站内搜索"> </a> </li> <li class="nav-item"> <a class="nav-link" data-toggle="tab" href="#baidu-search"> <img src="https://aigc.sslphp.com/storage/upload/20240303/65e485adb3beb.svg" style="max-width: 23px; max-height: 23px;" alt="百度搜索"> </a> </li> <li class="nav-item"> <a class="nav-link" data-toggle="tab" href="#bing-search"> <img src="https://sslphp.com/storage/upload/20240304/65e4aa8323e55.svg" style="max-width: 23px; max-height: 23px;" alt="必应搜索"> </a> </li> <li class="nav-item"> <a class="nav-link" data-toggle="tab" href="#sogou-search"> <img src="https://sslphp.com/storage/upload/20240304/65e4aaff1e33c.svg" style="max-width: 23px; max-height: 23px;" alt="Sogou搜索"> </a> </li> <li class="nav-item"> <a class="nav-link" data-toggle="tab" href="#google-search"> <img src="https://sslphp.com/storage/upload/20240304/65e4ab69b2f5a.svg" style="max-width: 23px; max-height: 23px;" alt="Sogou搜索"> </a> </li> </ul> <div class="tab-content mt-2"> <div id="site-search" class="tab-pane fade show active"> <form action="/index/Index/search.html" method="get"> <input type="text" name="keyword" placeholder="请输入搜索关键字"> <button type="submit">搜索一下</button> </form> </div> <div id="baidu-search" class="tab-pane fade"> <form action="https://www.baidu.com/s" method="get" target="_blank"> <input type="text" name="wd" placeholder="请输入搜索关键字"> <button type="submit">百度一下</button> </form> </div> <div id="bing-search" class="tab-pane fade"> <form action="https://www.bing.com/search" method="get" target="_blank"> <input type="text" name="q" placeholder="请输入搜索关键字"> <button type="submit">必应搜索</button> </form> </div> <div id="sogou-search" class="tab-pane fade"> <form action="https://www.sogou.com/web" method="get" target="_blank"> <input type="text" name="query" placeholder="请输入搜索关键字"> <button type="submit">搜狗搜索</button> </form> </div> <div id="google-search" class="tab-pane fade"> <form action="https://www.google.com/search" method="get" target="_blank"> <input type="text" name="q" placeholder="请输入搜索关键字"> <button type="submit">谷歌搜索</button> </form> </div> </div> </div> </div> <div class="page-content"> <div class="container-fluid"> <style> @media (min-width: 768px) { #carouselExample { display: none; } } @media only screen and (max-width: 768px) { .bb { display: none; } } </style> <div id="carouselExample" class="carousel slide" data-ride="carousel"> <div class="carousel-inner"> <div class="carousel-item active"> <a href="https://sslphp.com/ainv" target="_blank"> <img src="https://ainv.sslphp.com/storage/upload/20230819/64dfc711e5f85.jpg" class="d-block w-100" alt="Image 1" style=" border-radius: 5px;"></a> </div> <div class="carousel-item"> <a href="https://sslphp.com/ainv" target="_blank"> <img src="https://ainv.sslphp.com/storage/upload/20230819/64dfc711e5f85.jpg" class="d-block w-100" alt="Image 2" style=" border-radius: 5px;"></a> </div> <div class="carousel-item"> <a href="https://sslphp.com/ainv" target="_blank"> <img src="https://ainv.sslphp.com/storage/upload/20230819/64dfc711e5f85.jpg" class="d-block w-100" alt="Image 3" style=" border-radius: 5px;"></a> </div> </div> <a class="carousel-control-prev" href="#carouselExample" role="button" data-slide="prev"> <span class="carousel-control-prev-icon" aria-hidden="true"></span> <span class="sr-only">Previous</span> </a> <a class="carousel-control-next" href="#carouselExample" role="button" data-slide="next"> <span class="carousel-control-next-icon" aria-hidden="true"></span> <span class="sr-only">Next</span> </a> </div> <div class="bb"> <div class="row"> <div class="col-8"> <div id="banner" class="carousel slide" data-ride="carousel"> <div class="carousel-inner"> <div class="carousel-item active"> <a href="https://sslphp.com/ainv" target="_blank"> <img src="https://ainv.sslphp.com/storage/upload/20230819/64dfc711e5f85.jpg" class="d-block w-100 rounded" alt="Banner 1"> </a> </div> <div class="carousel-item"> <a href="https://sslphp.com/ainv" target="_blank"> <img src="https://ainv.sslphp.com/storage/upload/20230819/64dfc711e5f85.jpg" class="d-block w-100 rounded" alt="Banner 2"> </a> </div> <div class="carousel-item"> <a href="https://sslphp.com/ainv" target="_blank"> <img src="https://ainv.sslphp.com/storage/upload/20230819/64dfc711e5f85.jpg" class="d-block w-100 rounded" alt="Banner 3"> </a> </div> </div> </div> </div> <div class="col-4"> <a href="https://sslphp.com/ainv" target="_blank"> <img src="https://ainv.sslphp.com/storage/upload/20230920/650afe4280bf7.jpg" class="d-block w-100 rounded mb-2" alt="Small Banner 1"> </a> <a href="https://sslphp.com/ainv" target="_blank"> <img class="special-img" style="margin-top: 16px; display: block; width: 100%; border-radius: 5px;" src="https://aigc.sslphp.com/storage/upload/20240228/65df54ac6e0d1.jpg" class="d-block w-100 rounded" alt="Small Banner 2"> </a> <style> @media only screen and (max-width: 600px) { .special-img { margin-top: 0px !important; } } </style> </div> </div> </div> <!--新闻--> <link rel="stylesheet" href="/static/index/news.css"> <div class="overflow-x-auto hot-search-panel mb-3 pb-2" style="margin-top: 15px;"> <div class="row row-sm hot-search"> <div class="col col-md col-lg"> <div class="card hot-card mb-0 rounded-xl"> <div class="card-header widget-header d-flex align-items-center" style="background-color:transparent;border-bottom:0"> <span> <span class="title-1359843326">最新资讯</span> </span> <span class="ml-auto d-none d-md-block text-xs slug-1359843326">最新发布</span> </div> <div class="card-body pb-3 pt-0"> <div class="overflow-auto hot-body"> <ul id="hot_news-1359843326"> <li class="d-flex text-sm mb-2"> <div> <span class="hot-rank hot-rank-1 text-xs text-center">1</span> <a class="ml-2" href="/index/news/detail.html?id=17" target="_blank" rel="external noopener nofollow">CharacterAI驾临碾压GPT?</a> </div> <div class="ml-auto hot-heat d-none d-md-block text-muted">New</div> </li> <li class="d-flex text-sm mb-2"> <div> <span class="hot-rank hot-rank-2 text-xs text-center">2</span> <a class="ml-2" href="/index/news/detail.html?id=16" target="_blank" rel="external noopener nofollow">OpenAI开放ChatGPT Plus</a> </div> <div class="ml-auto hot-heat d-none d-md-block text-muted">New</div> </li> <li class="d-flex text-sm mb-2"> <div> <span class="hot-rank hot-rank-3 text-xs text-center">3</span> <a class="ml-2" href="/index/news/detail.html?id=15" target="_blank" rel="external noopener nofollow">微软为新闻编辑行业推出AI辅助项目</a> </div> <div class="ml-auto hot-heat d-none d-md-block text-muted">New</div> </li> <li class="d-flex text-sm mb-2"> <div> <span class="hot-rank hot-rank-4 text-xs text-center">4</span> <a class="ml-2" href="/index/news/detail.html?id=14" target="_blank" rel="external noopener nofollow">2023人工智能行业十大新闻事件盘点</a> </div> <div class="ml-auto hot-heat d-none d-md-block text-muted">New</div> </li> </ul> </div> <div class="d-flex text-xs text-muted pt-2 mb-n2"> <a href="/news/" title="更多" style="color:#6c757d; ">更多</a> <div class="flex-fill"></div> </div> </div> </div> <div id="hot-loading-1359843326" class="ajax-loading text-center rounded" style="position: absolute; display: none; width: 100%; left: 0px; top: 0px; bottom: 0px; background: rgba(125, 125, 125, 0.5);"> <div id="hot-success-1359843326" class="col align-self-center"> <i class="iconfont icon-loading icon-spin icon-2x"></i> </div> </div> </div> <div class="col col-md col-lg"> <div class="card hot-card mb-0 rounded-xl"> <div class="card-header widget-header d-flex align-items-center" style="background-color:transparent;border-bottom:0"> <span><span class="title-815563725">微博热搜榜</span></span> <span class="ml-auto d-none d-md-block text-xs slug-815563725">热度</span> </div> <div class="card-body pb-3 pt-0"> <div class="overflow-auto hot-body"> <ul id="weibo"> </ul> </div> <div class="d-flex text-xs text-muted pt-2 mb-n2"> <a href="https://weibo.com/hot/search" target="_blank" title="更多" style="color:#6c757d; ">更多</a> <div class="flex-fill"></div> <span><a href="javascript:" id="hot-lod-815563725" title="刷新" style="color:#6c757d"><i class="iconfont icon-refresh text-md"></i></a></span> </div> </div> </div> <div id="hot-loading-815563725" class="ajax-loading text-center rounded" style="position: absolute; display: none; width: 100%; left: 0px; top: 0px; bottom: 0px; background: rgba(125, 125, 125, 0.5);"> <div id="hot-success-815563725" class="col align-self-center"><i class="iconfont icon-loading icon-spin icon-2x"></i></div> </div> <script> document.addEventListener('DOMContentLoaded', function() { fetch('/rd/mat?type=weibo') .then(response => response.json()) .then(data => { var responseData = JSON.parse(data.response); var hotData = responseData.data; var ul = document.getElementById('weibo'); hotData.forEach(function(item) { var li = document.createElement('li'); li.className = 'd-flex text-sm mb-2'; var div1 = document.createElement('div'); var span = document.createElement('span'); span.className = 'hot-rank hot-rank-' + item.index + ' text-xs text-center'; span.innerText = item.index; div1.appendChild(span); var a = document.createElement('a'); a.className = 'ml-2'; a.href = item.url; a.target = '_blank'; a.rel = 'external noopener nofollow'; a.innerText = item.title; div1.appendChild(a); li.appendChild(div1); var div2 = document.createElement('div'); div2.className = 'ml-auto hot-heat d-none d-md-block text-muted'; div2.innerText = item.hot; li.appendChild(div2); ul.appendChild(li); }); }) .catch(error => { // console.error('Error fetching data:', error); }); }); </script> </div> <div class="col col-md col-lg"> <div class="card hot-card mb-0 rounded-xl"> <div class="card-header widget-header d-flex align-items-center" style="background-color:transparent;border-bottom:0"> <span><span class="title-1353697447">百度热榜</span></span> <span class="ml-auto d-none d-md-block text-xs slug-1353697447">热度</span> </div> <div class="card-body pb-3 pt-0"> <div class="overflow-auto hot-body"> <ul id="baidu"> </ul> </div> <div class="d-flex text-xs text-muted pt-2 mb-n2"> <a href="https://top.baidu.com/board?tab=realtime&platform=wise&sa=fyb_general_realtime_50670" target="_blank" title="更多" style="color:#6c757d; ">更多</a> </div> </div> </div> <div id="hot-loading-1353697447" class="ajax-loading text-center rounded" style="position: absolute; display: none; width: 100%; left: 0px; top: 0px; bottom: 0px; background: rgba(125, 125, 125, 0.5);"> <div id="hot-success-1353697447" class="col align-self-center"><i class="iconfont icon-loading icon-spin icon-2x"></i></div> </div> <script> document.addEventListener('DOMContentLoaded', function() { fetch('/rd/mat?type=baidu') .then(response => response.json()) .then(data => { var responseData = JSON.parse(data.response); var hotData = responseData.data; var ul = document.getElementById('baidu'); hotData.forEach(function(item) { var li = document.createElement('li'); li.className = 'd-flex text-sm mb-2'; var div1 = document.createElement('div'); var span = document.createElement('span'); span.className = 'hot-rank hot-rank-' + item.index + ' text-xs text-center'; span.innerText = item.index; // div1.appendChild(span); var a = document.createElement('a'); a.className = 'ml-2'; a.href = item.url; a.target = '_blank'; a.rel = 'external noopener nofollow'; a.innerText = item.title; div1.appendChild(a); li.appendChild(div1); var div2 = document.createElement('div'); div2.className = 'ml-auto hot-heat d-none d-md-block text-muted'; div2.innerText = item.hot; li.appendChild(div2); ul.appendChild(li); }); }) .catch(error => { // console.error('Error fetching data:', error); }); }); </script> </div> <div class="col col-md col-lg"> <div class="card hot-card mb-0 rounded-xl"> <div class="card-header widget-header d-flex align-items-center" style="background-color:transparent;border-bottom:0"> <span><span class="title-515255036">抖音</span></span> <span class="ml-auto d-none d-md-block text-xs slug-515255036">热点榜</span> </div> <div class="card-body pb-3 pt-0"> <div class="overflow-auto hot-body"> <ul id="douyin"> </ul> </div> <div class="d-flex text-xs text-muted pt-2 mb-n2"> <a href="https://www.douyin.com/search/%E4%BB%8A%E6%97%A5%E7%83%AD%E7%82%B9%E6%A6%9C?publish_time=0&sort_type=0&source=related_search_keywords&type=general" target="_blank" title="更多" style="color:#6c757d; ">更多</a> </div> </div> </div> <div id="hot-loading-515255036" class="ajax-loading text-center rounded" style="position: absolute; display: none; width: 100%; left: 0px; top: 0px; bottom: 0px; background: rgba(125, 125, 125, 0.5);"> <div id="hot-success-515255036" class="col align-self-center"><i class="iconfont icon-loading icon-spin icon-2x"></i></div> </div> <script> document.addEventListener('DOMContentLoaded', function() { fetch('/rd/mat?type=douyin') .then(response => response.json()) .then(data => { var responseData = JSON.parse(data.response); var hotData = responseData.data; var ul = document.getElementById('douyin'); hotData.forEach(function(item) { var li = document.createElement('li'); li.className = 'd-flex text-sm mb-2'; var div1 = document.createElement('div'); var span = document.createElement('span'); span.className = 'hot-rank hot-rank-' + item.index + ' text-xs text-center'; span.innerText = item.index; div1.appendChild(span); var a = document.createElement('a'); a.className = 'ml-2'; a.href = item.url; a.target = '_blank'; a.rel = 'external noopener nofollow'; a.innerText = item.title; div1.appendChild(a); li.appendChild(div1); var div2 = document.createElement('div'); div2.className = 'ml-auto hot-heat d-none d-md-block text-muted'; div2.innerText = item.hot; li.appendChild(div2); ul.appendChild(li); }); }) .catch(error => { // console.error('Error fetching data:', error); }); }); </script> </div> </div> </div> <!--新闻--> <!--时间--> <style> .time_box { display: flex; justify-content: flex-start; overflow-x: auto; border: 1px solid #ebebeb; border-radius: 10px; padding: 5px; box-sizing: border-box; margin-top: 25px; scrollbar-width: thin; scrollbar-color: #cbf575 #eff4f8; } .time_box::-webkit-scrollbar { height: 1px; } .time_box::-webkit-scrollbar-thumb { background: linear-gradient(to right, #cbf575, #eff4f8); border-radius: 5px; } .time_box::-webkit-scrollbar-track { background-color: #f1f1f1; } .time_box::-webkit-scrollbar-button { display: none; } .time_box_div { display: flex; align-items: center; flex-grow: 1; justify-content: center; } .time_box_div:first-child { padding-right: 10px; } .time_box_icon img { margin-right: 10px; max-height: 100%; } .time_box_time { white-space: nowrap; } </style> <div class="time_box"> <div class="time_box_div"> <div class="time_box_icon"><img src="/static/sslphp/home/assets/images/tim/bj.png" alt="" style="max-width: 30px; max-height: 20px;"></div> <div class="time_box_time">北京 <span id="beijingTime"></span></div> </div> <div class="time_box_div"> <div class="time_box_icon"><img src="/static/sslphp/home/assets/images/tim/md.png" alt="" style="max-width: 30px; max-height: 20px;"></div> <div class="time_box_time">美东 <span id="easternTime"></span></div> </div> <div class="time_box_div"> <div class="time_box_icon"><img src="/static/sslphp/home/assets/images/tim/md.png" alt="" style="max-width: 30px; max-height: 20px;"></div> <div class="time_box_time">美西 <span id="pacificTime"></span></div> </div> <div class="time_box_div"> <div class="time_box_icon"><img src="/static/sslphp/home/assets/images/tim/yg.png" alt="" style="max-width: 30px; max-height: 20px;"></div> <div class="time_box_time">英国 <span id="londonTime"></span></div> </div> <div class="time_box_div"> <div class="time_box_icon"><img src="/static/sslphp/home/assets/images/tim/oz.png" alt="" style="max-width: 30px; max-height: 20px;"></div> <div class="time_box_time">欧洲 <span id="europeTime"></span></div> </div> <div class="time_box_div"> <div class="time_box_icon"><img src="/static/sslphp/home/assets/images/tim/rb.png" alt="" style="max-width: 30px; max-height: 20px;"></div> <div class="time_box_time">日本 <span id="tokyoTime"></span></div> </div> </div> <script> function updateTime() { const options = { month: '2-digit', day: '2-digit', hour: '2-digit', minute: '2-digit', second: '2-digit', hour12: false // 设置为24小时制 }; const beijingTime = new Date().toLocaleString("en-US", { timeZone: "Asia/Shanghai", ...options }).replace("24", "00"); document.getElementById("beijingTime").innerText = beijingTime; const easternTime = new Date().toLocaleString("en-US", { timeZone: "America/New_York", ...options }).replace("24", "00"); document.getElementById("easternTime").innerText = easternTime; const pacificTime = new Date().toLocaleString("en-US", { timeZone: "America/Los_Angeles", ...options }).replace("24", "00"); document.getElementById("pacificTime").innerText = pacificTime; const londonTime = new Date().toLocaleString("en-US", { timeZone: "Europe/London", ...options }).replace("24", "00"); document.getElementById("londonTime").innerText = londonTime; const europeTime = new Date().toLocaleString("en-US", { timeZone: "Europe/Berlin", ...options }).replace("24", "00"); document.getElementById("europeTime").innerText = europeTime; const tokyoTime = new Date().toLocaleString("en-US", { timeZone: "Asia/Tokyo", ...options }).replace("24", "00"); document.getElementById("tokyoTime").innerText = tokyoTime; } updateTime(); setInterval(updateTime, 1000); </script> <!--时间--> <!--我的导航--> <div id="hot" class="d-flex justify-content-between align-items-center mb-3" style="margin-top: 25px;"> <a style="font-size: 20px; font-weight: bold; "><i style="color: #ff6000;" class="bi-pin-map-fill"></i> 我的导航</a> <style> /*更多按钮CSS*/ .more-btn:hover { background-color: #ff6000 !important; color: white !important; } .more-btn.active { background-color: #ff6000 !important; color: white !important; } </style> <!--<a class="btn btn-primary more-btn active" href="#" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;">编辑<i style="margin-left: 2px;" class="bi-chevron-right"></i></a>--> </div> <div class="row justify-content-start1"> <div class="col-md-12"> <p style="background-color: #f0eaea; border-radius: 3px; padding: 12px; color: #888; font-size: 14px;">暂无数据!登陆后请点击右上角编辑按钮添加</p> </div> </div> <!-- Edit Modal --> <div class="modal fade" id="editModal" tabindex="-1" role="dialog" aria-labelledby="editModalLabel" aria-hidden="true"> <div class="modal-dialog" role="document"> <div class="modal-content" style="background-color: #eff4f8;"> <div class="modal-header"> <h5 class="modal-title" id="editModalLabel">添加自定义网址</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">&times;</span> </button> </div> <div class="modal-body"> <form id="editForm"> <div class="form-group"> <input type="text" class="form-control" id="name" name="name" placeholder="网站名称"> </div> <div class="form-group"> <input type="text" class="form-control" id="url" name="url" placeholder="http://"> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">取消</button> <button type="button" class="btn btn-primary" onclick="submitEditForm()" style="background-color: #ff6000;border: 1px solid #f06006">提交</button> </div> </div> </div> </div> <script> function submitEditForm() { var name = document.getElementById('name').value; var url = document.getElementById('url').value; // 使用Ajax将数据提交给控制器处理 $.ajax({ url: '/index/index/addLink', // 控制器处理方法的URL type: 'POST', data: { name: name, url: url, }, success: function(response) { alert(response); // 显示添加成功提示 $('#editModal').modal('hide'); // 关闭模态框 }, error: function() { alert('添加失败,请重试'); } }); } </script> <!--我的导航--> <div id="hot" class="d-flex justify-content-between align-items-center mb-3" style="margin-top: 25px;"> <h2 style="font-size: 20px; font-weight: bold;"><i class="bi-droplet-half"></i> 热门推荐</h2> </div> <div class="row justify-content-start1"> <div class="col-md-3"> <a href="/index/index/detail?id=10" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20231207/6571eb4cdea2e.png" alt="Image 1" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <h3> Whispr </h3> <p style="font-size: 12px; margin: 0; margin-top: 5px;"> Whispr,AI对话机器人,机器学习和自然语言处理微调的人工智能 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3"> <a href="/index/index/detail?id=2" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20231207/6571de2ebb1dd.png" alt="Image 1" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <h3> Writesonic </h3> <p style="font-size: 12px; margin: 0; margin-top: 5px;"> Writesonic,基于人工智能的ai写作工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3"> <a href="/index/index/detail?id=4" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20231207/6571e6456f46e.png" alt="Image 1" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <h3> friday ai </h3> <p style="font-size: 12px; margin: 0; margin-top: 5px;"> hey friday ai,fridayai智能写作工具软件网站,小红书文案等 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3"> <a href="/index/index/detail?id=5" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20231207/6571e6cb0b88d.png" alt="Image 1" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <h3> Writer ai </h3> <p style="font-size: 12px; margin: 0; margin-top: 5px;"> Writer ai,企业级的 AI内容生成和优化平台,文章写作 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3"> <a href="/index/index/detail?id=6" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20231207/6571e8217d0f1.png" alt="Image 1" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <h3> writecream </h3> <p style="font-size: 12px; margin: 0; margin-top: 5px;"> writecream ai,人工智能写作软件,每个月免费一万字 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3"> <a href="/index/index/detail?id=7" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20231207/6571e9685e277.png" alt="Image 1" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <h3> ai伙伴 </h3> <p style="font-size: 12px; margin: 0; margin-top: 5px;"> 百度搜索ai伙伴,帮你高效解答问题,辅助你进行内容理解,激发你的灵感和想象 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3"> <a href="/index/index/detail?id=8" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20231207/6571ea182f7fc.png" alt="Image 1" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <h3> youchat </h3> <p style="font-size: 12px; margin: 0; margin-top: 5px;"> youchat ai,与ChatGPT类似功能聊天机器人 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3"> <a href="/index/index/detail?id=9" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20231207/6571ea8eb86e5.png" alt="Image 1" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <h3> Jasper Chat </h3> <p style="font-size: 12px; margin: 0; margin-top: 5px;"> Jasper Chat,人工智能AI文章内容写作助手,ai绘画,聊天机器人 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> </div> <!-- 动态展示内容--> <div id="categoryContent_56" class="d-flex justify-content-between align-items-center mb-3" style="margin-top: 25px;"> <h2 style="font-size: 20px; font-weight: bold;"><i class="bi-translate"></i> AI文本工具 </h2> <a class="btn btn-primary more-btn" href="/index/index/categoryDetail?id=56" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;">更多<i style="margin-left: 2px;" class="bi-chevron-right"></i></a> </div> <!-- 动态展示子分类 --> <div class="d-flex justify-content-between align-items-center mb-3" style="margin-top: -15px;"> <div id="subCategoryContent_56" class="subCategoryContent" style="display: flex; justify-content: space-between; align-items: center; background-color: #FFFFFF; border: 1px solid #ebebeb; margin: 0px 0px 0; border-radius: 20px; overflow-x: auto; white-space: nowrap;"> <a href="javascript:;" onclick="showSubCategoryContent(57, 56)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI写作工具 </a> <a href="javascript:;" onclick="showSubCategoryContent(58, 56)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI聊天 </a> <a href="javascript:;" onclick="showSubCategoryContent(59, 56)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI提示词 </a> <a href="javascript:;" onclick="showSubCategoryContent(60, 56)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI内容检查 </a> </div> </div> <!-- 动态展示内容 --> <div class="row justify-content-start"> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="58"> <a href="/index/index/detail?id=10" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20231207/6571eb4cdea2e.png" alt="Whispr" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Whispr </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Whispr </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Whispr </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Whispr,AI对话机器人,机器学习和自然语言处理微调的人工智能 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="57"> <a href="/index/index/detail?id=2" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20231207/6571de2ebb1dd.png" alt="Writesonic" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Writesonic </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Writesonic </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Writesonic </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Writesonic,基于人工智能的ai写作工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="57"> <a href="/index/index/detail?id=3" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20231207/6571e4e7d07c2.png" alt="copymatic" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> copymatic </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> copymatic </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> copymatic </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> copymatic ai,ai写作网站软件工具,人工智能 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="57"> <a href="/index/index/detail?id=4" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20231207/6571e6456f46e.png" alt="friday ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> friday ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> friday ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> friday ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> hey friday ai,fridayai智能写作工具软件网站,小红书文案等 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="57"> <a href="/index/index/detail?id=5" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20231207/6571e6cb0b88d.png" alt="Writer ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Writer ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Writer ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Writer ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Writer ai,企业级的 AI内容生成和优化平台,文章写作 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="57"> <a href="/index/index/detail?id=6" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20231207/6571e8217d0f1.png" alt="writecream" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> writecream </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> writecream </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> writecream </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> writecream ai,人工智能写作软件,每个月免费一万字 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="58"> <a href="/index/index/detail?id=7" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20231207/6571e9685e277.png" alt="ai伙伴" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> ai伙伴 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> ai伙伴 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> ai伙伴 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 百度搜索ai伙伴,帮你高效解答问题,辅助你进行内容理解,激发你的灵感和想象 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="58"> <a href="/index/index/detail?id=8" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20231207/6571ea182f7fc.png" alt="youchat" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> youchat </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> youchat </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> youchat </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> youchat ai,与ChatGPT类似功能聊天机器人 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="58"> <a href="/index/index/detail?id=9" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20231207/6571ea8eb86e5.png" alt="Jasper Chat" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Jasper Chat </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Jasper Chat </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Jasper Chat </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Jasper Chat,人工智能AI文章内容写作助手,ai绘画,聊天机器人 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="57"> <a href="/index/index/detail?id=23" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0dde60d880.png" alt="fluentify ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> fluentify ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> fluentify ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> fluentify ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> fluentify ai,您的 AI 写作助手,更专业更像母语人士 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="57"> <a href="/index/index/detail?id=24" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0df4d34fdf.png" alt="pepper content" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> pepper content </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> pepper content </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> pepper content </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> pepper content,利用ai写作工具,加速您的收入,内容营销 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="57"> <a href="/index/index/detail?id=25" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0df955f8dd.png" alt="AI免费生成视频/写作" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> AI免费生成视频/写作 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> AI免费生成视频/写作 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> AI免费生成视频/写作 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 万彩ai,AI免费生成视频/写作,换脸,照片数字人制作和短视频制作工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="58"> <a href="/index/index/detail?id=26" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0e0ab328fb.png" alt="Anthropic" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Anthropic </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Anthropic </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Anthropic </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Anthropic,ChatGPT最强对手Claude,ai聊天机器人 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="58"> <a href="/index/index/detail?id=27" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0e1219b0a0.png" alt="perplexity ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> perplexity ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> perplexity ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> perplexity ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> perplexity ai,结合了搜索和聊天功能的在线工具,基于OpenAI API开发 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="58"> <a href="/index/index/detail?id=28" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0e1900a5cb.png" alt="IngestAI" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> IngestAI </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> IngestAI </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> IngestAI </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> IngestAI官网,使用现有知识库创建类似chatgpt的机器人的工具。 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="58"> <a href="/index/index/detail?id=29" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0e23632126.png" alt="文心一言" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 文心一言 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 文心一言 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 文心一言 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 百度文心一言,对话式ai人工智能写作工具,聊天工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="59"> <a href="/index/index/detail?id=30" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0e2d7e3b1b.png" alt="Promptalot" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Promptalot </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Promptalot </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Promptalot </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Promptalot,提供海量Midjourney提示词网站+Promptalot Helper插件 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="59"> <a href="/index/index/detail?id=31" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0e37b96606.png" alt="bestprompts" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> bestprompts </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> bestprompts </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> bestprompts </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> bestprompts,ai提示语网站,高效和ai对话 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="59"> <a href="/index/index/detail?id=32" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0e492080b3.jpg" alt="Prompt Hunt" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Prompt Hunt </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Prompt Hunt </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Prompt Hunt </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Prompt Hunt,简单易用的AI绘画,Prompt提示词网站 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="59"> <a href="/index/index/detail?id=33" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0e532d4953.png" alt="openart" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> openart </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> openart </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> openart </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> openart ai,ai图像生成器,编辑器,prompt提示词,模型训练 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="59"> <a href="/index/index/detail?id=34" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0e5a898326.png" alt="arthub ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> arthub ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> arthub ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> arthub ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> arthub ai,AI绘画,prompt提示词,生成艺术图片共享社区平台 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="59"> <a href="/index/index/detail?id=35" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0e64868858.png" alt="writegpt" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> writegpt </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> writegpt </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> writegpt </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> writegpt,在任意网站使用chatgpt提示词助手插件 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="59"> <a href="/index/index/detail?id=36" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0e6a6c0e4b.png" alt="Ordinary Prompts" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Ordinary Prompts </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Ordinary Prompts </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Ordinary Prompts </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Ordinary Prompts,提供AI生成的提示词,给写作,教学或营销等领域灵感 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="59"> <a href="/index/index/detail?id=37" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0e7008005e.jpg" alt="SSLphp提示词系统" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> SSLphp提示词系统 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> SSLphp提示词系统 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> SSLphp提示词系统 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 几十款智能创作工具,让创作变得更简单 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="60"> <a href="/index/index/detail?id=38" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0e7f323c5a.png" alt="undetectable ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> undetectable ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> undetectable ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> undetectable ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> undetectable ai,ai写论文,文本内容检测并转化为与人类写作风格几乎无异的内容 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="60"> <a href="/index/index/detail?id=39" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0e89b2a31e.png" alt="Crossplag ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Crossplag ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Crossplag ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Crossplag ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Crossplag ai,Crossplag 开发的ai内容检测在线工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="60"> <a href="/index/index/detail?id=40" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0e8e4703f1.png" alt="GPTHero" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> GPTHero </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> GPTHero </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> GPTHero </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> GPTHero,AI 内容检测工具克星 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="60"> <a href="/index/index/detail?id=41" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0e95066d94.png" alt="Winston AI" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Winston AI </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Winston AI </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Winston AI </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Winston AI,号称是最适合教育领域的AI内容检测器 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="60"> <a href="/index/index/detail?id=42" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0e991e9eff.png" alt="Copyleaks ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Copyleaks ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Copyleaks ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Copyleaks ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Copyleaks,企业级的AI写作内容检测器,支持ChatGPT,GPT4和其他AI机器人 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="60"> <a href="/index/index/detail?id=43" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0e9ddc7781.png" alt="zerogpt" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> zerogpt </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> zerogpt </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> zerogpt </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> zerogpt,AI内容检测工具,准确率98% </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="60"> <a href="/index/index/detail?id=44" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0ea298319f.png" alt="AI Text Classifier" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> AI Text Classifier </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> AI Text Classifier </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> AI Text Classifier </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> AI Text Classifier,OpenAI 官方提供AI文章检测工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-56" data-subCategoryId="60"> <a href="/index/index/detail?id=45" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0ea7fd6192.png" alt="originality.ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> originality.ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> originality.ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> originality.ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> originality ai,号称是市场上最准确的 AI 内容检测工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> </div> <div id="categoryContent_61" class="d-flex justify-content-between align-items-center mb-3" style="margin-top: 25px;"> <h2 style="font-size: 20px; font-weight: bold;"><i class="bi-card-image"></i> AI图片处理 </h2> <a class="btn btn-primary more-btn" href="/index/index/categoryDetail?id=61" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;">更多<i style="margin-left: 2px;" class="bi-chevron-right"></i></a> </div> <!-- 动态展示子分类 --> <div class="d-flex justify-content-between align-items-center mb-3" style="margin-top: -15px;"> <div id="subCategoryContent_61" class="subCategoryContent" style="display: flex; justify-content: space-between; align-items: center; background-color: #FFFFFF; border: 1px solid #ebebeb; margin: 0px 0px 0; border-radius: 20px; overflow-x: auto; white-space: nowrap;"> <a href="javascript:;" onclick="showSubCategoryContent(62, 61)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI绘画 </a> <a href="javascript:;" onclick="showSubCategoryContent(64, 61)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> 在线修图 </a> <a href="javascript:;" onclick="showSubCategoryContent(65, 61)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI图像增强 </a> <a href="javascript:;" onclick="showSubCategoryContent(66, 61)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI抠图 </a> <a href="javascript:;" onclick="showSubCategoryContent(67, 61)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> 魔术橡皮擦 </a> <a href="javascript:;" onclick="showSubCategoryContent(68, 61)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI去水印 </a> <a href="javascript:;" onclick="showSubCategoryContent(69, 61)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> 图片修复 </a> <a href="javascript:;" onclick="showSubCategoryContent(70, 61)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI图片压缩 </a> <a href="javascript:;" onclick="showSubCategoryContent(71, 61)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI头像生成 </a> <a href="javascript:;" onclick="showSubCategoryContent(72, 61)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> 图片放大 </a> <a href="javascript:;" onclick="showSubCategoryContent(75, 61)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI模特生成 </a> <a href="javascript:;" onclick="showSubCategoryContent(76, 61)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI LOGO生成 </a> </div> </div> <!-- 动态展示内容 --> <div class="row justify-content-start"> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="62"> <a href="/index/index/detail?id=47" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0f872878b9.png" alt="craiyon" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> craiyon </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> craiyon </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> craiyon </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> craiyon ai,ai绘图软件,文本提示生成相应图像工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="62"> <a href="/index/index/detail?id=48" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0f8c43fdf9.png" alt="堆友AI-免费AI绘画神器" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 堆友AI-免费AI绘画神器 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 堆友AI-免费AI绘画神器 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 堆友AI-免费AI绘画神器 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 阿里出品免费ai绘画神器,0门槛免费生成,AI行业大咖联合推荐! </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="62"> <a href="/index/index/detail?id=49" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0f929c5c45.png" alt="LibLib AI绘画" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> LibLib AI绘画 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> LibLib AI绘画 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> LibLib AI绘画 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 哩布哩布ai绘画,国内最大的人工智能绘画模型分享网站之一! 7日免费领取在线模型训练工具,免费在线生图,免费模型下载 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="62"> <a href="/index/index/detail?id=51" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0fa50f18a9.png" alt="免费触手ai绘画" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 免费触手ai绘画 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 免费触手ai绘画 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 免费触手ai绘画 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 免费!触手ai绘画,写作!专业版app软件下载,免费训练AI绘画模型 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="62"> <a href="/index/index/detail?id=53" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0fb100922a.png" alt="midjourney" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> midjourney </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> midjourney </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> midjourney </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> midjourney是一个人工智能绘图工具,允许用户使用自然语言输入生成高质量的图像 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="62"> <a href="/index/index/detail?id=54" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0fbac60d9b.png" alt="Stable Diffusion" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Stable Diffusion </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Stable Diffusion </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Stable Diffusion </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Stable Diffusion,ai人工智能画画,作图软件工具网站Stable-Diffusion </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="62"> <a href="/index/index/detail?id=55" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0fc2250117.png" alt="Disco Diffusion" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Disco Diffusion </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Disco Diffusion </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Disco Diffusion </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Disco Diffusion,ai绘画工具,发布于 Google Colab 平台的一款利用人工智能深度学习进行数字艺术创作的工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="62"> <a href="/index/index/detail?id=57" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0fc843abbe.png" alt="playground ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> playground ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> playground ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> playground ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> playground ai,免费ai绘画网站,每天免费1000张 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="64"> <a href="/index/index/detail?id=58" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0fcfc87674.png" alt="比格设计" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 比格设计 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 比格设计 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 比格设计 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 0基础也能用,海量优质营销素材,正版商用保障 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="64"> <a href="/index/index/detail?id=60" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0fd611770c.png" alt="美图设计室" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 美图设计室 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 美图设计室 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 美图设计室 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 美图设计室,AI平面设计,电商,图片编辑,抠图,海报ppt,物体消除,logo,文生图,变清晰,拼图 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="64"> <a href="/index/index/detail?id=61" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0fdbd3096d.png" alt="稿定ps" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 稿定ps </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 稿定ps </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 稿定ps </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 稿定ps,在线ps网页版,专业精简的在线ps图片处理软件 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="64"> <a href="/index/index/detail?id=63" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0fe369f48e.ico" alt="Photopea" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Photopea </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Photopea </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Photopea </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Photopea官网,中文版,在线ps网页版,完美替代Photoshop </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="64"> <a href="/index/index/detail?id=64" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0fec1982dc.png" alt="pixlr" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> pixlr </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> pixlr </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> pixlr </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> pixlr,优质在线图片处理软件,抠图去背景工具,照片移除物体魔术橡皮擦,ai绘画 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="64"> <a href="/index/index/detail?id=65" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0ff24dfdf5.png" alt="magic eraser" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> magic eraser </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> magic eraser </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> magic eraser </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> magic eraser,ai魔术橡皮擦,在线极速无痕修图工具,帮你轻松抹除图片多余物体 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="65"> <a href="/index/index/detail?id=66" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c1006348151.png" alt="krea ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> krea ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> krea ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> krea ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> krea ai,人工智能图片增强/制图工具,换脸,重新上色,图像扩展等! </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="65"> <a href="/index/index/detail?id=67" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c100b346289.png" alt="Pixelcut ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Pixelcut ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Pixelcut ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Pixelcut ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Pixelcut,ai图片编辑器,人工智能一键去背景,去除物体,图片增强,产品图 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="65"> <a href="/index/index/detail?id=68" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c10107d3767.png" alt="magicstudio" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> magicstudio </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> magicstudio </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> magicstudio </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> magicstudio,AI图片编辑设计工具,ai产品图,去水印,物体,抠图去背景,文生图 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="65"> <a href="/index/index/detail?id=70" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c101c73379d.png" alt="cutout pro" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> cutout pro </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> cutout pro </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> cutout pro </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> cutout pro,全能型的ai图片视频处理工具网站,图片增强,视频抠图软件 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="65"> <a href="/index/index/detail?id=71" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c101fba9806.png" alt="upscayl" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> upscayl </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> upscayl </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> upscayl </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> upscayl,ai图片高清修复神器,让模糊照片变清晰软件工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="65"> <a href="/index/index/detail?id=72" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c1026179ec9.png" alt="topaz sharpen ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> topaz sharpen ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> topaz sharpen ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> topaz sharpen ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> topaz sharpen ai,高效专业的实用型图片清晰锐化辅助工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="65"> <a href="/index/index/detail?id=73" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c102c853ba2.png" alt="cleanup pictures" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> cleanup pictures </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> cleanup pictures </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> cleanup pictures </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> cleanup pictures,图片橡皮擦,快速擦除图片上的物品,在线图像处理工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="65"> <a href="/index/index/detail?id=75" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c1031b07c50.png" alt="ClipDrop" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> ClipDrop </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> ClipDrop </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> ClipDrop </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> ClipDrop,AI图片工具箱,一键图片增强,图像放大器,去水印,一键抠图去背景工具,智能打光神器,智能背景替换 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="66"> <a href="/index/index/detail?id=81" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c10797129c7.png" alt="鹿班ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 鹿班ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 鹿班ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 鹿班ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 鹿班设计,luban鹿班ai,阿里一款智能设计工具,生成各类海报,电商主题,智能抠图 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="66"> <a href="/index/index/detail?id=82" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c107f129e43.png" alt="顽兔抠图" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 顽兔抠图 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 顽兔抠图 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 顽兔抠图 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 顽兔抠图,淘宝出品的免费在线抠图神器,支持同时扣20张 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="66"> <a href="/index/index/detail?id=83" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1083149983.png" alt="PhotoRoom" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> PhotoRoom </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> PhotoRoom </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> PhotoRoom </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Photoroom官网,多合一创意照片编辑平台,人工智能一键ai背景去除,替换,生成 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="66"> <a href="/index/index/detail?id=85" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1089f4262f.png" alt="Erase.bg" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Erase.bg </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Erase.bg </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Erase.bg </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Erase.bg,一款在线抠图去背景工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="66"> <a href="/index/index/detail?id=86" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c108f76f8a4.png" alt="Background Remover" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Background Remover </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Background Remover </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Background Remover </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Background Remover,Icons8出品的ai人工智能一键背景去除工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="67"> <a href="/index/index/detail?id=88" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c10a22baf97.png" alt="hama" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> hama </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> hama </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> hama </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> hama,魔术橡皮擦,图片AI处理工具去水印,去背景,抹除物体 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="67"> <a href="/index/index/detail?id=90" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c10a7b59758.png" alt="vmake" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> vmake </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> vmake </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> vmake </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> vmake,AI照片和视频编辑器生成,增强,去背景,去水印,ai模特,物体消除,商品图 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="68"> <a href="/index/index/detail?id=91" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c10aff343f2.png" alt="MarketingBlocks ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> MarketingBlocks ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> MarketingBlocks ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> MarketingBlocks ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> MarketingBlocks ai,你的AI营销助理,帮助快速写各类文案 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="69"> <a href="/index/index/detail?id=93" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c10ba7eb745.png" alt="PixFix" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> PixFix </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> PixFix </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> PixFix </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> PixFix,免费图片修复工具,在线网页版 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="70"> <a href="/index/index/detail?id=94" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c10c0ee64d0.png" alt="Recompressor" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Recompressor </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Recompressor </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Recompressor </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Recompressor,免费的在线ai图片压缩工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="70"> <a href="/index/index/detail?id=96" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c10c57ec04f.png" alt="Squoosh" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Squoosh </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Squoosh </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Squoosh </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Squoosh,Google 推出的在线图片压缩网站 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="70"> <a href="/index/index/detail?id=97" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c10cbcb0ebf.png" alt="tinypng" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> tinypng </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> tinypng </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> tinypng </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> tinypng,熊猫压缩网站,在线图片压缩工具,支持jpg,png,webp </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="72"> <a href="/index/index/detail?id=99" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c10d4695586.png" alt="waifu2x" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> waifu2x </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> waifu2x </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> waifu2x </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> waifu2x,下载,怎么用,网页版,ai人工智能的无损图片放大工具网站 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="72"> <a href="/index/index/detail?id=100" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c10da0c8df5.png" alt="bigjpg" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> bigjpg </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> bigjpg </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> bigjpg </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> bigpig,免费在线图片无损放大网站,ai人工智能照片放大 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="71"> <a href="/index/index/detail?id=101" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c10e465cdd5.png" alt="Lucidpic" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Lucidpic </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Lucidpic </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Lucidpic </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> lucidpic,AI人像绘画,生成真实的人像 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="71"> <a href="/index/index/detail?id=103" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c10f155bcbe.png" alt="toonme" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> toonme </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> toonme </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> toonme </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> toonme,真人卡通动漫头像生成器 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="71"> <a href="/index/index/detail?id=105" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c10febc1113.png" alt="profile picture ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> profile picture ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> profile picture ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> profile picture ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> profile picture ai,人工智能ai头像图片生成器,测评,价格,功能 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="71"> <a href="/index/index/detail?id=106" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11034b2b1b.png" alt="neural love" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> neural love </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> neural love </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> neural love </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> neural love,免费的人工智能AI艺术生成器,绘画,头像,图像,视频,音频增强,老照片修复 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="75"> <a href="/index/index/detail?id=109" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c111c4e63cf.png" alt="VModel商品图" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> VModel商品图 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> VModel商品图 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> VModel商品图 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> VModel,专为电商卖家打造的AI模特商拍工具,在线产品图,商品图生成 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="75"> <a href="/index/index/detail?id=110" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c112256d7ef.png" alt="千面AI模特" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 千面AI模特 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 千面AI模特 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 千面AI模特 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 千面AI模特,电商模特图生成工具,产品商品图 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="75"> <a href="/index/index/detail?id=111" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1127c885da.png" alt="ai模特商店" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> ai模特商店 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> ai模特商店 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> ai模特商店 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> ai模特商店,服装模特图,商品场景图,抠图 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="75"> <a href="/index/index/detail?id=113" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c112d1f36c6.png" alt="摹小仙" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 摹小仙 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 摹小仙 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 摹小仙 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 摹小仙,电商ai模特商拍,换服装,高质量的ai商品图,产品营销图生成 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="75"> <a href="/index/index/detail?id=114" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11320749da.png" alt="fashionlabs" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> fashionlabs </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> fashionlabs </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> fashionlabs </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> AI服装模特、商品图,可商用,低价提升销量神器 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="75"> <a href="/index/index/detail?id=116" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c113755b451.png" alt="超会ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 超会ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 超会ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 超会ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 超会ai,为电商卖家提供强大的Ai商拍和爆款文案生成等能力。 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="75"> <a href="/index/index/detail?id=117" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c113c4c0ae5.png" alt="象寄翻译" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 象寄翻译 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 象寄翻译 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 象寄翻译 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 象寄ai,ai视频字幕翻译软件,图片,商品图,模特换衣,智能背景,海报文案 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="75"> <a href="/index/index/detail?id=119" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11417f1134.png" alt="PixelForce" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> PixelForce </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> PixelForce </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> PixelForce </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> PixelForce,AI模特,换装,产品图,商品图,商业拍摄 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="76"> <a href="/index/index/detail?id=122" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1189f2426e.png" alt="brandmark" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> brandmark </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> brandmark </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> brandmark </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> brandmark,AI设计logo设计平台,快速打造专业品牌形象 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="76"> <a href="/index/index/detail?id=123" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c118f279349.png" alt="标小智logo设计" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 标小智logo设计 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 标小智logo设计 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 标小智logo设计 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 标小智logo神器,logosic在线ai logo生成器,设计 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="76"> <a href="/index/index/detail?id=124" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1194d0861d.png" alt="makelogo ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> makelogo ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> makelogo ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> makelogo ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> makelogo ai,AI的Logo设计工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-61" data-subCategoryId="76"> <a href="/index/index/detail?id=126" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11992013ef.png" alt="MarketingBlocks ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> MarketingBlocks ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> MarketingBlocks ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> MarketingBlocks ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> MarketingBlocks ai,你的AI营销助理,帮助快速写各类文案 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> </div> <div id="categoryContent_77" class="d-flex justify-content-between align-items-center mb-3" style="margin-top: 25px;"> <h2 style="font-size: 20px; font-weight: bold;"><i class="bi-chat-dots"></i> AI 聊天对话 </h2> <a class="btn btn-primary more-btn" href="/index/index/categoryDetail?id=77" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;">更多<i style="margin-left: 2px;" class="bi-chevron-right"></i></a> </div> <!-- 动态展示子分类 --> <div class="d-flex justify-content-between align-items-center mb-3" style="margin-top: -15px;"> <div id="subCategoryContent_77" class="subCategoryContent" style="display: flex; justify-content: space-between; align-items: center; background-color: #FFFFFF; border: 1px solid #ebebeb; margin: 0px 0px 0; border-radius: 20px; overflow-x: auto; white-space: nowrap;"> </div> </div> <!-- 动态展示内容 --> <div class="row justify-content-start"> <div class="col-md-3 subCategoryContent category-77" data-subCategoryId="77"> <a href="/index/index/detail?id=127" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11a189c147.png" alt="ChatGPT" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> ChatGPT </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> ChatGPT </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> ChatGPT </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 原版ChatGPT,由OpenAI开发的一款基于人工智能技术的对话机器人,使用自然语言处理和机器学习算法,可以理解和生成类似人类语言的对话。需要科学-上网! </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-77" data-subCategoryId="77"> <a href="/index/index/detail?id=128" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11a5e92eb1.png" alt="Character ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Character ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Character ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Character ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Character ai,在线智能AI聊天机器人,角色扮演,神经语言模型 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-77" data-subCategoryId="77"> <a href="/index/index/detail?id=130" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11ab5e64a1.png" alt="google bard" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> google bard </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> google bard </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> google bard </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Bard是由谷歌 LaMDA 模型提供支持的对话 AI 服务,利用来自互联网的信息提供最新、高质量的回复 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-77" data-subCategoryId="77"> <a href="/index/index/detail?id=131" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11b15af2a8.png" alt="claude" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> claude </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> claude </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> claude </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> claude AI 聊天机器人,ChatGPT免费平替 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-77" data-subCategoryId="77"> <a href="/index/index/detail?id=133" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11b56155d5.png" alt="poe ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> poe ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> poe ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> poe ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> poe ai,整合6种AI聊天机器人服务,免费使用,chatgpt,claude+,gpt4,sage,neeva ai,dragonfly </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-77" data-subCategoryId="77"> <a href="/index/index/detail?id=134" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11bb891da3.png" alt="seaart ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> seaart ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> seaart ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> seaart ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> seaart ai,海艺ai绘画,聊天机器人,prompt提示词网站 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-77" data-subCategoryId="77"> <a href="/index/index/detail?id=136" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11c2c74d24.png" alt="搜索AI伙伴" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 搜索AI伙伴 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 搜索AI伙伴 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 搜索AI伙伴 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 搜索AI伙伴,一款基于百度文心一言深度学习的百度AI智能助手 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-77" data-subCategoryId="77"> <a href="/index/index/detail?id=137" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11c762a6bb.png" alt="IngestAI" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> IngestAI </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> IngestAI </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> IngestAI </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> IngestAI官网,使用现有知识库创建类似chatgpt的机器人的工具。 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> </div> <div id="categoryContent_78" class="d-flex justify-content-between align-items-center mb-3" style="margin-top: 25px;"> <h2 style="font-size: 20px; font-weight: bold;"><i class="bi-camera-reels"></i> AI视频工具 </h2> <a class="btn btn-primary more-btn" href="/index/index/categoryDetail?id=78" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;">更多<i style="margin-left: 2px;" class="bi-chevron-right"></i></a> </div> <!-- 动态展示子分类 --> <div class="d-flex justify-content-between align-items-center mb-3" style="margin-top: -15px;"> <div id="subCategoryContent_78" class="subCategoryContent" style="display: flex; justify-content: space-between; align-items: center; background-color: #FFFFFF; border: 1px solid #ebebeb; margin: 0px 0px 0; border-radius: 20px; overflow-x: auto; white-space: nowrap;"> <a href="javascript:;" onclick="showSubCategoryContent(79, 78)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI视频生成 </a> <a href="javascript:;" onclick="showSubCategoryContent(80, 78)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI视频剪辑 </a> <a href="javascript:;" onclick="showSubCategoryContent(81, 78)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI虚拟数字人 </a> <a href="javascript:;" onclick="showSubCategoryContent(82, 78)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI换脸 </a> <a href="javascript:;" onclick="showSubCategoryContent(84, 78)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI字幕翻译 </a> </div> </div> <!-- 动态展示内容 --> <div class="row justify-content-start"> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="79"> <a href="/index/index/detail?id=139" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11d47ea484.png" alt="simplified ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> simplified ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> simplified ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> simplified ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> simplified,全能型ai工具,ai文案写作,视频编辑,社交媒体管理,平面设计等 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="79"> <a href="/index/index/detail?id=140" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11dbd88542.png" alt="copydone" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> copydone </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> copydone </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> copydone </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 快文copydone AI,快文CopyDone,原创文案写作神器,写作机器人/AI营销内容创作 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="79"> <a href="/index/index/detail?id=142" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11e1f5617a.png" alt="neural love" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> neural love </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> neural love </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> neural love </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> neural love,免费的人工智能AI艺术生成器,绘画,头像,图像,视频,音频增强,老照片修复 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="79"> <a href="/index/index/detail?id=143" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11e6ec61f1.png" alt="heygen ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> heygen ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> heygen ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> heygen ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> heygen,人工智能ai数字人,虚拟人,模特,主播,照片动起来,声音克隆,文字转语音视频 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="79"> <a href="/index/index/detail?id=145" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11ed2de111.png" alt="pika labs" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> pika labs </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> pika labs </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> pika labs </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> pika labs,注册下载使用教程,文本生成视频ai工具pikalabs </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="79"> <a href="/index/index/detail?id=146" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11f2881800.png" alt="vmake" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> vmake </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> vmake </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> vmake </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> vmake,AI照片和视频编辑器生成,增强,去背景,去水印,ai模特,物体消除,商品图 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="79"> <a href="/index/index/detail?id=147" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11f8628ec5.png" alt="MagicAvatar" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> MagicAvatar </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> MagicAvatar </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> MagicAvatar </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> MagicAvatar,多模态框架,生成和动画化一个虚拟人物 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="79"> <a href="/index/index/detail?id=148" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11fd010fcc.png" alt="开拍" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 开拍 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 开拍 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 开拍 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 开拍app,美图出品的ai口播视频工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="80"> <a href="/index/index/detail?id=149" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1208a79cce.png" alt="快剪辑" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 快剪辑 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 快剪辑 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 快剪辑 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 快剪辑,电脑版下载,360推出的一个ai视频剪辑软件 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="80"> <a href="/index/index/detail?id=151" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c120f66031a.png" alt="度加剪辑" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 度加剪辑 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 度加剪辑 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 度加剪辑 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 度加剪辑,创作工具电脑版,网页pc版,app下载 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="80"> <a href="/index/index/detail?id=152" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c12155ce33f.png" alt="pictory ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> pictory ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> pictory ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> pictory ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> pictory ai,基于人工智能的视频制作工具,文本生成,修改视频 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="80"> <a href="/index/index/detail?id=154" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c121a55e831.png" alt="一帧秒创" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 一帧秒创 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 一帧秒创 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 一帧秒创 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 一帧秒创,图文成片,ai视频,绘画,智能配音,简单好用的AI智能视频创作神器 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="80"> <a href="/index/index/detail?id=156" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c122526b312.png" alt="鬼手剪辑" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 鬼手剪辑 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 鬼手剪辑 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 鬼手剪辑 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 鬼手剪辑,ghostcut,AI视频剪辑工具,视频翻译、字幕翻译和视频去字幕 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="80"> <a href="/index/index/detail?id=157" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c122ad9608e.png" alt="opus clip" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> opus clip </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> opus clip </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> opus clip </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> opus clip,短视频创作者的神器,AI自动剪辑工具,长视频分成多个短视频 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="80"> <a href="/index/index/detail?id=159" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c123327739a.png" alt="百度智能创作" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 百度智能创作 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 百度智能创作 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 百度智能创作 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 百度智能创作平台,百度ai智能写作工具入口,ai写作,绘画,文生图,图转视频,剪辑,主播 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="80"> <a href="/index/index/detail?id=160" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c12397d7852.png" alt="腾讯智影" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 腾讯智影 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 腾讯智影 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 腾讯智影 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 腾讯智影,在线视频创作平台,ai文字自动生成视频,虚拟数字人,视频去背景 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="81"> <a href="/index/index/detail?id=166" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c127ff0aa96.png" alt="heygen ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> heygen ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> heygen ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> heygen ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> heygen,人工智能ai数字人,虚拟人,模特,主播,照片动起来,声音克隆,文字转语音视频 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="81"> <a href="/index/index/detail?id=167" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1285c3a599.png" alt="万兴播爆" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 万兴播爆 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 万兴播爆 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 万兴播爆 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 万兴播爆,视频创作神器,AI数字人,场景化模板,多语言配音,智能脚本等功能 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="81"> <a href="/index/index/detail?id=169" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c128b24c480.png" alt="Gan.ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Gan.ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Gan.ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Gan.ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Gan.ai,仅需两分钟即可定制个性化的虚拟数字人真人视频 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="81"> <a href="/index/index/detail?id=170" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1290dbfcdc.png" alt="怪兽ai数字人" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 怪兽ai数字人 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 怪兽ai数字人 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 怪兽ai数字人 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 怪兽ai数字人官网,虚拟数字人短视频,直播,形象/声音克隆 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="81"> <a href="/index/index/detail?id=171" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1299a5f9a1.png" alt="LiveReacting" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> LiveReacting </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> LiveReacting </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> LiveReacting </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> LiveReacting,使直播更具互动性和吸引力的ai工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="81"> <a href="/index/index/detail?id=172" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c12a2a49f90.png" alt="来画" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 来画 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 来画 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 来画 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 来画动画,ai虚拟数字人,智能创作平台 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="81"> <a href="/index/index/detail?id=173" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c12a7d83525.png" alt="dreamavatar" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> dreamavatar </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> dreamavatar </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> dreamavatar </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> dreamavatar官网,美图旗下AI数字人主播,虚拟人生成工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="81"> <a href="/index/index/detail?id=174" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c12e27f051d.png" alt="闪剪" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 闪剪 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 闪剪 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 闪剪 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 闪剪,AI虚拟数字人,智能剪辑神器,图文,直播一键成片 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="82"> <a href="/index/index/detail?id=175" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c12e9f1a2f9.png" alt="roop" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> roop </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> roop </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> roop </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> roopai换脸软件,单图,视频,一键换脸,Colab,插件安装下载 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="82"> <a href="/index/index/detail?id=176" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c12ec503b99.png" alt="facefusion" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> facefusion </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> facefusion </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> facefusion </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> facefusion,免费ai换脸工具软件整合包 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="82"> <a href="/index/index/detail?id=177" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c12f1945e2d.png" alt="deepfacelab" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> deepfacelab </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> deepfacelab </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> deepfacelab </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> deepfacelab,ai换脸软件模型下载,使用教程,论坛,汉化版github </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="82"> <a href="/index/index/detail?id=178" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c12f6ca7d25.png" alt="Swapface" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Swapface </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Swapface </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Swapface </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Swapface,人工智能ai换脸软件,支持直播,视频,图片 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="82"> <a href="/index/index/detail?id=179" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c12fc283f86.png" alt="insightFace" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> insightFace </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> insightFace </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> insightFace </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> insightFace,开源的2D&3D深度人脸分析工具箱 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="82"> <a href="/index/index/detail?id=180" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c13021140c6.png" alt="DeepFaceLive" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> DeepFaceLive </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> DeepFaceLive </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> DeepFaceLive </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> deepfacelive,模型下载,github,基于深度学习的DeepFake直播换脸视频软件 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="82"> <a href="/index/index/detail?id=181" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1305676c22.png" alt="Reface" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Reface </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Reface </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Reface </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Reface app,ai换脸软件,deepfake人工智能视频换脸应用 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="82"> <a href="/index/index/detail?id=182" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c130ae472f8.png" alt="FaceSwap" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> FaceSwap </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> FaceSwap </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> FaceSwap </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> FaceSwap,Face Swap视频AI换脸工具软件 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="84"> <a href="/index/index/detail?id=183" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c131688df25.png" alt="translate.video" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> translate.video </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> translate.video </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> translate.video </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> translate.video,视频翻译工具,以轻松地将视频翻译成多种语言 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-78" data-subCategoryId="84"> <a href="/index/index/detail?id=184" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c131c7b18a1.png" alt="33字幕网" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 33字幕网 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 33字幕网 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 33字幕网 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 33字幕网,功能强大的智能双语字幕工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> </div> <div id="categoryContent_85" class="d-flex justify-content-between align-items-center mb-3" style="margin-top: 25px;"> <h2 style="font-size: 20px; font-weight: bold;"><i class="bi-sort-alpha-up"></i> AI音频工具 </h2> <a class="btn btn-primary more-btn" href="/index/index/categoryDetail?id=85" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;">更多<i style="margin-left: 2px;" class="bi-chevron-right"></i></a> </div> <!-- 动态展示子分类 --> <div class="d-flex justify-content-between align-items-center mb-3" style="margin-top: -15px;"> <div id="subCategoryContent_85" class="subCategoryContent" style="display: flex; justify-content: space-between; align-items: center; background-color: #FFFFFF; border: 1px solid #ebebeb; margin: 0px 0px 0; border-radius: 20px; overflow-x: auto; white-space: nowrap;"> <a href="javascript:;" onclick="showSubCategoryContent(86, 85)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI音频 </a> <a href="javascript:;" onclick="showSubCategoryContent(87, 85)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI配音(文字转语言) </a> <a href="javascript:;" onclick="showSubCategoryContent(88, 85)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> 识别(语音转文字) </a> <a href="javascript:;" onclick="showSubCategoryContent(89, 85)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI语音克隆 </a> <a href="javascript:;" onclick="showSubCategoryContent(90, 85)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI人声分离 </a> <a href="javascript:;" onclick="showSubCategoryContent(91, 85)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI作曲 </a> </div> </div> <!-- 动态展示内容 --> <div class="row justify-content-start"> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="86"> <a href="/index/index/detail?id=185" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1328f300b4.png" alt="Descript" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Descript </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Descript </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Descript </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Descript,一站式ai视频,音频编辑工具,播客录制,屏幕录制 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="86"> <a href="/index/index/detail?id=186" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1331e44c24.png" alt="bandlab" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> bandlab </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> bandlab </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> bandlab </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> bandlab,音乐创作,数字音频工作站,社交平台,免费ai音频分离工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="86"> <a href="/index/index/detail?id=187" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c13364c7c6f.png" alt="Adobe Podcast" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Adobe Podcast </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Adobe Podcast </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Adobe Podcast </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Adobe Podcast,Adobe推出的在线AI音频录制和编辑工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="86"> <a href="/index/index/detail?id=188" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c133af9859b.png" alt="uberduck" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> uberduck </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> uberduck </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> uberduck </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> uberduck ai,优步鸭ai唱歌软件,语音合成器 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="86"> <a href="/index/index/detail?id=189" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c133edbb78e.png" alt="通义听悟" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 通义听悟 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 通义听悟 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 通义听悟 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 通义听悟,基于阿里云AI大模型,每天自动获得自动两小时听转写时长 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="86"> <a href="/index/index/detail?id=190" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c13443ae798.png" alt="Murf AI" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Murf AI </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Murf AI </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Murf AI </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Murf AI,多功能的AI语音生成器,人工智能真人声音克隆工具软件 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="86"> <a href="/index/index/detail?id=191" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c134815cde4.png" alt="fakeyou" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> fakeyou </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> fakeyou </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> fakeyou </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> fakeyou,音频生成AI,名人文字转语音工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="86"> <a href="/index/index/detail?id=192" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c134e8864e3.png" alt="riffusion" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> riffusion </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> riffusion </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> riffusion </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> riffusion,ai生成频谱图并制作音乐 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="87"> <a href="/index/index/detail?id=194" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1c84851805.png" alt="Replica Studios" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Replica Studios </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Replica Studios </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Replica Studios </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Replica Studios官网,高质量游戏,多媒体配音旁白合成工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="87"> <a href="/index/index/detail?id=195" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1c8a4f3f0b.png" alt="Filme" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Filme </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Filme </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Filme </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Filme,AI语音克隆,ai文字转语音生成器 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="87"> <a href="/index/index/detail?id=197" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1c8e87a96c.png" alt="FineVoice" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> FineVoice </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> FineVoice </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> FineVoice </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> FineVoice,ai语音增强,变声器,语音生成 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="87"> <a href="/index/index/detail?id=198" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1c9691e555.png" alt="VALL-E" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> VALL-E </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> VALL-E </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> VALL-E </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> VALL-E, 微软出品神器,ai 3秒钟克隆你的声音,配音 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="87"> <a href="/index/index/detail?id=199" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1c9ab4cea2.png" alt="Audyo" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Audyo </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Audyo </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Audyo </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Audyo,文本到语音的AI语音转换器,高质量逼真语音生成 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="87"> <a href="/index/index/detail?id=201" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1ca3947282.png" alt="spakfly" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> spakfly </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> spakfly </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> spakfly </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> spakfly,文本转语音软件,将任何文本转换成逼真的、听起来像人的画外音 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="87"> <a href="/index/index/detail?id=202" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1ca76aa64e.png" alt="Beepbooply" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Beepbooply </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Beepbooply </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Beepbooply </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Beepbooply,ai语音生成,配音,超过900种声音,文案转语音 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="87"> <a href="/index/index/detail?id=204" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1cad1b2bd5.png" alt="Ai Sofiya" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Ai Sofiya </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Ai Sofiya </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Ai Sofiya </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Ai Sofiya,社媒创建广告的超级Ai工具,语音生成器 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="88"> <a href="/index/index/detail?id=206" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1cbca62fb6.png" alt="TTS-Voice-Wizard" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> TTS-Voice-Wizard </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> TTS-Voice-Wizard </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> TTS-Voice-Wizard </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> TTS-Voice-Wizard,ai文本语音互转工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="88"> <a href="/index/index/detail?id=207" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1cc11dc96d.png" alt="讯飞听见" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 讯飞听见 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 讯飞听见 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 讯飞听见 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 讯飞听见,语音,音频,录音,视频转文字工具,同传,字幕,会议,电脑版app下载,翻译 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="88"> <a href="/index/index/detail?id=209" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1ccf0dac03.png" alt="whisper" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> whisper </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> whisper </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> whisper </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> whisper,github,openai推出的自动语音辨识模型 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="88"> <a href="/index/index/detail?id=211" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1cd2c08fea.png" alt="otter" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> otter </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> otter </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> otter </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> otter ai,免费多人语音识别和音频转录文字工具,翻译,听写,app </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="89"> <a href="/index/index/detail?id=212" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1cd9494dff.png" alt="kitsai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> kitsai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> kitsai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> kitsai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> kitsai,ai声音克隆,音乐,训练模型,文字转语音,声音分离器 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="89"> <a href="/index/index/detail?id=214" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1ce0021778.png" alt="Filme" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Filme </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Filme </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Filme </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Filme,AI语音克隆,ai文字转语音生成器 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="89"> <a href="/index/index/detail?id=215" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1ce550fdd2.png" alt="lovo.ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> lovo.ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> lovo.ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> lovo.ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> lovo.ai,AI配音,声音克隆&文本到语音平台 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="89"> <a href="/index/index/detail?id=217" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1ce970de01.png" alt="魔音工坊" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 魔音工坊 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 魔音工坊 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 魔音工坊 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 魔音工坊,ai免费配音网站,配音工厂,文字转成语音工具软件 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="89"> <a href="/index/index/detail?id=218" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1cef2840a5.png" alt="Murf AI" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Murf AI </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Murf AI </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Murf AI </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Murf AI,多功能的AI语音生成器,人工智能真人声音克隆工具软件 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="89"> <a href="/index/index/detail?id=219" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1cf517e0cc.png" alt="resemble ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> resemble ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> resemble ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> resemble ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> resemble ai,5秒克隆你的声音,并生成任何内容 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="89"> <a href="/index/index/detail?id=221" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1cfadb9f60.png" alt="MarketingBlocks ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> MarketingBlocks ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> MarketingBlocks ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> MarketingBlocks ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> MarketingBlocks ai,你的AI营销助理,帮助快速写各类文案 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="89"> <a href="/index/index/detail?id=223" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d02876479.png" alt="elai.io" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> elai.io </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> elai.io </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> elai.io </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> elai.io,ai视频生成软件工具,数字虚拟人,文字,ppt生成视频,声音克隆 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="90"> <a href="/index/index/detail?id=224" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d0936f9d9.png" alt="lalal.ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> lalal.ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> lalal.ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> lalal.ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> lalal.ai,啦啦爱音频分离人声和音乐网站 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="90"> <a href="/index/index/detail?id=226" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d0e721caf.png" alt="Ultimate Vocal Remover" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Ultimate Vocal Remover </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Ultimate Vocal Remover </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Ultimate Vocal Remover </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Ultimate Vocal Remover,uvr免费在线ai人声分离网站,人声提取软件工具神器 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="90"> <a href="/index/index/detail?id=228" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d1a8be7f3.png" alt="vocal remover" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> vocal remover </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> vocal remover </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> vocal remover </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> vocal remover,免费在线ai人声分离网站,人声提取软件工具神器 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="90"> <a href="/index/index/detail?id=229" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d200094bd.png" alt="TME Studio" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> TME Studio </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> TME Studio </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> TME Studio </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> TME Studio,腾讯音乐推出的一款创新的智能音乐创作助手 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-85" data-subCategoryId="91"> <a href="/index/index/detail?id=231" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d27957757.png" alt="soundraw" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> soundraw </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> soundraw </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> soundraw </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> soundraw,ai音乐作曲生成器自由定制,创作 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> </div> <div id="categoryContent_92" class="d-flex justify-content-between align-items-center mb-3" style="margin-top: 25px;"> <h2 style="font-size: 20px; font-weight: bold;"><i class="bi-slash-square-fill"></i> AI办公工具 </h2> <a class="btn btn-primary more-btn" href="/index/index/categoryDetail?id=92" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;">更多<i style="margin-left: 2px;" class="bi-chevron-right"></i></a> </div> <!-- 动态展示子分类 --> <div class="d-flex justify-content-between align-items-center mb-3" style="margin-top: -15px;"> <div id="subCategoryContent_92" class="subCategoryContent" style="display: flex; justify-content: space-between; align-items: center; background-color: #FFFFFF; border: 1px solid #ebebeb; margin: 0px 0px 0; border-radius: 20px; overflow-x: auto; white-space: nowrap;"> <a href="javascript:;" onclick="showSubCategoryContent(93, 92)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI文档 </a> <a href="javascript:;" onclick="showSubCategoryContent(94, 92)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI PPT </a> <a href="javascript:;" onclick="showSubCategoryContent(95, 92)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI数据可视化 </a> <a href="javascript:;" onclick="showSubCategoryContent(96, 92)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI Excel </a> <a href="javascript:;" onclick="showSubCategoryContent(97, 92)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI 思维导图 </a> </div> </div> <!-- 动态展示内容 --> <div class="row justify-content-start"> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="93"> <a href="/index/index/detail?id=16" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240204/65bfa26863661.png" alt="百度文库ai助手" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 百度文库ai助手 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 百度文库ai助手 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 百度文库ai助手 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 百度文库ai助手,写作入口,ai ppt生成,基于文心一言的一站式智能文档助手 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="93"> <a href="/index/index/detail?id=17" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240204/65bfa54835609.png" alt="通达AI" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 通达AI </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 通达AI </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 通达AI </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 通达AI,基于大模型的AI数字员工,销售顾问,智能客服,行政助手,文案写作等 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="93"> <a href="/index/index/detail?id=18" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240204/65bfa811a1aab.png" alt="coda ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> coda ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> coda ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> coda ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> coda ai,在线协作平台Coda推出的Notion AI的写作和文档助手 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="93"> <a href="/index/index/detail?id=19" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240204/65bfabe78ba40.png" alt="craft ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> craft ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> craft ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> craft ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> craft ai, ai办公写作助手,类似于Notion </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="93"> <a href="/index/index/detail?id=20" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240204/65bfada1908dc.png" alt="wps ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> wps ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> wps ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> wps ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> wps ai,wps智能写作,文字,演示ppt生成,pdf阅读 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="93"> <a href="/index/index/detail?id=21" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240204/65bfb1aeba197.png" alt="多墨智能" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 多墨智能 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 多墨智能 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 多墨智能 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 多墨智能,由人工智能驱动的ai工作助手,生成文档、流程图、思维导图 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="93"> <a href="/index/index/detail?id=22" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65bfc746315e6.png" alt="意表" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 意表 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 意表 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 意表 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 意表,截屏识别表格, 通用表格、无框线表格、财报、银行流水,轻松提取! </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="93"> <a href="/index/index/detail?id=46" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0f23020e5b.png" alt="gpt for work" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> gpt for work </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> gpt for work </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> gpt for work </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> gpt for work,Google表格和文档使用chatgpt插件 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="94"> <a href="/index/index/detail?id=50" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0f7de87029.png" alt="万兴智演" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 万兴智演 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 万兴智演 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 万兴智演 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 万兴智演,超强的ppt ai生成工具,演示制作神器 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="94"> <a href="/index/index/detail?id=52" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0fa5ef1b46.png" alt="auxi ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> auxi ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> auxi ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> auxi ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> auxi ai,一款让你瞬间成为PPT达人的PowerPoint AI插件 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="94"> <a href="/index/index/detail?id=56" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0fbdb21bac.png" alt="prezo ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> prezo ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> prezo ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> prezo ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> prezo ai,ppt ai生成网站软件神器工具,文字语音自动生成超美的演示文稿 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="94"> <a href="/index/index/detail?id=59" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0fcd1c8381.png" alt="powerpresent ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> powerpresent ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> powerpresent ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> powerpresent ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> powerpresent ai,ppt ai生成网站工具神器 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="94"> <a href="/index/index/detail?id=62" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c0fe1967974.png" alt="灵感ppt" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 灵感ppt </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 灵感ppt </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 灵感ppt </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 灵感ppt,在线ai ppt制作软件,素材设计,主题下载网站 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="94"> <a href="/index/index/detail?id=69" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c1004415d18.png" alt="wps ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> wps ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> wps ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> wps ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> wps ai,wps智能写作,文字,演示ppt生成,pdf阅读 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="94"> <a href="/index/index/detail?id=74" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c102090602a.png" alt="Flourish" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Flourish </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Flourish </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Flourish </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Flourish,在线ai数据可视化工具网站,生成动态可视化图表 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="94"> <a href="/index/index/detail?id=76" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c1036857d00.png" alt="美图ai ppt" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 美图ai ppt </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 美图ai ppt </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 美图ai ppt </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 美图ai ppt,美图设计室免费在线AI生成PPT设计工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="95"> <a href="/index/index/detail?id=77" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c104cfaf702.png" alt="镝数聚" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 镝数聚 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 镝数聚 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 镝数聚 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 镝数聚,dydata是行业数据报告聚合网站,首选平台 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="95"> <a href="/index/index/detail?id=78" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240205/65c1058ce17b6.png" alt="镝数图表" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 镝数图表 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 镝数图表 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 镝数图表 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 镝数图表,dycharts镝数据,功能强大的免费在线数据可视化工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="95"> <a href="/index/index/detail?id=79" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c10671d6c4a.png" alt="hanabi" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> hanabi </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> hanabi </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> hanabi </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> hanabi花火数图,数据可视化工具,在线图表编辑,动态排名条形图统计,导出视频 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="95"> <a href="/index/index/detail?id=80" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c10750741b8.png" alt="datawrapper" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> datawrapper </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> datawrapper </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> datawrapper </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> datawrapper,在线可视化数据化图表工具软件网站 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="95"> <a href="/index/index/detail?id=84" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1082130ca9.png" alt="Infogram" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Infogram </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Infogram </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Infogram </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Infogram,在线数据可视化图表工具软件 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="95"> <a href="/index/index/detail?id=87" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c108f73b212.png" alt="chartBlocks" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> chartBlocks </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> chartBlocks </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> chartBlocks </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> chartBlocks,易用的在线精美可视化数据图表制作工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="95"> <a href="/index/index/detail?id=89" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c10a148f2ed.png" alt="finebi" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> finebi </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> finebi </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> finebi </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> finebi,商业智能软件,数据分析和可视化展示 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="95"> <a href="/index/index/detail?id=92" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c10afe37994.png" alt="rawgraphs" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> rawgraphs </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> rawgraphs </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> rawgraphs </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> rawgraphs,一款功能强大的ai数据可视化工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="96"> <a href="/index/index/detail?id=95" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c10bf6de1f1.png" alt="PromptLoop" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> PromptLoop </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> PromptLoop </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> PromptLoop </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> PromptLoop,可帮助研究人员和专业人士简化数据分析,Excel和Google Sheet </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="96"> <a href="/index/index/detail?id=98" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c10cc96bc75.png" alt="excelformulabot" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> excelformulabot </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> excelformulabot </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> excelformulabot </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> excelformulabot,ai人工智能文本指令转换为Excel公式,sql指令 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="96"> <a href="/index/index/detail?id=102" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c10dc88b630.png" alt="chatexcel" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> chatexcel </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> chatexcel </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> chatexcel </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> chatexcel,酷表chatexcel,通过聊天对话,操作excel表格的人工智能ai工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="97"> <a href="/index/index/detail?id=104" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c10f839d459.png" alt="amymind" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> amymind </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> amymind </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> amymind </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> amymind思维导图,高效工作学习利器,轻松梳理思路软件 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="97"> <a href="/index/index/detail?id=107" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1107c8936f.png" alt="chatmax" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> chatmax </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> chatmax </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> chatmax </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> chatmax,小脉ai,强大的ai效率工具,支持人工智能写作,思维导图,文档对话等 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="97"> <a href="/index/index/detail?id=108" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c111904d2ba.png" alt="gitmind" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> gitmind </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> gitmind </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> gitmind </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> gitmind,在线ai思维导图软件工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="97"> <a href="/index/index/detail?id=112" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11263940a5.png" alt="ChatMind" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> ChatMind </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> ChatMind </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> ChatMind </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> chatmindai,chatmind ai生成思维导图自动生成网站 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="97"> <a href="/index/index/detail?id=115" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11319a8e1a.png" alt="chartai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> chartai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> chartai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> chartai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> chartaiai人工智能制作图表网 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="97"> <a href="/index/index/detail?id=118" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c113ebcb239.png" alt="whimsical ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> whimsical ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> whimsical ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> whimsical ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> whimsical ai官网,ai人工智能思维导图网站工具软件 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="97"> <a href="/index/index/detail?id=120" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c114a0d8ac1.png" alt="亿图脑图mindmaster" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 亿图脑图mindmaster </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 亿图脑图mindmaster </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 亿图脑图mindmaster </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 在线ai思维导图工具软件,在线协作办公,绘图工具,AI助手一键生成思维导图,AI绘画,对话,OCR文字提取 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-92" data-subCategoryId="97"> <a href="/index/index/detail?id=121" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1159741735.png" alt="ai思维导图" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> ai思维导图 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> ai思维导图 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> ai思维导图 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 免费ai思维导图,树图TreeMind,在线网站工具软件 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> </div> <div id="categoryContent_98" class="d-flex justify-content-between align-items-center mb-3" style="margin-top: 25px;"> <h2 style="font-size: 20px; font-weight: bold;"><i class="bi-safe-fill"></i> AI编程开发 </h2> <a class="btn btn-primary more-btn" href="/index/index/categoryDetail?id=98" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;">更多<i style="margin-left: 2px;" class="bi-chevron-right"></i></a> </div> <!-- 动态展示子分类 --> <div class="d-flex justify-content-between align-items-center mb-3" style="margin-top: -15px;"> <div id="subCategoryContent_98" class="subCategoryContent" style="display: flex; justify-content: space-between; align-items: center; background-color: #FFFFFF; border: 1px solid #ebebeb; margin: 0px 0px 0; border-radius: 20px; overflow-x: auto; white-space: nowrap;"> <a href="javascript:;" onclick="showSubCategoryContent(99, 98)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI编程 </a> <a href="javascript:;" onclick="showSubCategoryContent(100, 98)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI(无代码/低代码) </a> <a href="javascript:;" onclick="showSubCategoryContent(101, 98)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI应用开发 </a> </div> </div> <!-- 动态展示内容 --> <div class="row justify-content-start"> <div class="col-md-3 subCategoryContent category-98" data-subCategoryId="99"> <a href="/index/index/detail?id=125" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1189a9c5fb.png" alt="screenshot to code" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> screenshot to code </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> screenshot to code </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> screenshot to code </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> screenshot to code,ai神器,将截图转换为网页代码 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-98" data-subCategoryId="99"> <a href="/index/index/detail?id=129" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11a624b643.png" alt="iflycode" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> iflycode </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> iflycode </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> iflycode </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> iflycode,ai智能编程助手,基于讯飞星火认知大模型 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-98" data-subCategoryId="99"> <a href="/index/index/detail?id=132" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11b1714200.png" alt="通义灵码" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 通义灵码 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 通义灵码 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 通义灵码 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 通义灵码,插件下载,怎么样,使用教程,你的智能编码助手 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-98" data-subCategoryId="99"> <a href="/index/index/detail?id=135" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11bce4fa95.png" alt="BitoAI" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> BitoAI </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> BitoAI </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> BitoAI </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> BitoAI,一款由人工智能驱动的代码助手,10倍提升你的速度! 爱站权重:PC 百度权重移动 百度移动权重 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-98" data-subCategoryId="99"> <a href="/index/index/detail?id=138" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11ca037f8d.png" alt="aiXcoder" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> aiXcoder </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> aiXcoder </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> aiXcoder </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> aiXcoder,基于深度学习的ai软件开发工具,智能编程机器人 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-98" data-subCategoryId="99"> <a href="/index/index/detail?id=141" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11d82d4369.png" alt="MetaGPT" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> MetaGPT </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> MetaGPT </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> MetaGPT </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> MetaGPT,多智能体框架ai工具,自动化写代码,产品需求,设计,竞争分析,API等 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-98" data-subCategoryId="99"> <a href="/index/index/detail?id=144" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c11e7802d6f.png" alt="CodeGeeX" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> CodeGeeX </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> CodeGeeX </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> CodeGeeX </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> CodeGeeX,基于大模型的AI编程辅助工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-98" data-subCategoryId="99"> <a href="/index/index/detail?id=150" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c12098ea271.png" alt="fine-tuner.ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> fine-tuner.ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> fine-tuner.ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> fine-tuner.ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> fine-tuner.ai,无需编码即可构建您自己的AI服务 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-98" data-subCategoryId="100"> <a href="/index/index/detail?id=153" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c12167b09b3.png" alt="BetterYeah AI" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> BetterYeah AI </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> BetterYeah AI </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> BetterYeah AI </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> AI应用开发平台,简单、易用,API无缝集成至企业系统,斑头雁BetterYeah AI </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-98" data-subCategoryId="100"> <a href="/index/index/detail?id=155" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1222103ae2.png" alt="通达AI" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 通达AI </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 通达AI </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 通达AI </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 通达AI,基于大模型的AI数字员工,销售顾问,智能客服,行政助手,文案写作等 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-98" data-subCategoryId="100"> <a href="/index/index/detail?id=158" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c12324a623f.png" alt="BotDistrikt" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> BotDistrikt </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> BotDistrikt </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> BotDistrikt </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> BotDistrikt,无代码聊天机器人平台,面向营销人员、客户服务人员、数据分析师 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-98" data-subCategoryId="100"> <a href="/index/index/detail?id=161" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c123b9b0715.png" alt="bubble.io" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> bubble.io </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> bubble.io </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> bubble.io </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> bubble.io,无代码/低代码创建自己的app的平台网站 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-98" data-subCategoryId="100"> <a href="/index/index/detail?id=162" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1247a14a8c.png" alt="Lobe ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Lobe ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Lobe ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Lobe ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Lobe ai,微软提供无代码开发模式,任何人都快速开发机器学习模型 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-98" data-subCategoryId="100"> <a href="/index/index/detail?id=163" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1251b7219b.png" alt="Lightning AI" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Lightning AI </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Lightning AI </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Lightning AI </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Lightning AI,建立、培训和部署AI产品的平台 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-98" data-subCategoryId="100"> <a href="/index/index/detail?id=164" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c12623d61d9.png" alt="opengpt" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> opengpt </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> opengpt </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> opengpt </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> opengpt,基于OpenAI的GPT3.5 4的AI应用生成平台,快速生成你的ai应用! </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-98" data-subCategoryId="100"> <a href="/index/index/detail?id=165" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1274e1b46d.png" alt="Jina AI" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Jina AI </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Jina AI </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Jina AI </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Jina AI,专注于神经搜索技术的商业开源软件公司 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-98" data-subCategoryId="101"> <a href="/index/index/detail?id=168" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1287814428.png" alt="BetterYeah AI" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> BetterYeah AI </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> BetterYeah AI </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> BetterYeah AI </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> AI应用开发平台,简单、易用,API无缝集成至企业系统,斑头雁BetterYeah AI </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> </div> <div id="categoryContent_102" class="d-flex justify-content-between align-items-center mb-3" style="margin-top: 25px;"> <h2 style="font-size: 20px; font-weight: bold;"><i class="bi-screwdriver"></i> AI设计工具 </h2> <a class="btn btn-primary more-btn" href="/index/index/categoryDetail?id=102" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;">更多<i style="margin-left: 2px;" class="bi-chevron-right"></i></a> </div> <!-- 动态展示子分类 --> <div class="d-flex justify-content-between align-items-center mb-3" style="margin-top: -15px;"> <div id="subCategoryContent_102" class="subCategoryContent" style="display: flex; justify-content: space-between; align-items: center; background-color: #FFFFFF; border: 1px solid #ebebeb; margin: 0px 0px 0; border-radius: 20px; overflow-x: auto; white-space: nowrap;"> <a href="javascript:;" onclick="showSubCategoryContent(63, 102)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI 3D建模 </a> <a href="javascript:;" onclick="showSubCategoryContent(103, 102)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI建筑设计 </a> <a href="javascript:;" onclick="showSubCategoryContent(104, 102)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI室内设计 </a> <a href="javascript:;" onclick="showSubCategoryContent(105, 102)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI LOGO设计 </a> <a href="javascript:;" onclick="showSubCategoryContent(106, 102)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> AI 字体设计 </a> </div> </div> <!-- 动态展示内容 --> <div class="row justify-content-start"> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="105"> <a href="/index/index/detail?id=257" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d9a09fba3.png" alt="brandmark" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> brandmark </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> brandmark </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> brandmark </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> brandmark,AI设计logo设计平台,快速打造专业品牌形象 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="105"> <a href="/index/index/detail?id=259" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1da792c9b0.png" alt="美图设计室" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 美图设计室 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 美图设计室 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 美图设计室 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 美图设计室,AI平面设计,电商,图片编辑,抠图,海报ppt,物体消除,logo,文生图,变清晰,拼图 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="105"> <a href="/index/index/detail?id=261" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1db3923927.png" alt="标小智logo设计" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 标小智logo设计 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 标小智logo设计 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 标小智logo设计 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 标小智logo神器,logosic在线ai logo生成器,设计 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="105"> <a href="/index/index/detail?id=264" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1dbf0d7f0d.png" alt="makelogo ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> makelogo ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> makelogo ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> makelogo ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> makelogo ai,AI的Logo设计工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="105"> <a href="/index/index/detail?id=267" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1dc9861599.png" alt="MarketingBlocks ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> MarketingBlocks ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> MarketingBlocks ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> MarketingBlocks ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> MarketingBlocks ai,你的AI营销助理,帮助快速写各类文案 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="106"> <a href="/index/index/detail?id=269" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1dd3a7b286.png" alt="Fontjoy" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Fontjoy </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Fontjoy </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Fontjoy </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Fontjoy,一款可帮助设计师生成自己完美字体集的工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="106"> <a href="/index/index/detail?id=271" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1de50d12d8.png" alt="字觅⽹" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 字觅⽹ </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 字觅⽹ </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 字觅⽹ </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 字觅⽹,专注于提供正版字体授权的公司 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="63"> <a href="/index/index/detail?id=193" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1c7feab14b.png" alt="imagine 3d ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> imagine 3d ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> imagine 3d ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> imagine 3d ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> imagine 3d ai,Luma AI 推出的文本到3D模型生成工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="63"> <a href="/index/index/detail?id=196" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1c8d3653a8.png" alt="灵动无限" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 灵动无限 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 灵动无限 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 灵动无限 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 灵动无限,灵魔ai,基于AIGC的批量化、跨平台在线 3D模型的智能生成工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="63"> <a href="/index/index/detail?id=200" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1c9a2cda68.png" alt="GET3D" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> GET3D </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> GET3D </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> GET3D </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> GET3D,输入文字或语音, ai生成一个3D场景 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="63"> <a href="/index/index/detail?id=203" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1ca60ea502.ico" alt="Scenario" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Scenario </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Scenario </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Scenario </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Scenario, ai人工智能构建3d游戏场景 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="63"> <a href="/index/index/detail?id=205" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1cb98a60db.png" alt="DeepMotion" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> DeepMotion </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> DeepMotion </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> DeepMotion </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> DeepMotion,ai视频动作捕捉,实时身体追踪,应用于游戏、增强/虚拟现实 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="63"> <a href="/index/index/detail?id=208" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1cc52739b3.png" alt="kinetix" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> kinetix </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> kinetix </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> kinetix </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> kinetix,AI建模,将视频转为动画建模,免费的动作捕捉解决方案 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="63"> <a href="/index/index/detail?id=210" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1cd0fa884d.png" alt="Pixela.ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Pixela.ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Pixela.ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Pixela.ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Pixela.ai,AI驱动的3D游戏纹理图片生成工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="63"> <a href="/index/index/detail?id=213" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1cdcc5be16.ico" alt="Luma AI" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Luma AI </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Luma AI </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Luma AI </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Luma AI官网,基于NeRF,文字,图片,视频都可ai生成3D模型 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="103"> <a href="/index/index/detail?id=216" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1ce69e31a4.png" alt="Maket Al" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Maket Al </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Maket Al </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Maket Al </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Maket Al,ai建筑设计助手,住宅规划生成设计 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="103"> <a href="/index/index/detail?id=220" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1cf095d353.png" alt="筑绘通AlphaDraw" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 筑绘通AlphaDraw </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 筑绘通AlphaDraw </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 筑绘通AlphaDraw </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 品览ai,筑绘通AlphaDraw,面向工程领域的新一代智能工程设计云平台 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="103"> <a href="/index/index/detail?id=222" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1cff81ae47.png" alt="mnml.ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> mnml.ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> mnml.ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> mnml.ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> mnml.ai,Architecture Al Render,AI建筑和室内设计助手 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="103"> <a href="/index/index/detail?id=225" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d0a61f366.png" alt="varysai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> varysai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> varysai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> varysai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> varysai,ai驱动的空间设计工具,专业的ai室内设计神器 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="103"> <a href="/index/index/detail?id=227" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d156603d4.png" alt="豆绘ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 豆绘ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 豆绘ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 豆绘ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 豆绘a,绘画,ai建筑设计,vr全景合成图片,视频,空间设计助手 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="103"> <a href="/index/index/detail?id=230" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d210a9da7.png" alt="模袋云ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 模袋云ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 模袋云ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 模袋云ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 模袋云ai设计工具,免费不限量创作各类建筑效果图 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="104"> <a href="/index/index/detail?id=232" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d2ea3a33c.png" alt="styldod" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> styldod </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> styldod </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> styldod </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> styldod,ai室内设计工具,专注于提供虚拟家居布置和室内设计服务 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="104"> <a href="/index/index/detail?id=235" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d3b759339.png" alt="reimagine home" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> reimagine home </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> reimagine home </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> reimagine home </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> reimagine home,ai室内设计工具,轻松获取理想的室内装修效果图 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="104"> <a href="/index/index/detail?id=239" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d4fe46581.png" alt="get floor plan" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> get floor plan </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> get floor plan </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> get floor plan </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> get floor plan,AI生成2D3D建模工具软件,getfloorplan室内设计 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="104"> <a href="/index/index/detail?id=242" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d59d6035d.png" alt="interior ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> interior ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> interior ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> interior ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> interior ai,ai室内设计工具,快速生成室内空间设计方案 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="104"> <a href="/index/index/detail?id=245" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d6562c5de.png" alt="mnml.ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> mnml.ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> mnml.ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> mnml.ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> mnml.ai,Architecture Al Render,AI建筑和室内设计助手 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="104"> <a href="/index/index/detail?id=248" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d71570fcb.png" alt="varysai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> varysai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> varysai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> varysai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> varysai,ai驱动的空间设计工具,专业的ai室内设计神器 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="104"> <a href="/index/index/detail?id=250" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d7e0df216.png" alt="模袋云ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 模袋云ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 模袋云ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 模袋云ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 模袋云ai设计工具,免费不限量创作各类建筑效果图 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-102" data-subCategoryId="104"> <a href="/index/index/detail?id=253" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d892b8630.png" alt="roomgpt" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> roomgpt </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> roomgpt </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> roomgpt </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> roomgpt,ai室内设计软件工具,一键装修,3秒出效果图 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> </div> <div id="categoryContent_107" class="d-flex justify-content-between align-items-center mb-3" style="margin-top: 25px;"> <h2 style="font-size: 20px; font-weight: bold;"><i class="bi-puzzle"></i> AI插件大全 </h2> <a class="btn btn-primary more-btn" href="/index/index/categoryDetail?id=107" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;">更多<i style="margin-left: 2px;" class="bi-chevron-right"></i></a> </div> <!-- 动态展示子分类 --> <div class="d-flex justify-content-between align-items-center mb-3" style="margin-top: -15px;"> <div id="subCategoryContent_107" class="subCategoryContent" style="display: flex; justify-content: space-between; align-items: center; background-color: #FFFFFF; border: 1px solid #ebebeb; margin: 0px 0px 0; border-radius: 20px; overflow-x: auto; white-space: nowrap;"> <a href="javascript:;" onclick="showSubCategoryContent(108, 107)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> ChatGPT插件 </a> <a href="javascript:;" onclick="showSubCategoryContent(109, 107)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> Stable Diffusion插件 </a> <a href="javascript:;" onclick="showSubCategoryContent(110, 107)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> Midjoureny插件 </a> <a href="javascript:;" onclick="showSubCategoryContent(111, 107)" class="btn btn-primary more-btn subCategoryBtn" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;"> Ps ai插件 </a> </div> </div> <!-- 动态展示内容 --> <div class="row justify-content-start"> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="108"> <a href="/index/index/detail?id=272" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1df40519d4.png" alt="ChatGPT for google" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> ChatGPT for google </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> ChatGPT for google </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> ChatGPT for google </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> ChatGPT for google插件,超300万人安装,google搜索结果旁显示chatgpt结果 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="108"> <a href="/index/index/detail?id=274" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1dfffd7176.png" alt="WebChatGPT" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> WebChatGPT </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> WebChatGPT </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> WebChatGPT </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> WebChatGPT插件,让你的chatgpt免费联网,查询最新信息,无需开通plus </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="108"> <a href="/index/index/detail?id=276" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e08990613.png" alt="voice control for chatgpt" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> voice control for chatgpt </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> voice control for chatgpt </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> voice control for chatgpt </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> voice control for chatgpt插件,可以通过语音控制chatGPT并且对话 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="108"> <a href="/index/index/detail?id=279" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e12941907.png" alt="Sider ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Sider ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Sider ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Sider ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Sider插件,常驻chrome,edge浏览器侧边栏插件,随时使用chatgpt </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="108"> <a href="/index/index/detail?id=283" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e2310b587.png" alt="ShareGPT" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> ShareGPT </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> ShareGPT </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> ShareGPT </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> ShareGPT,一键分享你和ChatGPT的狂野对话 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="108"> <a href="/index/index/detail?id=290" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e76b80985.png" alt="Monica" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Monica </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Monica </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Monica </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Monica ai插件,你的ChatGPT AI 智能助理,适用于所有网站,谷歌浏览器,edge,chrome </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="108"> <a href="/index/index/detail?id=293" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e873ce858.png" alt="harpa ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> harpa ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> harpa ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> harpa ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> harpa ai,chatgpt插件,人工智能驱动的web自动化助手 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="108"> <a href="/index/index/detail?id=296" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e94d3f8fe.png" alt="gpt for work" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> gpt for work </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> gpt for work </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> gpt for work </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> gpt for work,Google表格和文档使用chatgpt插件 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="108"> <a href="/index/index/detail?id=297" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1ea0610a7f.png" alt="Detect GPT" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Detect GPT </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Detect GPT </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Detect GPT </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Detect GPT插件官网, Chrome扩展程序,查看您浏览的页面是否包含人工智能生成的内容 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="108"> <a href="/index/index/detail?id=298" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1eabe0a086.png" alt="ZipZap" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> ZipZap </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> ZipZap </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> ZipZap </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> ZipZap,免费的AI 助手,chatgpt插件,支持chrome,edge浏览器 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="108"> <a href="/index/index/detail?id=299" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1eb562e55a.png" alt="teamsmart ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> teamsmart ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> teamsmart ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> teamsmart ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> teamsmart ai,一款提供工作效率的chatgpt Chrome浏览器插件 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="108"> <a href="/index/index/detail?id=300" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1ebe098ae9.png" alt="UseChatGPT" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> UseChatGPT </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> UseChatGPT </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> UseChatGPT </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> UseChatGPT插件,在任何网站上改写、总结、翻译、解释或回复文本,无需复制粘贴 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="108"> <a href="/index/index/detail?id=301" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1ec7b20d85.png" alt="harpa" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> harpa </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> harpa </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> harpa </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> harpa ai, 将ChatGPT插件,集成到Chrome浏览器 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="108"> <a href="/index/index/detail?id=304" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1ed077a90c.png" alt="chatgptwriter" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> chatgptwriter </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> chatgptwriter </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> chatgptwriter </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> chatgptwriter,免费chatgpt Chrome浏览器扩展 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="109"> <a href="/index/index/detail?id=306" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1ee2ed9e47.png" alt="animatediff" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> animatediff </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> animatediff </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> animatediff </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> animatediff,Stable Diffusion AI视频生成插件,将静态图片转化为动态动画 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="109"> <a href="/index/index/detail?id=308" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1eeca33d61.png" alt="Inpaint Anything" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Inpaint Anything </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Inpaint Anything </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Inpaint Anything </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Inpaint Anything,Stable Diffusion插件,一键实现物体移除,内容填补,场景替换 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="109"> <a href="/index/index/detail?id=311" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1ef715a06e.png" alt="SD提示词中转英" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> SD提示词中转英 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> SD提示词中转英 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> SD提示词中转英 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> SD提示词中文转英文插件下载,prompt-all-in-one,Stable Diffusion WebUI 扩展 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="109"> <a href="/index/index/detail?id=314" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f013e80c6.png" alt="Controlnet" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Controlnet </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Controlnet </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Controlnet </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Controlnet插件,安装使用教程,怎么用,精准控制Stable Diffusion AI绘画神级插件教程 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="109"> <a href="/index/index/detail?id=316" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f0bfbd0a9.png" alt="deforum" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> deforum </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> deforum </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> deforum </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> deforum,stable diffusion webui 插件,AUTOMATIC1111 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="109"> <a href="/index/index/detail?id=319" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f159adfa6.png" alt="SadTalker" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> SadTalker </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> SadTalker </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> SadTalker </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> SadTalker,ai虚拟数字人,一张图片、一段音频,合成面部说这段语音的视频 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="110"> <a href="/index/index/detail?id=322" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f21538239.png" alt="Promptalot" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Promptalot </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Promptalot </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Promptalot </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Promptalot,提供海量Midjourney提示词网站+Promptalot Helper插件 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-107" data-subCategoryId="111"> <a href="/index/index/detail?id=325" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f30c9a8ad.png" alt="Alpaca插件" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Alpaca插件 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Alpaca插件 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Alpaca插件 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Alpaca ps ai插件,Photoshop插件,将草图转为艺术作品,支持Win/Mac </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> </div> <div id="categoryContent_112" class="d-flex justify-content-between align-items-center mb-3" style="margin-top: 25px;"> <h2 style="font-size: 20px; font-weight: bold;"><i class="bi-piggy-bank"></i> AI内容检测 </h2> <a class="btn btn-primary more-btn" href="/index/index/categoryDetail?id=112" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;">更多<i style="margin-left: 2px;" class="bi-chevron-right"></i></a> </div> <!-- 动态展示子分类 --> <div class="d-flex justify-content-between align-items-center mb-3" style="margin-top: -15px;"> <div id="subCategoryContent_112" class="subCategoryContent" style="display: flex; justify-content: space-between; align-items: center; background-color: #FFFFFF; border: 1px solid #ebebeb; margin: 0px 0px 0; border-radius: 20px; overflow-x: auto; white-space: nowrap;"> </div> </div> <!-- 动态展示内容 --> <div class="row justify-content-start"> <div class="col-md-3 subCategoryContent category-112" data-subCategoryId="112"> <a href="/index/index/detail?id=233" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d33930a91.png" alt="undetectable ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> undetectable ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> undetectable ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> undetectable ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> undetectable ai,ai写论文,文本内容检测并转化为与人类写作风格几乎无异的内容 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-112" data-subCategoryId="112"> <a href="/index/index/detail?id=234" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d3c6ec727.png" alt="Crossplag ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Crossplag ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Crossplag ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Crossplag ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Crossplag ai,Crossplag 开发的ai内容检测在线工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-112" data-subCategoryId="112"> <a href="/index/index/detail?id=236" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d41a75774.png" alt="GPTHero" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> GPTHero </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> GPTHero </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> GPTHero </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> GPTHero,AI 内容检测工具克星 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-112" data-subCategoryId="112"> <a href="/index/index/detail?id=237" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d457c3891.png" alt="Winston AI" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Winston AI </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Winston AI </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Winston AI </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Winston AI,号称是最适合教育领域的AI内容检测器 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-112" data-subCategoryId="112"> <a href="/index/index/detail?id=238" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d514dbb84.png" alt="Copyleaks ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Copyleaks ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Copyleaks ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Copyleaks ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Copyleaks,企业级的AI写作内容检测器,支持ChatGPT,GPT4和其他AI机器人 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-112" data-subCategoryId="112"> <a href="/index/index/detail?id=240" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d571391d2.png" alt="zerogpt" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> zerogpt </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> zerogpt </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> zerogpt </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> zerogpt,AI内容检测工具,准确率98% </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-112" data-subCategoryId="112"> <a href="/index/index/detail?id=241" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d5bbf2172.png" alt="AI Text Classifier" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> AI Text Classifier </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> AI Text Classifier </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> AI Text Classifier </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> AI Text Classifier,OpenAI 官方提供AI文章检测工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-112" data-subCategoryId="112"> <a href="/index/index/detail?id=243" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d60290fb5.png" alt="ZeroGPT Detector" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> ZeroGPT Detector </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> ZeroGPT Detector </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> ZeroGPT Detector </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> ZeroGPT Detector,AI内容检测器,识别和预测ai内容 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-112" data-subCategoryId="112"> <a href="/index/index/detail?id=244" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d64c2b091.png" alt="originality.ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> originality.ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> originality.ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> originality.ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> originality ai,号称是市场上最准确的 AI 内容检测工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-112" data-subCategoryId="112"> <a href="/index/index/detail?id=246" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d6c621339.png" alt="GPTZero" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> GPTZero </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> GPTZero </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> GPTZero </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> GPTZero,免费ai内容检测工具,chatgpt内容生成 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-112" data-subCategoryId="112"> <a href="/index/index/detail?id=247" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d70d36d49.png" alt="Writer ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Writer ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Writer ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Writer ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Writer ai,企业级的 AI内容生成和优化平台,文章写作 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> </div> <div id="categoryContent_113" class="d-flex justify-content-between align-items-center mb-3" style="margin-top: 25px;"> <h2 style="font-size: 20px; font-weight: bold;"><i class="bi-safe-fill"></i> AI模型下载 </h2> <a class="btn btn-primary more-btn" href="/index/index/categoryDetail?id=113" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;">更多<i style="margin-left: 2px;" class="bi-chevron-right"></i></a> </div> <!-- 动态展示子分类 --> <div class="d-flex justify-content-between align-items-center mb-3" style="margin-top: -15px;"> <div id="subCategoryContent_113" class="subCategoryContent" style="display: flex; justify-content: space-between; align-items: center; background-color: #FFFFFF; border: 1px solid #ebebeb; margin: 0px 0px 0; border-radius: 20px; overflow-x: auto; white-space: nowrap;"> </div> </div> <!-- 动态展示内容 --> <div class="row justify-content-start"> <div class="col-md-3 subCategoryContent category-113" data-subCategoryId="113"> <a href="/index/index/detail?id=256" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d9d5ab201.png" alt="sdxl" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> sdxl </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> sdxl </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> sdxl </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> sdxl模型,在线体验stable diffusion xl,开源文生图模型再进化,质量超强,一键生成 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-113" data-subCategoryId="113"> <a href="/index/index/detail?id=258" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1da31e37bb.png" alt="OpenPose模型" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> OpenPose模型 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> OpenPose模型 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> OpenPose模型 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> OpenPose模型下载,使用ControlNet插件控制stable diffusion出图人物的动作、姿态等 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-113" data-subCategoryId="113"> <a href="/index/index/detail?id=249" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d7a177899.png" alt="哩布哩布ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 哩布哩布ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 哩布哩布ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 哩布哩布ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 哩布哩布ai,liblibai模型站,在线免费Stable Diffusion ai绘画 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-113" data-subCategoryId="113"> <a href="/index/index/detail?id=251" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d8737aef4.png" alt="hugging face" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> hugging face </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> hugging face </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> hugging face </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> hugging face,huggingface是一个专注于聊天机器人服务的'GitHub' </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-113" data-subCategoryId="113"> <a href="/index/index/detail?id=252" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d8a6a2e65.png" alt="Civitai C站" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Civitai C站 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Civitai C站 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Civitai C站 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Civitai,C站AI绘画模型社区,绘画艺术模型下载与分享,Stable Diffusion, embeddings, LoRAs </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-113" data-subCategoryId="113"> <a href="/index/index/detail?id=254" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d8fbdc8f4.png" alt="炼丹阁" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 炼丹阁 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 炼丹阁 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 炼丹阁 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 炼丹阁,ai模型网站,号称是国内的c站civitai </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-113" data-subCategoryId="113"> <a href="/index/index/detail?id=255" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1d94ac15b3.png" alt="i-desai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> i-desai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> i-desai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> i-desai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> i-desai,国内stable diffusion模型下载网站,midjourney绘画社区 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> </div> <div id="categoryContent_114" class="d-flex justify-content-between align-items-center mb-3" style="margin-top: 25px;"> <h2 style="font-size: 20px; font-weight: bold;"><i class="bi-safe2"></i> AI大模型 </h2> <a class="btn btn-primary more-btn" href="/index/index/categoryDetail?id=114" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;">更多<i style="margin-left: 2px;" class="bi-chevron-right"></i></a> </div> <!-- 动态展示子分类 --> <div class="d-flex justify-content-between align-items-center mb-3" style="margin-top: -15px;"> <div id="subCategoryContent_114" class="subCategoryContent" style="display: flex; justify-content: space-between; align-items: center; background-color: #FFFFFF; border: 1px solid #ebebeb; margin: 0px 0px 0; border-radius: 20px; overflow-x: auto; white-space: nowrap;"> </div> </div> <!-- 动态展示内容 --> <div class="row justify-content-start"> <div class="col-md-3 subCategoryContent category-114" data-subCategoryId="114"> <a href="/index/index/detail?id=260" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1db116ea9a.svg" alt="蓝心大模型" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 蓝心大模型 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 蓝心大模型 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 蓝心大模型 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 蓝心大模型,vivolm,vivo自研的通用大模型 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-114" data-subCategoryId="114"> <a href="/index/index/detail?id=262" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1db887c962.png" alt="腾讯混元大模型" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 腾讯混元大模型 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 腾讯混元大模型 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 腾讯混元大模型 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 腾讯混元大模型官网入口,api,发布时间,升级,申请 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-114" data-subCategoryId="114"> <a href="/index/index/detail?id=263" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1dbcfe33c3.png" alt="grok" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> grok </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> grok </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> grok </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> grok,马斯克旗下xAI推出的人工智能助手 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-114" data-subCategoryId="114"> <a href="/index/index/detail?id=265" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1dc0eec2d9.png" alt="书生通用大模型" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 书生通用大模型 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 书生通用大模型 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 书生通用大模型 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 书生通用大模型,上海人工智能实验室,开放世界理解、跨模态生成、多模态交互 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-114" data-subCategoryId="114"> <a href="/index/index/detail?id=266" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1dc559df77.png" alt="紫东太初" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 紫东太初 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 紫东太初 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 紫东太初 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 紫东太初大模型,taichu全模态理解能力,文本、语音、图像、视频、信号、3D点云等 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-114" data-subCategoryId="114"> <a href="/index/index/detail?id=268" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1dd4836866.png" alt="百川大模型" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 百川大模型 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 百川大模型 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 百川大模型 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 百川大模型官网,百川智能baichuan,汇聚世界知识 创作妙笔生花 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-114" data-subCategoryId="114"> <a href="/index/index/detail?id=270" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1dd94496ae.png" alt="Minimax名之梦" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Minimax名之梦 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Minimax名之梦 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Minimax名之梦 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Minimax名之梦,新一代通用大模型,文本到视觉,语音,文本 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-114" data-subCategoryId="114"> <a href="/index/index/detail?id=273" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1de89653bb.png" alt="llama2" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> llama2 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> llama2 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> llama2 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> llama2,开源部署教程,模型下载,中文,论文,Meta发布的大型语言模型 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-114" data-subCategoryId="114"> <a href="/index/index/detail?id=275" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e0799fe95.png" alt="百度文心大模型" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 百度文心大模型 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 百度文心大模型 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 百度文心大模型 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 百度文心大模型官网,ai作画网站,写作,ai绘画,论文,文生图,写歌 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-114" data-subCategoryId="114"> <a href="/index/index/detail?id=277" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e0ea1e90b.png" alt="360智脑" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 360智脑 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 360智脑 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 360智脑 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 360智脑,ai生成式语言模型+联网搜索,写作,代码,绘画,阅读,逻辑推理 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-114" data-subCategoryId="114"> <a href="/index/index/detail?id=278" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e136240c3.png" alt="EasyDL" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> EasyDL </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> EasyDL </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> EasyDL </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> EasyDL,百度旗下零门槛AI开发平台 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-114" data-subCategoryId="114"> <a href="/index/index/detail?id=280" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e19cd4ed2.png" alt="天工AI助手" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 天工AI助手 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 天工AI助手 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 天工AI助手 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 天工AI助手,对标ChatGPT的大语言模型 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-114" data-subCategoryId="114"> <a href="/index/index/detail?id=281" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e1e915ca6.png" alt="DeepSpeed" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> DeepSpeed </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> DeepSpeed </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> DeepSpeed </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> DeepSpeed,微软开发的开源深度学习优化库,大规模模型分布式训练的工具 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-114" data-subCategoryId="114"> <a href="/index/index/detail?id=282" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e251299ad.png" alt="PaLM 2" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> PaLM 2 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> PaLM 2 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> PaLM 2 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> palm2,Google的下一代大语言模型,3.6万亿token,3400亿参数 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-114" data-subCategoryId="114"> <a href="/index/index/detail?id=284" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e2a653ed1.png" alt="阿里巴巴M6" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 阿里巴巴M6 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 阿里巴巴M6 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 阿里巴巴M6 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 阿里巴巴M6,阿里达摩院推出的超大规模中文预训练模型 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-114" data-subCategoryId="114"> <a href="/index/index/detail?id=285" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e2ebdfd1c.png" alt="智谱ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 智谱ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 智谱ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 智谱ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 智谱ai,新一代认知智能大模型,最具OpenAI气质和水准”的 AI 公司,基于领先的千亿级多语言、多模态预训练模型,打造高效率、通用化的“模型即服务”AI开发新范式 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> </div> <div id="categoryContent_115" class="d-flex justify-content-between align-items-center mb-3" style="margin-top: 25px;"> <h2 style="font-size: 20px; font-weight: bold;"><i class="bi-sign-intersection-y-fill"></i> AI开发框架 </h2> <a class="btn btn-primary more-btn" href="/index/index/categoryDetail?id=115" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;">更多<i style="margin-left: 2px;" class="bi-chevron-right"></i></a> </div> <!-- 动态展示子分类 --> <div class="d-flex justify-content-between align-items-center mb-3" style="margin-top: -15px;"> <div id="subCategoryContent_115" class="subCategoryContent" style="display: flex; justify-content: space-between; align-items: center; background-color: #FFFFFF; border: 1px solid #ebebeb; margin: 0px 0px 0; border-radius: 20px; overflow-x: auto; white-space: nowrap;"> </div> </div> <!-- 动态展示内容 --> <div class="row justify-content-start"> <div class="col-md-3 subCategoryContent category-115" data-subCategoryId="115"> <a href="/index/index/detail?id=286" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e4168f5d5.png" alt="Lightning AI" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Lightning AI </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Lightning AI </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Lightning AI </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Lightning AI,建立、培训和部署AI产品的平台 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-115" data-subCategoryId="115"> <a href="/index/index/detail?id=287" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e68ce9ccd.png" alt="JAX" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> JAX </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> JAX </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> JAX </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> JAX深度学习,Google开源的一个用于机器学习和科学计算的Python库 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-115" data-subCategoryId="115"> <a href="/index/index/detail?id=288" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e7191f032.png" alt="DL4J" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> DL4J </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> DL4J </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> DL4J </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> DL4J,Deeplearning4j,基于JVM的开源深度学习框架 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-115" data-subCategoryId="115"> <a href="/index/index/detail?id=289" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e773af0e8.png" alt="NumPy" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> NumPy </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> NumPy </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> NumPy </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> NumPy,Python语言的一个扩展程序库 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-115" data-subCategoryId="115"> <a href="/index/index/detail?id=291" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e7d4cb749.png" alt="caffe" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> caffe </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> caffe </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> caffe </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> caffe,深度学习流行的框架之一 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-115" data-subCategoryId="115"> <a href="/index/index/detail?id=292" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e821e005f.png" alt="Leap" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Leap </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Leap </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Leap </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Leap,将AI快速集成到你自己的应用中 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-115" data-subCategoryId="115"> <a href="/index/index/detail?id=294" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e875cd88d.png" alt="fast ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> fast ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> fast ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> fast ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> fast ai,基于PyTorch,简化深度学习的强大工具,优化模型训练与图像分类 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-115" data-subCategoryId="115"> <a href="/index/index/detail?id=295" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1e8d492371.png" alt="MindSpore" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> MindSpore </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> MindSpore </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> MindSpore </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> MindSpore,华为ai自研的支持端边云全场景的深度学习训练推理框架昇思 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> </div> <div id="categoryContent_116" class="d-flex justify-content-between align-items-center mb-3" style="margin-top: 25px;"> <h2 style="font-size: 20px; font-weight: bold;"><i class="bi-twitter"></i> AI社区 </h2> <a class="btn btn-primary more-btn" href="/index/index/categoryDetail?id=116" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;">更多<i style="margin-left: 2px;" class="bi-chevron-right"></i></a> </div> <!-- 动态展示子分类 --> <div class="d-flex justify-content-between align-items-center mb-3" style="margin-top: -15px;"> <div id="subCategoryContent_116" class="subCategoryContent" style="display: flex; justify-content: space-between; align-items: center; background-color: #FFFFFF; border: 1px solid #ebebeb; margin: 0px 0px 0; border-radius: 20px; overflow-x: auto; white-space: nowrap;"> </div> </div> <!-- 动态展示内容 --> <div class="row justify-content-start"> <div class="col-md-3 subCategoryContent category-116" data-subCategoryId="116"> <a href="/index/index/detail?id=302" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1ecdd4c28d.png" alt="启智社区OpenI" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 启智社区OpenI </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 启智社区OpenI </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 启智社区OpenI </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 启智社区OpenI,开源平台与社区 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-116" data-subCategoryId="116"> <a href="/index/index/detail?id=303" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1ed1938761.png" alt="魔搭社区" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 魔搭社区 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 魔搭社区 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 魔搭社区 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 魔搭社区,中国最大AI模型社区,汇聚各领域最先进的机器学习模型 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-116" data-subCategoryId="116"> <a href="/index/index/detail?id=305" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1ed9951b08.png" alt="阿里云天池" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 阿里云天池 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 阿里云天池 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 阿里云天池 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 阿里云天池,天池数据集,大赛,实验室,中国最大的 AI 开发者社区 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-116" data-subCategoryId="116"> <a href="/index/index/detail?id=307" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1eee957827.png" alt="和鲸社区" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 和鲸社区 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 和鲸社区 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 和鲸社区 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 和鲸社区,heywhale拥有超过40万数据科学家与AI开发工程师用户 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-116" data-subCategoryId="116"> <a href="/index/index/detail?id=309" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1ef3732466.png" alt="Chirper" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Chirper </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Chirper </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Chirper </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Chirper,禁止人类发言的ai社区奇鸟 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-116" data-subCategoryId="116"> <a href="/index/index/detail?id=310" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1ef7823282.png" alt="Replicate" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Replicate </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Replicate </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Replicate </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Replicate,ai社区,机器学习模型共享平台 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-116" data-subCategoryId="116"> <a href="/index/index/detail?id=312" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1efd730f6d.png" alt="postai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> postai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> postai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> postai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> postai,基于 AI 的社交网络,激发你的灵感 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-116" data-subCategoryId="116"> <a href="/index/index/detail?id=313" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f0171264f.png" alt="Kaggle" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Kaggle </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Kaggle </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Kaggle </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Kaggle,国外机器学习和数据科学社区 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> </div> <div id="categoryContent_117" class="d-flex justify-content-between align-items-center mb-3" style="margin-top: 25px;"> <h2 style="font-size: 20px; font-weight: bold;"><i class="bi-unity"></i> AI开放平台 </h2> <a class="btn btn-primary more-btn" href="/index/index/categoryDetail?id=117" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;">更多<i style="margin-left: 2px;" class="bi-chevron-right"></i></a> </div> <!-- 动态展示子分类 --> <div class="d-flex justify-content-between align-items-center mb-3" style="margin-top: -15px;"> <div id="subCategoryContent_117" class="subCategoryContent" style="display: flex; justify-content: space-between; align-items: center; background-color: #FFFFFF; border: 1px solid #ebebeb; margin: 0px 0px 0; border-radius: 20px; overflow-x: auto; white-space: nowrap;"> </div> </div> <!-- 动态展示内容 --> <div class="row justify-content-start"> <div class="col-md-3 subCategoryContent category-117" data-subCategoryId="117"> <a href="/index/index/detail?id=315" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f0c599439.png" alt="百度飞桨" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 百度飞桨 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 百度飞桨 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 百度飞桨 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 百度飞桨平台官网,paddlepaddle,开源深度学习平台 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-117" data-subCategoryId="117"> <a href="/index/index/detail?id=317" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f14234497.png" alt="微软azure AI" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 微软azure AI </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 微软azure AI </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 微软azure AI </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 微软azure AI,微软人工智能,开放灵活的云计算平台,免费试用12个月 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-117" data-subCategoryId="117"> <a href="/index/index/detail?id=318" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f17263c3d.png" alt="云上曲率" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 云上曲率 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 云上曲率 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 云上曲率 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 云上曲率官网,AIGC内容安全提... </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-117" data-subCategoryId="117"> <a href="/index/index/detail?id=320" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f1ce9152c.png" alt="有道智云ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 有道智云ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 有道智云ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 有道智云ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 有道智云ai开放平台,网易有道ai,翻译,文字识别OCR,实时语音翻译 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-117" data-subCategoryId="117"> <a href="/index/index/detail?id=321" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f2106c993.png" alt="灵境矩阵平台" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 灵境矩阵平台 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 灵境矩阵平台 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 灵境矩阵平台 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 百度灵境矩阵平台,文心大模型插件开发/文心一言ai插件平台 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> </div> <div id="categoryContent_118" class="d-flex justify-content-between align-items-center mb-3" style="margin-top: 25px;"> <h2 style="font-size: 20px; font-weight: bold;"><i class="bi-type"></i> AI学习平台 </h2> <a class="btn btn-primary more-btn" href="/index/index/categoryDetail?id=118" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;">更多<i style="margin-left: 2px;" class="bi-chevron-right"></i></a> </div> <!-- 动态展示子分类 --> <div class="d-flex justify-content-between align-items-center mb-3" style="margin-top: -15px;"> <div id="subCategoryContent_118" class="subCategoryContent" style="display: flex; justify-content: space-between; align-items: center; background-color: #FFFFFF; border: 1px solid #ebebeb; margin: 0px 0px 0; border-radius: 20px; overflow-x: auto; white-space: nowrap;"> </div> </div> <!-- 动态展示内容 --> <div class="row justify-content-start"> <div class="col-md-3 subCategoryContent category-118" data-subCategoryId="118"> <a href="/index/index/detail?id=323" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f2971fa13.png" alt="Amazon SageMaker" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Amazon SageMaker </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Amazon SageMaker </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Amazon SageMaker </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Amazon SageMaker,完全托管的基础设施,工具和工作流程为任何用例构建,训练和部署机器学习 (ML) 模型 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-118" data-subCategoryId="118"> <a href="/index/index/detail?id=324" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f2e86501c.png" alt="Google Teachable Machine" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Google Teachable Machine </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Google Teachable Machine </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Google Teachable Machine </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Google Teachable Machine,一种基于网络的工具,可以让每个人快速、轻松地创建机器学习模型 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-118" data-subCategoryId="118"> <a href="/index/index/detail?id=326" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f3312e1c3.png" alt="PyCaret" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> PyCaret </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> PyCaret </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> PyCaret </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> PyCaret,Python中的开源低代码机器学习库 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-118" data-subCategoryId="118"> <a href="/index/index/detail?id=327" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f40b447e8.png" alt="Google AutoML" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Google AutoML </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Google AutoML </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Google AutoML </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Google AutoML,支持可视化拖拽开发模式 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-118" data-subCategoryId="118"> <a href="/index/index/detail?id=329" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f463c876d.png" alt="Apple CreateML" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Apple CreateML </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Apple CreateML </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Apple CreateML </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Apple CreateML,可视化拖拽的开发模式,帮助用户轻松创建iOS应用程序 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-118" data-subCategoryId="118"> <a href="/index/index/detail?id=330" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f4a23e928.png" alt="神经网络入门" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 神经网络入门 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 神经网络入门 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 神经网络入门 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 神经网络入门 brilliant课程,神经网络学习 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-118" data-subCategoryId="118"> <a href="/index/index/detail?id=331" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f4e657cf4.png" alt="brilliant" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> brilliant </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> brilliant </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> brilliant </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> brilliant,国外知名的在线学习平台 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-118" data-subCategoryId="118"> <a href="/index/index/detail?id=333" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f52f65dca.png" alt="AI大学堂" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> AI大学堂 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> AI大学堂 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> AI大学堂 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> AI大学堂,讯飞开放平台打造的人工智能专业学习、交流和培训的在线学习平台 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-118" data-subCategoryId="118"> <a href="/index/index/detail?id=334" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f57a350fe.png" alt="Machine Learning Mastery" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Machine Learning Mastery </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Machine Learning Mastery </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Machine Learning Mastery </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Machine Learning Mastery官网,在线ai机器学习平台和资源库,从基础到高级 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-118" data-subCategoryId="118"> <a href="/index/index/detail?id=336" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f5b6ae9bf.ico" alt="Elements of AI" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Elements of AI </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Elements of AI </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Elements of AI </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Elements of AI,免费在线ai课程学习网站 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-118" data-subCategoryId="118"> <a href="/index/index/detail?id=337" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f5fb4d975.png" alt="Udacity AI学院" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Udacity AI学院 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Udacity AI学院 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Udacity AI学院 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Udacity AI学院,从入门到高级的School of Al </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-118" data-subCategoryId="118"> <a href="/index/index/detail?id=339" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f6439bbef.png" alt="deeplearning ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> deeplearning ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> deeplearning ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> deeplearning ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> deeplearning ai,专注于人工智能领域的在线课程学习平台 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-118" data-subCategoryId="118"> <a href="/index/index/detail?id=340" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f67d38475.png" alt="Coursera" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Coursera </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Coursera </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Coursera </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Coursera,国外知名MOOC平台,众多人工智能和机器习课程 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> </div> <div id="categoryContent_119" class="d-flex justify-content-between align-items-center mb-3" style="margin-top: 25px;"> <h2 style="font-size: 20px; font-weight: bold;"><i class="bi-universal-access"></i> AI竞赛 </h2> <a class="btn btn-primary more-btn" href="/index/index/categoryDetail?id=119" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;">更多<i style="margin-left: 2px;" class="bi-chevron-right"></i></a> </div> <!-- 动态展示子分类 --> <div class="d-flex justify-content-between align-items-center mb-3" style="margin-top: -15px;"> <div id="subCategoryContent_119" class="subCategoryContent" style="display: flex; justify-content: space-between; align-items: center; background-color: #FFFFFF; border: 1px solid #ebebeb; margin: 0px 0px 0; border-radius: 20px; overflow-x: auto; white-space: nowrap;"> </div> </div> <!-- 动态展示内容 --> <div class="row justify-content-start"> <div class="col-md-3 subCategoryContent category-119" data-subCategoryId="119"> <a href="/index/index/detail?id=341" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f6d5e9c66.png" alt="阿里云天池大赛" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 阿里云天池大赛 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 阿里云天池大赛 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 阿里云天池大赛 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 阿里云天池大赛,海量活动,巨额现金奖励等你拿 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-119" data-subCategoryId="119"> <a href="/index/index/detail?id=343" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f7473668a.png" alt="和鲸数据科学竞赛" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 和鲸数据科学竞赛 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 和鲸数据科学竞赛 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 和鲸数据科学竞赛 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 和鲸数据科学竞赛,专注于大数据算法比赛的商业服务机构 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-119" data-subCategoryId="119"> <a href="/index/index/detail?id=344" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f781ef15c.png" alt="百度AI Studio算法大赛" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 百度AI Studio算法大赛 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 百度AI Studio算法大赛 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 百度AI Studio算法大赛 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 百度AI Studio算法大赛,人工智能学习与实训社区 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-119" data-subCategoryId="119"> <a href="/index/index/detail?id=346" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f7db6f15d.png" alt="datafountain" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> datafountain </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> datafountain </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> datafountain </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> datafountain,国内领先的数据科学竞赛创新平台之一 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-119" data-subCategoryId="119"> <a href="/index/index/detail?id=347" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f82d6199b.png" alt="MindSpore" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> MindSpore </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> MindSpore </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> MindSpore </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> MindSpore,华为ai自研的支持端边云全场景的深度学习训练推理框架昇思 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-119" data-subCategoryId="119"> <a href="/index/index/detail?id=349" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f8896eb30.png" alt="Kaggle" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Kaggle </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Kaggle </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Kaggle </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Kaggle,国外机器学习和数据科学社区 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> </div> <div id="categoryContent_120" class="d-flex justify-content-between align-items-center mb-3" style="margin-top: 25px;"> <h2 style="font-size: 20px; font-weight: bold;"><i class="bi-yin-yang"></i> AI算力平台 </h2> <a class="btn btn-primary more-btn" href="/index/index/categoryDetail?id=120" style="border-radius: 20px; height: 30px; display: flex; justify-content: center; align-items: center; color: #5a5a5a; background-color: white; border: 1px solid white; font-size: 12px;">更多<i style="margin-left: 2px;" class="bi-chevron-right"></i></a> </div> <!-- 动态展示子分类 --> <div class="d-flex justify-content-between align-items-center mb-3" style="margin-top: -15px;"> <div id="subCategoryContent_120" class="subCategoryContent" style="display: flex; justify-content: space-between; align-items: center; background-color: #FFFFFF; border: 1px solid #ebebeb; margin: 0px 0px 0; border-radius: 20px; overflow-x: auto; white-space: nowrap;"> </div> </div> <!-- 动态展示内容 --> <div class="row justify-content-start"> <div class="col-md-3 subCategoryContent category-120" data-subCategoryId="120"> <a href="/index/index/detail?id=328" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f438472ec.png" alt="九天毕昇" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 九天毕昇 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 九天毕昇 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 九天毕昇 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 九天毕昇,人工智能平台,k12教育,移动新推出的算力平台 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-120" data-subCategoryId="120"> <a href="/index/index/detail?id=332" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f4c9ad5a6.png" alt="百度智能云" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 百度智能云 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 百度智能云 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 百度智能云 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 百度智能云,推动数字化智能化的先进云计算服务提供商 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-120" data-subCategoryId="120"> <a href="/index/index/detail?id=335" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f55c14f03.png" alt="UCloud优刻得" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> UCloud优刻得 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> UCloud优刻得 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> UCloud优刻得 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> UCloud,uc云优刻得云计算服务平台 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-120" data-subCategoryId="120"> <a href="/index/index/detail?id=338" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f60f3d682.png" alt="华为云" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 华为云 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 华为云 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 华为云 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 华为云,稳定高效的云服务器计算引擎 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-120" data-subCategoryId="120"> <a href="/index/index/detail?id=342" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f6da6ec33.png" alt="腾讯云" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 腾讯云 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 腾讯云 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 腾讯云 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 腾讯云,提供安全可靠、性能强大、稳定的云服务器服务 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-120" data-subCategoryId="120"> <a href="/index/index/detail?id=345" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f7710bb22.png" alt="阿里云" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 阿里云 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 阿里云 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 阿里云 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 阿里云服务器,云计算引领者aliyun </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-120" data-subCategoryId="120"> <a href="/index/index/detail?id=348" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f81b29a66.png" alt="火山引擎" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 火山引擎 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 火山引擎 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 火山引擎 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 火山引擎,字节跳动旗下的云服务平台,大数据、ai人工智能云服务,gpu云服务器 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-120" data-subCategoryId="120"> <a href="/index/index/detail?id=350" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f8b409ab7.png" alt="亚马逊云AWS" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 亚马逊云AWS </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 亚马逊云AWS </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 亚马逊云AWS </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 亚马逊云AWS EC2,亚马逊云服务器,免费一年,提供最广泛、最深入的计算平台 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-120" data-subCategoryId="120"> <a href="/index/index/detail?id=351" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1f97346a98.png" alt="谷歌云" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 谷歌云 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 谷歌云 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 谷歌云 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> 谷歌云,google cloud获享$300免费赠金,并免费试用 20多种产品 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-120" data-subCategoryId="120"> <a href="/index/index/detail?id=352" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1fa131a1ce.png" alt="vast.ai" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> vast.ai </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> vast.ai </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> vast.ai </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> vast.ai,一家全球GPU共享市场 </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-120" data-subCategoryId="120"> <a href="/index/index/detail?id=353" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1fac22aabd.png" alt="Model Whale" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> Model Whale </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> Model Whale </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> Model Whale </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> Model Whale,和鲸社区heywhale在线数据科学工具,提供免费GPU </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> <div class="col-md-3 subCategoryContent category-120" data-subCategoryId="120"> <a href="/index/index/detail?id=354" style="color: inherit; text-decoration: none;" target="_blank"> <div class="content-block shadow mb-3" style="border-radius: 10px; padding: 20px 0; display: flex; align-items: center; background-color: #FFFFFF;"> <img src="/storage/upload/20240206/65c1fc2099f93.png" alt="揽睿星舟" style="height: 50px; max-width: 50px; max-height: 50px; margin-left: 20px; border-radius: 50%; margin-right: 10px;"> <div style="display: flex; flex-direction: column; justify-content: center; margin-right: 20px;"> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold;"> 揽睿星舟 </h3>--> <!--<h3 style="font-size: 15px; margin: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "> 揽睿星舟 </h3>--> <style> h3 { font-size: 15px; font-weight: bold; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <h3> 揽睿星舟 </h3> <style> p { font-size: 12px; margin: 0; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } </style> <p> sd ai绘画一键云部署,stable diffusion </p> </div> <i class="bi-arrow-bar-right" style="font-size: 20px; margin-left: auto; margin-right: 20px; color: #5a5a5a4f; cursor: pointer;" title="查看详情"></i> </div> </a> </div> </div> <style> /* 移除链接悬停时的蓝色边框 */ .more-btn:hover { background-color: #ff6000 !important; /* Change the background color on hover */ color: #FFFFFF !important; /* Change the text color on hover */ } .subCategoryBtn.selected:hover { background-color: #ff6000 !important; color: #FFFFFF !important; } .more-btn.active { background-color: #ff6000 !important; color: white !important; } /* 隐藏滚动条 */ .subCategoryContent::-webkit-scrollbar { display: none !important; } .subCategoryBtn:focus { outline: none !important; box-shadow: none !important; } </style> <script> function showSubCategoryContent(subCategoryId, categoryId) { // 隐藏当前顶级分类下的子分类内容 $('.category-' + categoryId + '.subCategoryContent').hide(); $('.category-' + categoryId + '.subCategoryContent[data-subCategoryId="' + subCategoryId + '"]').show(); // 切换按钮样式 $('#subCategoryContent_' + categoryId).on('click', '.subCategoryBtn', function() { // 移除所有按钮的selected类 $('.subCategoryBtn').removeClass('active'); // 为当前点击的按钮添加selected类 $(this).addClass('active'); }); } </script> <!--友情链接--> <hr> <div class="col" style="margin-top: 20px;"> <h5>友情链接</h5> <ul class="list-inline"> <li class="list-inline-item"> <a href="https://www.sslphp.com" style="color: rgb(146, 146, 146);" target="_blank"> 软件开发 </a> </li> <li class="list-inline-item"> <a href="https://www.sslphp.com/ti" style="color: rgb(146, 146, 146);" target="_blank"> 提示词交易系统 </a> </li> <li class="list-inline-item"> <a href="https://www.sslphp.com/ainv" style="color: rgb(146, 146, 146);" target="_blank"> AI网址导航系统 </a> </li> <li class="list-inline-item"> <a href="https://www.sslphp.com/ainv/icon" style="color: rgb(146, 146, 146);" target="_blank"> 图标代码 </a> </li> </ul> </div> <!--友情链接--> <!--版权信息--> <style> .copyright { margin-top: 35px; padding: 24px; font-weight: 400; width: 100%; justify-content: center; /* border-top: 1px solid #e7eaee;*/ word-break: keep-all; color: #00000073; display: inline-flex; flex-wrap: wrap; font-size: 0.8rem; } </style> <div class="copyright"><span>© 2021-2023 汇创网络</span>版权所有<span style="margin: 0px 8px;">|</span><a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer" style="color: #00000073; text-decoration: none;">粤ICP备09194157号-14</a> <span style="margin: 0px 8px;">|</span> <img class="img" style="border: 0;" src="https://qm.goolibao.com/static/index/sslphp.com/images/gab.png" alt=""> <a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=4406063010621" target="_blank" rel="noopener noreferrer" style="color: #00000073; text-decoration: none;">粤公网安备4406063010621号</a> </div> <!--版权信息--> </div> <!-- container-fluid --> </div> <!-- End Page-content --> </div> <!-- end main content--> </div> <!-- END layout-wrapper --> <!-- 覆盖层--> <div class="menu-overlay"></div> <style> .menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); /* 半透明的黑色背景 */ z-index: 1000; /* 设置一个较高的z-index值 */ display: none; /* 初始状态下隐藏覆盖层 */ } </style> <!-- 覆盖层--> <script charset="UTF-8" id="LA_COLLECT" src="//sdk.51.la/js-sdk-pro.min.js"></script> <script>LA.init({id:"KL8bOnj2kyKmZukj",ck:"KL8bOnj2kyKmZukj"})</script> <!-- jQuery --> <script src="/static/sslphp/home/assets/js/jquery.min.js"></script> <script src="/static/sslphp/home/assets/js/bootstrap.bundle.min.js"></script> <script src="/static/sslphp/home/assets/js/metismenu.min.js"></script> <script src="/static/sslphp/home/assets/js/waves.js"></script> <script src="/static/sslphp/home/assets/js/simplebar.min.js"></script> <!-- Sparkline Js--> <script src="../plugins/jquery-sparkline/jquery.sparkline.min.js"></script> <!-- Morris Js--> <script src="../plugins/morris-js/morris.min.js"></script> <!-- Raphael Js--> <script src="../plugins/raphael/raphael.min.js"></script> <!-- Custom Js --> <script src="/static/sslphp/home/assets/pages/dashboard-demo.js"></script> <!-- App js --> <script src="/static/sslphp/home/assets/js/theme.js"></script> <script src="https://qm.goolibao.com/static/index/so/select2.min.js"></script> <script> $(document).ready(function() { $('#searchEngine').select2({ templateResult: formatIcon, templateSelection: formatIcon, minimumResultsForSearch: -1 // Disable search box }); function formatIcon(state) { if (!state.id) { return state.text; } var icon = $('<span><img src="' + $(state.element).data('icon') + '" class="img-icon" /> ' + state.text + '</span>'); return icon; } }); function search() { let query = document.getElementById('searchQuery').value; let engine = document.getElementById('searchEngine').value; switch (engine) { case 'site': window.location = "/index/Index/search.html?keyword=" + query; break; case 'baidu': window.open("https://www.baidu.com/s?wd=" + query); break; case 'sogou': window.open("https://www.sogou.com/web?query=" + query); break; case 'bing': window.open("https://www.bing.com/search?q=" + query); break; case 'google': window.open("https://www.google.com/search?q=" + query); break; default: break; } } </script> <script> // 监听侧边导航链接的点击事件 $('#side-menu a').click(function() { // 获取目标位置的偏移量 var targetOffset = $($(this).attr('href')).offset().top; // 考虑顶部导航的高度 var headerHeight = $('header').outerHeight(); // 计算最终滚动的位置 var scrollTo = targetOffset - headerHeight; // 执行页面滚动动画 $('html, body').animate({ scrollTop: scrollTo }, 500); // 手动将目标位置的内容滚动到页面顶部 $($(this).attr('href')).scrollTop(0); // 阻止默认链接跳转行为 return false; }); </script> <!---测试浏览器---> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10