自适应社交网站用户个人中心页面布局效果
代码语言:html
所属分类:布局界面
代码描述:自适应社交网站用户个人中心页面布局效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> @import url("https://fonts.googleapis.com/css?family=DM+Sans:400,500,700|Source+Sans+Pro:300,400,600,700&display=swap"); * { outline: none; box-sizing: border-box; } html { box-sizing: border-box; -webkit-font-smoothing: antialiased; } body { font-family: "Source Sans Pro", sans-serif; background-color: #373e57; color: #ccc8db; } .container { background-color: #151728; display: flex; max-width: 1600px; height: 100vh; overflow: hidden; margin: 0 auto; } .left-side { width: 260px; border-right: 1px solid #272a3a; display: flex; flex-direction: column; transition: 0.3s; background-color: #151728; overflow: auto; flex-shrink: 0; } @media screen and (max-width: 930px) { .left-side.active { z-index: 4; } .left-side.active > *:not(.logo) { opacity: 1; transition: 0.3s 0.2s; } .left-side.active .left-side-button svg:first-child { opacity: 0; } .left-side.active .left-side-button svg:last-child { transform: translate(-50%, -50%); opacity: 1; } .left-side:not(.active) { width: 56px; overflow: hidden; } .left-side:not(.active) > *:not(.logo):not(.left-side-button) { opacity: 0; } .left-side:not(.active) .logo { writing-mode: vertical-lr; transform: rotate(180deg); transform-origin: bottom; display: flex; align-items: center; margin-top: -10px; } } .right-side { width: 280px; flex-shrink: 0; margin-left: auto; overflow: auto; background-color: #151728; display: flex; flex-direction: column; } @media screen and (max-width: 1210px) { .right-side { position: fixed; right: 0; top: 0; transition: 0.3s; height: 100%; transform: translateX(280px); z-index: 4; } .right-side.active { transform: translatex(0); } } .main { flex-grow: 1; display: flex; flex-direction: column; background-color: #181d2f; } .logo { font-family: "DM Sans", sans-serif; font-size: 15px; color: #fff; font-weight: 600; text-align: center; height: 68px; line-height: 68px; letter-spacing: 4px; position: sticky; top: 0; background: linear-gradient(to bottom, #151728 0%, #151728 76%, rgba(21, 23, 40, 0) 100%); } .side-title { font-family: "DM Sans", sans-serif; color: #5c5e6e; font-size: 15px; font-weight: 600; margin-bottom: 20px; } .side-wrapper { padding: 30px; } .side-menu { display: flex; flex-direction: column; font-size: 15px; white-space: nowrap; } .side-menu svg { margin-right: 16px; width: 16px; } .side-menu a { text-decoration: none; color: #9c9cab; display: flex; align-items: center; } .side-menu a:hover { color: #fff; } .side-menu a:not(:last-child) { margin-bottom: 20px; } .follow-me { text-decoration: none; font-size: 14px; display: flex; align-items: center; margin-top: auto; overflow: hidden; color: #9c9cab; padding: 0 20px; height: 52px; flex-shrink: 0; border-top: 1px solid #272a3a; position: relative; } .follow-me svg { width: 16px; height: 16px; margin-right: 8px; } .follow-text { display: flex; align-items: center; transition: 0.3s; } .follow-me:hover .follow-text { transform: translateY(100%); } .follow-me:hover .developer { top: 0; } .developer { position: absolute; color: #fff; left: 0; top: -100%; display: flex; transition: 0.3s; padding: 0 20px; align-items: center; background-color: #272a3a; width: 100%; height: 100%; } .developer img { border-radius: 50%; width: 26px; height: 26px; object-fit: cover; margin-right: 10px; } .search-bar { height: 60px; background-color: #151728; z-index: 3; position: relative; } .search-bar input { height: 100%; width: 100%; display: block; background-color: transparent; border: none; padding: 0 54px; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='512' height='512'%3e%3cpath d='M508.9 478.7L360 330a201.6 201.6 0 0045.2-127.3C405.3 90.9 314.4 0 202.7 0S0 91 0 202.7s91 202.6 202.7 202.6c48.2 0 92.4-17 127.3-45.2L478.7 509c4.2 4.1 11 4.1 15 0l15.2-15.1c4.1-4.2 4.1-11 0-15zm-306.2-116c-88.3 0-160-71.8-160-160s71.7-160 160-160 160 71.7 160 160-71.8 160-160 160z' data-original='%23000000' class='active-path' data-old_color='%23000000' fill='%235C5D71'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-size: 16px; background-position: 25px 50%; color: #fff; font-family: "Source Sans Pro", sans-serif; font-weight: 600; } .search-bar input::placeholder { color: #5c5d71; } .main-container { padding: 20px; flex-grow: 1; overflow: auto; background-color: #24273b; } .profile { position: relative; height: 40vh; min-height: 250px; max-height: 350px; z-index: 1; } .profile-cover { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 4px; } .profile:before { content: ""; width: 100%; height: 100%; position: absolute; z-index: -1; left: 0; top: 0; background-image: url("https://images.unsplash.com/photo-1508247967583-7d982ea01526?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2250&q=80"); background-repeat: no-repeat; background-size: cover; background-position: center; filter: blur(50px); opacity: 0.7; } .profile-menu { position: absolute; bottom: 0; padding-left: 200px; background: #151728; width: 100%; display: flex; border-radius: 0 0 4px 4px; } .profile-menu-link { padding: 20px 16px; color: #5c5e6e; transition: 0.3s; cursor: pointer; } .profile-menu-link.active, .profile-menu-link:hover { color: #fff; background-color: #1b1d2e; border-bottom: 3px solid #1488fa; } .profile-avatar { position: absolute; align-items: center; display: flex; z-index: 1; bottom: 16px; left: 24px; } .profile-img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 3px solid #151728; } .profile-name { margin-left: 24px; margin-bottom: 24px; font-size: 22px; color: #fff; font-weight: 600; font-family: "DM Sans", sans-serif; } .timeline { display: flex; padding-top: 20px; position: relative; z-index: 2; } .timeline-left { width: 310px; flex-shrink: 0; } .timeline-right { flex-grow: 1; padding-left: 20px; } @media screen and (max-width: 768px) { .timeline { flex-wrap: wrap; flex-direction: column-reverse; } .timeline-right { padding-left: 0; margin-bottom: 20px; } .timeline-left { width: 100%; } } .box { background-color: #151728; border-radius: 4px; } .intro { padding: 20px; } .intro-title { font-family: "DM Sans", sans-serif; color: #5c5e6e; font-weight: 600; font-size: 18px; display: flex; align-items: center; margin-bottom: 20px; } .intro-menu { background-color: #8f98a9; box-shadow: -8px 0 0 0 #8f98a9, 8px 0 0 0 #8f98a9; width: 5px; height: 5px; border: 0; padding: 0; border-radius: 50%; margin-left: auto; margin-right: 8px; } .info { font-size: 15px; } .info-item { display: flex; color: #c3c5d5; } .info-item + .info-item { margin-top: 14px; } .info-item a { margin-left: 6px; color: #1771d6; text-decoration: none; } .info-item svg { width: 16px; margin-right: 10px; } .event { position: relative; margin-top: 20px; padding: 10px; } .event-wrapper { position: relative; } .event-img { max-width: 100%; display: block; padding-bottom: 12px; } .event-date { position: absolute; left: 20px; top: 15px; } .event-month { background-color: #1687fa; padding: 7px 20px; font-weight: 600; font-family: "DM Sans", sans-serif; color: #fff; text-align: center; border-radius: 4px 4px 0 0; } .event-day { width: 100%; backdrop-filter: blur(4px); color: #fff; font-size: 22px; font-weight: 600; font-family: "DM Sans", sans-serif; background-color: rgba(0, 0, 0, 0.4); padding: 6px 0; text-align: center; } .event-title { color: #c3c5d5; margin-bottom: 5px; font-family: "DM Sans", sans-serif; font-weight: 600; padding: 0 14px; } .event-subtitle { color: #5c5e6e; font-family: "DM Sans", sans-serif; font-size: 13px; font-weight: 500; padding: 0 14px; } .pages { margin-top: 20px; padding: 20px; } .user { display: flex; align-items: center; cursor: pointer; } .user + .user { margin-top: 18px; } .user-img { border-radius: 50%; width: 45px; height: 45px; margin-right: 15px; object-fit: cover; object-position: center; } .username { font-size: 15px; font-family: "DM Sans", sans-serif; } .status-menu { padding: 20px; display: flex; align-items: center; } .status-menu-item { text-decoration: none; color: #ccc8db; padding: 10px 14px; line-height: 0.7; font-family: "DM Sans", sans-serif; font-weight: 500; border-radius: 20px; } .status-menu-item.active, .status-menu-item:hover { background-color: #2e2e40; color: #fff; } .status-menu-item + .status-menu-item { margin-left: 10px; } @media screen and (max-width: 500px) { .status-menu { font-size: 14px; } .status-menu-item + .status-menu-item { margin-left: 0; } } .status-img { width: 50px; height: 50px; object-fit: cover; border-radius: 50%; margin-right: 20px; } .status-main { padding: 0 20px; display: flex; align-items: center; border-bottom: 1px solid #272a3a; padding-bottom: 20px; flex-wrap: wrap; } .status-textarea { flex-grow: 1; background-color: transparent; border: none; resize: none; margin-top: 15px; color: #fff; max-width: calc(100% - 70px); } .status-textarea::placeholder { color: #5c5d71; } .status-actions { display: flex; padding: 10px 20px; } .status-action { text-decoration: none; color: #ccc8db; margin-right: 20px; display: flex; align-items: center; } .status-action svg { width: 16px; flex-shrink: 0; margin-right: 8px; } @media screen and (max-width: 1320px) { .status-action { width: 16px; overflow: hidden; color: transparent; white-space: nowrap; } } .status-share { background-color: #1b86f9; border: none; color: #fff; border-radius: 4px; padding: 10px 20px; margin-left: auto; box-shadow: 0 0 20px #1b86f9; cursor: pointer; } .album { padding-top: 20px; margin-top: 20px; } .album .status-main { border: none; display: flex; } .album .intro-menu { margin-bottom: auto; margin-top: 5px; } .album-detail { width: calc(100% - 110px); } .album-title span { color: #1771d6; cursor: pointer; } .album-date { font-size: 15px; color: #595c6c; margin-top: 4px; } .album-content { padding: 0 20px 20px; } .album-photo { width: 100%; object-fit: cover; object-position: center; border-radius: 4px; margin-top: 10px; } .album-photos { display: flex; margin-top: 20px; max-height: 30vh; } .album-photos > .album-photo { width: 50%; } .album-right { width: 50%; margin-left: 10px; line-height: 0; display: flex; flex-direction: column; } .album-right .album-photo { height: calc(50% - 10px); } .album-actions { padding: 0 20px 20px; } .album-action { margin-right: 20px; text-decoration: none; color: #a2a4b4; display: inline-flex; align-items: center; font-weight: 600; } .album-action:hover { color: #fff; } .album-action svg { width: 16px; margin-right: 6px; } .account-button { border: 0; background: 0; color: #64677a; padding: 0; cursor: pointer; position: relative; } .account-button svg { width: 20px; } .account-button:not(.right-side-button) + .account-button:before { position: absolute; right: 0px; top: -2px; background-color: #1b86f8; width: 8px; height: 8px; border-radius: 50%; content: ""; border: 2px solid #151728; } .account-profile { width: 28px; height: 28px; border-radius: 50%; margin: 0 10px; } .account-user { display: inline-flex; align-items: center; color: #64677a; font-weight: 600; } .account-user span { font-size: 10px; font-weight: normal; } .account { height: 60px; display: flex; justify-content: space-evenly; align-items: center; position: sticky; top: 0; background-color: #151728; z-index: 3; flex-shrink: 0; } .stories { border-bottom: 1px solid #272a3a; } .stories .user-img { border: 2px solid #e2b96c; } .stories .album-date { font-family: "Source Sans Pro", sans-serif; } .user-status { background-color: #7fd222; width: 8px; height: 8px; border-radius: 50%; margin-left: auto; } .user-status.offline { background-color: #606a8d; } .user-status.idle { background-color: #dd1c20; } .contacts .username { display: flex; flex: 1; align-items: center; } .right-search svg { width: 16px; height: 16px; } .right-search { padding-right: 10px; display: flex; align-items: center; border-top: 1px solid #272a3a; position: sticky; bottom: 0; margin-top: auto; } .right-search input { padding-right: 10px; } .search-bar-svgs { color: #656679; display: flex; } .search-bar-svgs svg { margin-right: 16px; } .overlay { width: 100%; height: 100%; position: fixed; top: 0; left: 0; background-color: rgba(36, 39, 59, 0.8); opacity: 0; visibility: hidden; pointer-events: none; transition: 0.3s; } @media screen and (max-width: 1210px) { .overlay.active { z-index: 3; opacity: 1; visibility: visible; pointer-events: all; } } .right-side-button { position: absolute; right: 0; top: 0; height: 100%; border: 0; width: 52px; background-color: #1e2031; border-left: 1px solid #272a3a; color: #fff; display: none; cursor: pointer; } .right-side-button:before { content: ""; width: 10px; height: 10px; border-radius: 50%; position: absolute; background-color: #1b86f8; border: 2px solid #1e2031; top: 13px; right: 12px; } .right-side-button svg { width: 22px; } @media screen and (max-width: 1210px) { .right-side-button { display: block; } } .left-side-button { display: none; } @media screen and (max-width: 930px) { .left-side-button { display: flex; flex-shrink: 0; align-items: center; justify-content: center; position: relative; cursor: pointer; height: 60px; background-color: rgba(39, 42, 58, 0.5); border: 0; padding: 0; line-height: 0; color: #fff; border-bottom: 1px solid #272a3a; } .left-side-button svg { transition: 0.2s; width: 24px; } .left-side-button svg:last-child { position: absolute; left: 50%; transform: translate(100%, -50%); top: 50%; opacity: 0; } } @media screen and (max-width: 700px) { .profile-avatar { top: -25px; left: 50%; transform: translatex(-50%); align-items: center; flex-direction: column; justify-content: center; } .profile-img { height: 100px; width: 100px; } .profile-name { margin: 5px 0; } .profile-menu { padding-left: 0; width: 100%; overflow: auto; justify-content: center; } .profile-menu-link { padding: 16px; font-size: 15px; } } @media screen and (max-width: 480px) { .profile-menu-link:nth-last-child(1), .profile-menu-link:nth-last-child(2) { display: none; } } ::-webkit-scrollbar { width: 10px; border-radius: 10px; } /* Track */ ::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.01); } /* Handle */ ::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.11); border-radius: 10px; } /* Handle on hover */ ::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.1); } </style> </head> <body translate="no"> <div class="container" x-data="{ rightSide: false, leftSide: false }"> <div class="left-side" :class="{'active' : leftSide}"> <div class="left-side-button" @click="leftSide = !leftSide"> <svg viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"><line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="18" x2="21" y2="18"></line></svg> <svg stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24"> <path d="M19 12H5M12 19l-7-7 7-7" /> </svg> </div> <div class="logo">ULTRANET</div> <div class="side-wrapper"> <div class="side-title">MENU</div> <div class="side-menu"> <a href="#"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24"> <path d="M3 9l9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2z" /> <path d="M9 22V12h6v10" /> </svg> Home </a> <a href="#"> <svg stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24"> <path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"></path> <path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"></path> </svg> Latest News </a> <a href="#"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24"> <path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z" /> <circle cx="12" cy="10" r="3" /></svg> Explore </a> <a href="#"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24"> <path d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z" /> <path d="M14 2v6h6M16 13H8M16 17H8M10 9H8" /> </svg> Files </a> <a href="#"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> <rect x="3" y="3" width="18" height="18" rx="2" ry="2" /> <circle cx="8.5" cy="8.5" r="1.5" /> <path d="M21 15l-5-5L5 21" /> </svg> Galery </a> <a href="#"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> <rect x="3" y="4" width="18" height="18" rx="2" ry="2" /> <path d="M16 2v4M8 2v4M3 10h18" /> </svg> Events </a> </div> </div> <div class="side-wrapper"> <div class="side-title">YOUR FAVOURITE</div> <div class="side-menu"> <a href="#"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 472.11 472.11"> <path d="M260.07 216.11a63.94 63.94 0 00-28.26-53.1 55.95 55.95 0 00-43.74-90.9c-.8 0-1.6.1-2.4.12a56 56 0 10-107.2 0c-.8 0-1.6-.12-2.4-.12a55.95 55.95 0 00-43.75 90.9 64 64 0 000 106.2 55.95 55.95 0 0043.75 90.9h112a55.95 55.95 0 0043.74-90.9 63.94 63.94 0 0028.26-53.1z" fill="#6a9923" /> <path d="M193.8 178.51a8 8 0 00-11.32-.16l-42.41 41.03V104.1a8 8 0 00-16 0v56.7l-36.35-36.35a8 8 0 00-11.31 11.3l47.66 47.67V292.8l-34.35-34.34a8 8 0 00-11.31 11.3l45.66 45.67V464.1a8 8 0 0016 0V241.63l53.6-51.78a8 8 0 00.12-11.34z" fill="#618c20" /> <path d="M468.07 216.11a63.94 63.94 0 00-28.26-53.1 55.95 55.95 0 00-43.74-90.9c-.8 0-1.6.1-2.4.12a56 56 0 10-107.2 0c-.8 0-1.6-.12-2.4-.12a55.95 55.95 0 00-43.75 90.9 64 64 0 000 106.2 55.95 55.95 0 0043.75 90.9h112a55.95 55.95 0 0043.74-90.9 63.94 63.94 0 0028.26-53.1z" fill="#6a9923" /> <path d="M401.72 178.46a8 8 0 00-11.31 0l-42.34 42.34V104.11a8 8 0 00-16 0v56.7l-36.35-36.35a8 8 0 00-11.31 11.3l47.66 47.67V292.8l-34.35-34.34a8 8 0 00-11.31 11.3l45.66 45.67V464.1a8 8 0 0016 0V242.87c.6-.3 1.15-.66 1.65-1.1l52-52a8 8 0 000-11.31z" fill="#618c20" /> <path d="M364.07 216.11a63.94 63.94 0 00-28.26-53.1 55.95 55.95 0 00-43.74-90.9c-.8 0-1.6.1-2.4.12a56 56 0 10-107.2 0c-.8 0-1.6-.12-2.4-.12a55.95 55.95 0 00-43.75 90.9 64 64 0 000 106.2 55.95 55.95 0 0043.75 90.9h112a55.95 55.95 0 0043.74-90.9 63.94 63.94 0 0028.26-53.1z" fill="#88b337" /> <path d="M297.72 178.46a8 8 0 00-11.31 0l-42.34 42.34V104.11a8 8 0 00-16 0v56.7l-36.35-36.35a8 8 0 00-11.31 11.3l47.66 47.67V292.8l-34.35-34.34a8 8 0 00-11.31 11.3l45.66 45.67V464.1a8 8 0 0016 0V242.87c.6-.3 1.15-.66 1.65-1.1l52-52a8 8 0 000-11.31z" fill="#6a9923" /> <path d="M372.07 472.11h-272a8 8 0 010-16h272a8 8 0 010 16z" fill="#595959" /></svg> Foresto </a> <a href="#"> <svg viewBox="0 0 56 58" width="512" xmlns="http://www.w3.org/2000/svg"> <g fill="none" transform="translate(0 -1)"> <path d="M46.8 48.4a30.5 30.5 0 01-8.8-24l6.9-12C44.4 9.6 41.6 1 28 1A32 32 0 003.4 13.5a.2.2 0 00.2.4l2.5-.5a.5.5 0 01.4.8 14.2 14.2 0 00-3.3 4.3.2.2 0 00.3.4l2.5-.6a.5.5 0 01.6.6C5 22.5-.4 37.1.9 56.8a.5.5 0 00.9.2c2.2-3.3 5-6.2 8.4-8.3a.5.5 0 01.7.4c0 2.4.8 4.7 2.4 6.4a.5.5 0 001-.1 14 14 0 015.4-8h.5c1.7 1.2 3 3.8 3.6 5.8.5 1.8 1 3.6 1.1 5.4a.5.5 0 00.8.4c7-4 7.1-8.5 7.2-8.6a.5.5 0 01.9-.2c1.4 1.6 2.7 3.4 3.7 5.2a.5.5 0 001 0c.8-2 1.3-4.3 1.5-6.6l6.4.5a.5.5 0 00.4-1z" fill="#f9eab0" /> <path d="M44.5 49c-4.8-.4-4.3-.3-5.6-.6a.5.5 0 00-.5.5c-.2 2-.6 4-1.2 5.9-1-1.7-2.2-3.2-3.4-4.7a.5.5 0 00-.9.2v.1c-.7 4.4-5.4 7.5-7.2 8.5a.5.5 0 01-.8-.4c-.4-3.6-1.6-8.8-4.6-11a.5.5 0 00-.6 0 14 14 0 00-5.5 7.9c-1.3-1.8-2-4-2-6.2a.5.5 0 00-.6-.4l-.7.4a.5.5 0 00-.7-.4c-2.7 1.7-5 3.9-7 6.4a91.2 91.2 0 015-36.8.5.5 0 00-.4-.1l-1.2.3c-.1-.2-.4-.4-.6-.3l-.7.1c.8-1.5 1.8-3 3-4.2.4-.3 0-1-.4-.8l-1.2.2c0-.2-.3-.3-.5-.2l-.7.1c.4-.4 6.8-10.3 18.4-12.2a27 27 0 013.9-.3c12 0 14.5 8.7 15 11.3l-6.2 12a32.6 32.6 0 007.9 24c.2.3.2.6 0 .8z" fill="#f5efca" /> <path d="M27.8 1z" fill="#ecf0f1" /> <path d="M53 29c.1-1.8-.5-3.6-1.8-5-1.5-1.6-4.2-3-9.2-3-12 0-13 2-13 2s0-3.8 10-6.7c.5-.2.8-.6.8-1.1-.1-1 .2-2.1.9-2.9.2-.2.5-.3.8-.3 1.7 0 8 .4 10.5 3 3 3 5 7 1 14z" fill="#f0c419" /> <path d="M51.2 24c-4.5 5.2-3.8-1.8-19.2 1 0 0-3 0-3-2 0 0 1-2 13-2 5 0 7.7 1.4 9.2 3z" fill="#f29c1f" /> <path d="M32 12.3a3 3 0 11-3.5-2.3z" fill="#f0c419" /> <path d="M44 18a1 1 0 010-2c.5-.1 1-.3 1.3-.7a1 1 0 011.4 1.4C46 17.4 45 18 44 18z" fill="#e57e25" /> <circle cx="29" cy="13" fill="#393f4a" r="2" /> <path d="M34.6 14c-2 0-3.8-.9-5.2-2.2a4 4 0 00-3.4-1.1c-2 .4-3.1 2.7-3.1 2.8a1 1 0 01-1.8-1s1.6-3.1 4.5-3.8c1.8-.3 3.6.3 5 1.5 2.1 1.8 3.6 2 4.4 1.9.4-.1.8-.3 1.1-.6a1 1 0 011.7 1c-.8 1-2 1.6-3.2 1.6z" fill="#7f6e5d" /> </g> </svg> Birds </a> <a href="#"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"> <path d="M339.4 346.5a636.5 636.5 0 00-46.7-140.2 8.4 8.4 0 00-7.6-4.8h-21a8.4 8.4 0 00-8 11 662.9 662.9 0 0129 289.7 8.4 8.4 0 008.4 9.5h50.3c4.4 0 8.1-3.6 8.3-8 2.3-52.8-2-105.6-12.7-157.2z" fill="#ff9940" /> <g fill="#f5760f"> <path d="M300.7 508.8a8.4 8.4 0 01-2-6.6 662.7 662.7 0 00-29-289.7 8.4 8.4 0 018-11H264a8.4 8.4 0 00-8 11 662.9 662.9 0 0129 289.7 8.4 8.4 0 008.4 9.5H307c-2.4 0-4.7-1-6.3-2.9z" /> <path d="M331.2 312.2l-48.8 9.1c.9 5.6 1.7 11.1 2.4 16.7l50.6-9.5c-1.3-5.5-2.7-10.9-4.2-16.3zM288 369.2l1.1 16.7h57.2a641 641 0 00-2.6-16.7H288z" /> </g> <path d="M499.7 157.8A125.9 125.9 0 00276.9 212a8.4 8.4 0 0010.2 9.7L495 171a8.5 8.5 0 004.6-13.3z" fill="#a4d64d" /> <path d="M351.1 2.9a8.4 8.4 0 00-7.5-2.8 125.9 125.9 0 00-93 185c7.4 13.4 17 25.2 28.6 35.1a8.4 8.4 0 0013.5-4l60.1-205.5c.8-2.7.2-5.6-1.7-7.8z" fill="#8ec42f" /> <g fill="#a4d64d"> <path d="M327 199.3c-15.3-.3-30.3 2.1-44.7 7.2a8.4 8.4 0 00-3.3 13.7l148 154.7a8.5 8.5 0 0013.8-2.6 125.9 125.9 0 00-113.7-173z" /> <path d="M293.3 212.1a125.9 125.9 0 00-222.8-54.3A8.5 8.5 0 0075 171l208 50.7a8.4 8.4 0 0010.2-9.7z" /> </g> <path d="M293.2 212.5c-.6-2.8-2.6-5-5.3-6a125.9 125.9 0 00-158.5 165.8c2.2 5.5 9.7 7 13.8 2.6l148-154.7c2-2 2.7-5 2-7.7z" fill="#8ec42f" /> <path d="M491.7 496.5c-71.3-45-153.8-68.7-238.6-68.7S86 451.6 14.5 496.5A8.4 8.4 0 0019 512h468.3a8.4 8.4 0 004.4-15.5z" fill="#ffd042" /> <path d="M35.5 506c-1-3.6.4-7.5 3.6-9.5A447 447 0 01265.4 428l-12.3-.2a447.2 447.2 0 00-238.6 68.7A8.4 8.4 0 0019 512h24.6c-3.8 0-7-2.5-8-6z" fill="#ffc412" /> <circle cx="290.8" cy="218.3" r="29.3" fill="#a4a09a" /> <path d="M299.2 239.2a29.3 29.3 0 01-24.5-45.4 29.3 29.3 0 1040.7 40.6c-4.7 3-10.2 4.8-16.2 4.8z" fill="#928d86" /> <circle cx="316" cy="256" r="29.3" fill="#a4a09a" /> <path d="M324.4 281.1a29.3 29.3 0 01-17.1-53.1 29.4 29.4 0 1025.8 51.8c-2.8.9-5.7 1.3-8.7 1.3z" fill="#928d86" /> <circle cx="261.5" cy="256" r="29.3" fill="#a4a09a" /> <path d="M269.9 277a29.3 29.3 0 01-24.5-45.5A29.3 29.3 0 10286 272c-4.6 3-10.2 4.9-16.1 4.9z" fill="#928d86" /> <g fill="#ffb266"> <circle cx="274.1" cy="473.9" r="8.4" /> <circle cx="378.9" cy="482.3" r="8.4" /> <circle cx="328.6" cy="465.6" r="8.4" /> <circle cx="223.8" cy="457.2" r="8.4" /> <circle cx="202.8" cy="482.3" r="8.4" /> <circle cx="144.2" cy="482.3" r="8.4" /> </g> </svg> Nature </a> <a href="#"><svg viewBox="0 0 511.4 511.4" width="512" xmlns="http://www.w3.org/2000/svg"> <path d="M102.8 145c-47.5 0-86 38.6-86 86v29.3h168.6V145z" fill="#0dca71" /> <path d="M432.9 377.8l-43-70.8-95.1 60.2 84 144.2 25.2-15.3a86.2 86.2 0 0028.9-118.3z" fill="#0cba68" /> <path d="M121.6 307l-43 70.8a86.2 86.2 0 0028.8 118.3l25.3 15.3 84-144.2z" fill="#0dca71" /> <path d="M408.6 145H326v115.3h168.7v-29.2c0-47.5-38.6-86.1-86-86.1z" fill="#0cba68" /> <path d="M345.9 90.2A90.3 90.3 0 00255.7 0L245 85.3l10.7 82.1H346V90.2z" fill="#0cba68" /> <path d="M255.7 0a90.3 90.3 0 00-90.2 90.2v77.2h90.2z" fill="#0dca71" /> <g> <path d="M420 269.3c0-62.4-31.7-117.1-79.2-147.4l-85 147.4z" fill="#ebb65b" /> <path d="M255.7 269.3L340.8 122c-24.8-15.8-54-25-85-25L245 160z" fill="#fdd278" /> <path d="M91.4 269.3h164.3l-85-147.4a174.3 174.3 0 00-79.3 147.4z" fill="#ffc663" /> <path d="M255.7 97c-31.1 0-60.2 9.1-85 25l85 147.3z" fill="#ffe7ab" /> <path d="M255.7 269.3L245 384l10.7 57.7c31.1 0 60.3-9.2 85.1-25z" fill="#ebb65b" /> <path d="M255.7 269.3l85.1 147.4c47.5-30.2 79.2-85 79.2-147.4z" fill="#fdd278" /> <path d="M170.6 416.7c24.9 15.8 54 25 85.1 25V269.3z" fill="#ffc663" /> <path d="M255.7 269.3H91.4c0 62.4 31.8 117.2 79.2 147.4z" fill="#ffe7ab" /> <path d="M337 269.3L296.4 199h-40.7L245 266.7l10.7 73h40.7z" fill="#ffe5a5" /> <path d="M215 198.9l-40.6 70.4 40.7 70.5h40.6V198.9z" fill="#fffaed" /> </g> </svg> Animals </a> <a href=&qu.........完整代码请登录后点击上方下载按钮下载查看
网友评论0