Browse Source

fix(home): 首页金刚区样式

EvilDragon 6 months ago
parent
commit
ceb021d88a

File diff suppressed because it is too large
+ 16 - 0
src/images/iconly-glass-star.svg


+ 51 - 21
src/pages/index/index.vue

@@ -22,16 +22,34 @@ defineOptions({
   name: 'Home',
 })
 const items = [
-  { id: 1, title: '设计游学', desc: '游学项目', path: '/pages/study-tour/index', icon: '' },
-  { id: 2, title: '线下活动', desc: '骑行俱乐部', path: '/pages/offine-activity/index', icon: '' },
+  {
+    id: 1,
+    title: '设计游学',
+    desc: '游学项目',
+    path: '/pages/study-tour/index',
+    icon: '/static/svgs/iconly-glass-edit.svg',
+  },
+  {
+    id: 2,
+    title: '线下活动',
+    desc: '骑行俱乐部',
+    path: '/pages/offine-activity/index',
+    icon: '/static/svgs/iconly-glass-star.svg',
+  },
   {
     id: 3,
     title: '设计传播',
     desc: '运营推广',
     path: '/pages/spread/index',
-    icon: '',
+    icon: '/static/svgs/iconly-glass-play.svg',
+  },
+  {
+    id: 4,
+    title: '品质商城',
+    desc: '所需周边',
+    path: '/mall/index',
+    icon: '/static/svgs/message.svg',
   },
-  { id: 4, title: '品质商城', desc: '所需周边', path: '/mall/index', icon: '' },
 ]
 // 测试 uni API 自动引入
 const { data } = useRequest(async () => ({ code: 0, msg: '', data: {} }) as IResData<any>, {
@@ -56,15 +74,12 @@ const { data } = useRequest(async () => ({ code: 0, msg: '', data: {} }) as IRes
     dynamics: [
       {
         author: {
-          avatar:
-            'https://images.pexels.com/users/avatars/1127278/ekrulila-867.png?auto=compress&fit=crop&h=50&w=50&dpr=2',
+          avatar: 'https://via.placeholder.com/35x35',
           nickname: '苏小萌',
           level: '0',
         },
         content: '用心做好设计,为客户创造美好家居环境',
-        images: [
-          'https://images.pexels.com/photos/27438918/pexels-photo-27438918.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2',
-        ],
+        images: ['https://via.placeholder.com/165x220'],
         tags: ['意大利游学设计班'],
         shares: 0,
         comments: 0,
@@ -73,15 +88,12 @@ const { data } = useRequest(async () => ({ code: 0, msg: '', data: {} }) as IRes
       },
       {
         author: {
-          avatar:
-            'https://images.pexels.com/users/avatars/1127278/ekrulila-867.png?auto=compress&fit=crop&h=50&w=50&dpr=2',
+          avatar: 'https://via.placeholder.com/35x35',
           nickname: '苏小萌',
           level: '0',
         },
         content: '用心做好设计,为客户创造美好家居环境',
-        images: [
-          'https://images.pexels.com/photos/27351166/pexels-photo-27351166.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2',
-        ],
+        images: ['https://via.placeholder.com/220x165'],
         tags: ['意大利游学设计班'],
         shares: 0,
         comments: 0,
@@ -90,15 +102,15 @@ const { data } = useRequest(async () => ({ code: 0, msg: '', data: {} }) as IRes
       },
       {
         author: {
-          avatar:
-            'https://images.pexels.com/users/avatars/1127278/ekrulila-867.png?auto=compress&fit=crop&h=50&w=50&dpr=2',
+          avatar: 'https://via.placeholder.com/35x35',
           nickname: '苏小萌',
           level: '0',
         },
         content: '用心做好设计,为客户创造美好家居环境',
         images: [
-          'https://images.pexels.com/photos/27438918/pexels-photo-27438918.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2',
-          'https://images.pexels.com/photos/27351166/pexels-photo-27351166.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2',
+          'https://via.placeholder.com/104x104',
+          'https://via.placeholder.com/104x204',
+          'https://via.placeholder.com/204x104',
         ],
         tags: ['意大利游学设计班'],
         shares: 0,
@@ -116,18 +128,36 @@ onLoad(() => {})
 
 <template>
   <view class="">
-    <view class="bg-black w-full pos-relative aspect-[1.26/1]"></view>
+    <view class="bg-black w-full pos-relative aspect-[1.26/1]">
+      <wd-img custom-class="w-[375px] h-[297px]" src="https://via.placeholder.com/375x297" />
+      <div
+        class="w-[375px] h-[90px] bg-gradient-to-t from-black to-black/0 absolute left-0 bottom-0 w-full flex items-center"
+      >
+        <!-- <div class="w-[82px] h-[33px] rounded-[60px] border border-white"></div> -->
+        <view class="mx-7">
+          <wd-button plain custom-class="bg-transparent! border-white! text-white!">
+            02:30
+          </wd-button>
+        </view>
+      </div>
+    </view>
     <view class="bg-[#f6f6f6] relative bottom-4 rounded-t-2xl py-1">
       <view class="w-full px-3.5 box-border grid grid-cols-2 grid-gap-4 my-6">
         <template v-for="it of items" :key="it.id">
           <view class="">
             <Card>
-              <view class="flex">
+              <view class="flex justify-between">
                 <view class="text-[rgba(0,0,0,0.85)] text-4 font-400 line-height-2.5">
                   <view class="my-0.75">{{ it.title }}</view>
                   <view class="text-[rgba(0,0,0,0.45)] text-3.5 my-2.5">{{ it.desc }}</view>
                 </view>
-                <view></view>
+                <view class="">
+                  <wd-img
+                    custom-class="w-10.5 h-10.5 mt-3.5 vertical-bottom"
+                    :src="it.icon"
+                    mode="scaleToFill"
+                  ></wd-img>
+                </view>
               </view>
             </Card>
           </view>

File diff suppressed because it is too large
+ 17 - 0
src/static/svgs/iconly-glass-edit.svg


+ 71 - 0
src/static/svgs/iconly-glass-play.svg

@@ -0,0 +1,71 @@
+<svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g id="Iconly/Glass/Play">
+<g id="Play">
+<circle id="Ellipse 74" cx="21" cy="21" r="21" fill="#FFF5FC"/>
+<g id="Bg">
+<g id="Fill 1" filter="url(#filter0_b_1_155)">
+<path d="M30.5252 19.2626C30.5252 25.483 25.483 30.5252 19.2626 30.5252C13.0423 30.5252 8 25.483 8 19.2626C8 13.0434 13.0423 8 19.2626 8C25.483 8 30.5252 13.0434 30.5252 19.2626Z" fill="url(#paint0_linear_1_155)"/>
+</g>
+<g id="Fill 2" opacity="0.5" filter="url(#filter1_f_1_155)">
+<path d="M26.4798 19.252C26.4798 23.2127 23.2692 26.4233 19.3085 26.4233C15.3478 26.4233 12.1372 23.2127 12.1372 19.252C12.1372 15.292 15.3478 12.0807 19.3085 12.0807C23.2692 12.0807 26.4798 15.292 26.4798 19.252Z" fill="#F41E59"/>
+</g>
+</g>
+<g id="Icon">
+<g id="Fill 1_2" filter="url(#filter2_b_1_155)">
+<path d="M34.9383 23.6757C34.9383 29.896 29.896 34.9383 23.6757 34.9383C17.4554 34.9383 12.4131 29.896 12.4131 23.6757C12.4131 17.4565 17.4554 12.4131 23.6757 12.4131C29.896 12.4131 34.9383 17.4565 34.9383 23.6757Z" fill="#FF749F" fill-opacity="0.35"/>
+<path d="M23.6757 35.0762C29.9722 35.0762 35.0762 29.9722 35.0762 23.6757C35.0762 17.3803 29.9722 12.2752 23.6757 12.2752C17.3792 12.2752 12.2752 17.3803 12.2752 23.6757C12.2752 29.9722 17.3792 35.0762 23.6757 35.0762Z" stroke="url(#paint1_linear_1_155)" stroke-width="0.275819" stroke-linecap="round" stroke-linejoin="round"/>
+</g>
+<g id="Fill 4" filter="url(#filter3_bd_1_155)">
+<path d="M28.1807 23.6814C28.1807 23.966 28.0911 24.2517 27.9119 24.4806C27.8783 24.5254 27.7216 24.7105 27.5984 24.8309L27.5312 24.8966C26.5905 25.8939 24.25 27.3938 23.0629 27.8744C23.0629 27.8853 22.3574 28.1711 22.0215 28.1809H21.9767C21.4615 28.1809 20.98 27.8974 20.7336 27.4376C20.5992 27.1847 20.4761 26.4512 20.4649 26.4413C20.3641 25.7833 20.2969 24.7761 20.2969 23.6704C20.2969 22.511 20.3641 21.4589 20.4873 20.813C20.4873 20.8021 20.6104 20.2109 20.6888 20.0138C20.812 19.7303 21.036 19.4883 21.3159 19.3351C21.5399 19.2267 21.7751 19.1708 22.0215 19.1708C22.279 19.1829 22.7606 19.346 22.9509 19.4226C24.2052 19.9043 26.6017 21.4808 27.52 22.4442C27.6768 22.5975 27.8447 22.7847 27.8895 22.8274C28.0799 23.0683 28.1807 23.3639 28.1807 23.6814Z" fill="url(#paint2_linear_1_155)"/>
+<path d="M27.8685 24.4465L27.8685 24.4465C28.0395 24.2282 28.1255 23.9547 28.1255 23.6814C28.1255 23.3771 28.0295 23.0948 27.8485 22.8645C27.8296 22.8461 27.7949 22.8091 27.7521 22.7635C27.7377 22.7482 27.7225 22.732 27.7066 22.7151C27.6395 22.6439 27.559 22.5595 27.4814 22.4837L27.48 22.4823L27.4801 22.4823C27.0253 22.0052 26.2008 21.3729 25.3311 20.7988C24.4615 20.2248 23.5527 19.7128 22.9312 19.4741L22.9303 19.4738L22.9303 19.4738C22.8369 19.4362 22.6706 19.3768 22.4958 19.3254C22.3204 19.2739 22.1418 19.2319 22.0202 19.226C21.7834 19.2262 21.5572 19.2798 21.3412 19.3841C21.0724 19.5316 20.8578 19.7639 20.7398 20.035C20.7024 20.1293 20.6531 20.3215 20.6124 20.4958C20.5922 20.5823 20.5744 20.663 20.5617 20.7227C20.5553 20.7526 20.5503 20.7771 20.5468 20.7944L20.5429 20.8144L20.5424 20.8172V20.8235L20.5414 20.8234C20.4192 21.4641 20.352 22.5121 20.352 23.6704C20.352 24.7707 20.4187 25.7719 20.5184 26.4263C20.5187 26.4285 20.519 26.4307 20.5194 26.433L27.8685 24.4465ZM27.8685 24.4465L27.8678 24.4475C27.8359 24.49 27.681 24.6729 27.5598 24.7914L27.4926 24.8571L27.4926 24.8571L27.4911 24.8587C27.0252 25.3526 26.2093 25.9741 25.3591 26.5332C24.5093 27.0921 23.6309 27.5849 23.0422 27.8233L23.0078 27.8372V27.8407C22.9888 27.8491 22.9613 27.8606 22.927 27.8743C22.8565 27.9024 22.7587 27.9391 22.6505 27.9758C22.4319 28.0499 22.1793 28.1209 22.0206 28.1258M27.8685 24.4465L22.0206 28.1258M22.0206 28.1258H21.9767C21.4817 28.1258 21.019 27.8533 20.7823 27.4116L22.0206 28.1258Z" stroke="url(#paint3_linear_1_155)" stroke-width="0.110328"/>
+</g>
+</g>
+</g>
+</g>
+<defs>
+<filter id="filter0_b_1_155" x="4.41435" y="4.41435" width="29.6967" height="29.6965" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImageFix" stdDeviation="1.79282"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_1_155"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_backgroundBlur_1_155" result="shape"/>
+</filter>
+<filter id="filter1_f_1_155" x="7.44828" y="7.39176" width="23.7206" height="23.7204" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
+<feGaussianBlur stdDeviation="2.34446" result="effect1_foregroundBlur_1_155"/>
+</filter>
+<filter id="filter2_b_1_155" x="5.51755" y="5.51761" width="36.3165" height="36.3162" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImageFix" stdDeviation="3.30983"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_1_155"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_backgroundBlur_1_155" result="shape"/>
+</filter>
+<filter id="filter3_bd_1_155" x="16.1596" y="15.0336" width="16.1584" height="17.2846" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImageFix" stdDeviation="2.06864"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_1_155"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dx="1.3791" dy="1.3791"/>
+<feGaussianBlur stdDeviation="1.3791"/>
+<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.321569 0 0 0 0 0.54902 0 0 0 0.5 0"/>
+<feBlend mode="normal" in2="effect1_backgroundBlur_1_155" result="effect2_dropShadow_1_155"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_1_155" result="shape"/>
+</filter>
+<linearGradient id="paint0_linear_1_155" x1="20.9209" y1="20.771" x2="1.12823" y2="30.3946" gradientUnits="userSpaceOnUse">
+<stop stop-color="#FF759F"/>
+<stop offset="1" stop-color="#FF196E"/>
+</linearGradient>
+<linearGradient id="paint1_linear_1_155" x1="15.9987" y1="15.0373" x2="30.3674" y2="32.8333" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.25"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint2_linear_1_155" x1="27.6217" y1="20.7979" x2="18.8377" y2="21.0485" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0.2"/>
+</linearGradient>
+<linearGradient id="paint3_linear_1_155" x1="21.5519" y1="20.2205" x2="27.4124" y2="26.5716" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.25"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+</defs>
+</svg>

File diff suppressed because it is too large
+ 16 - 0
src/static/svgs/iconly-glass-star.svg


+ 66 - 0
src/static/svgs/message.svg

@@ -0,0 +1,66 @@
+<svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g id="Message">
+<circle id="Ellipse 73" cx="21" cy="21" r="21" fill="#FFF9F5"/>
+<g id="Bg">
+<path id="Message_2" d="M24.2917 9.83024C23.1183 9.15117 21.7226 8.97149 20.4156 9.32171L10.7868 11.9017C8.05676 12.6332 6.44521 15.426 7.17385 18.1453L9.23703 25.8452C9.96567 28.5645 12.7674 30.1747 15.4877 29.4458L25.1165 26.8658C27.8368 26.1369 29.459 23.3413 28.7304 20.6219L26.6672 12.922C26.3173 11.616 25.4654 10.5071 24.2917 9.83024Z" fill="url(#paint0_linear_1_164)"/>
+<g id="Message_3" filter="url(#filter0_f_1_164)">
+<path d="M21.6247 12.3627C20.8844 11.9087 20.0088 11.7798 19.1932 11.9984L13.1842 13.6085C11.4805 14.065 10.494 15.8794 10.9724 17.6648L12.327 22.7203C12.8054 24.5058 14.573 25.5822 16.2707 25.1273L22.2796 23.5172C23.9773 23.0623 24.9705 21.2461 24.4921 19.4607L23.1375 14.4052C22.9077 13.5477 22.3652 12.8151 21.6247 12.3627Z" fill="#EC7511"/>
+</g>
+</g>
+<g id="Icon">
+<g id="Path" filter="url(#filter1_b_1_164)">
+<mask id="path-4-outside-1_1_164" maskUnits="userSpaceOnUse" x="11.4746" y="12.2405" width="24" height="22" fill="black">
+<rect fill="white" x="11.4746" y="12.2405" width="24" height="22"/>
+<path d="M33.3318 14.9085C32.263 13.8375 30.8101 13.2405 29.2998 13.2405H18.1735C15.0188 13.2405 12.4746 15.7859 12.4746 18.9282V27.8256C12.4746 30.9679 15.0301 33.5132 18.1735 33.5132H29.2998C32.4432 33.5132 34.9998 30.9679 34.9998 27.8256V18.9282C34.9998 17.419 34.4018 15.9774 33.3318 14.9085Z"/>
+</mask>
+<path d="M33.3318 14.9085C32.263 13.8375 30.8101 13.2405 29.2998 13.2405H18.1735C15.0188 13.2405 12.4746 15.7859 12.4746 18.9282V27.8256C12.4746 30.9679 15.0301 33.5132 18.1735 33.5132H29.2998C32.4432 33.5132 34.9998 30.9679 34.9998 27.8256V18.9282C34.9998 17.419 34.4018 15.9774 33.3318 14.9085Z" fill="#FFCBB9" fill-opacity="0.35"/>
+<path d="M33.1366 15.1034C33.2442 15.2112 33.4188 15.2114 33.5267 15.1038C33.6345 14.9962 33.6347 14.8215 33.5271 14.7137L33.1366 15.1034ZM33.5268 14.7134C33.419 14.6057 33.2444 14.6058 33.1367 14.7136C33.029 14.8214 33.0291 14.996 33.1369 15.1037L33.5268 14.7134ZM33.5271 14.7137C32.4061 13.5903 30.8827 12.9647 29.2998 12.9647V13.5164C30.7375 13.5164 32.12 14.0846 33.1366 15.1034L33.5271 14.7137ZM29.2998 12.9647H18.1735V13.5164H29.2998V12.9647ZM18.1735 12.9647C14.8668 12.9647 12.1988 15.6332 12.1988 18.9282H12.7504C12.7504 15.9385 15.1708 13.5164 18.1735 13.5164V12.9647ZM12.1988 18.9282V27.8256H12.7504V18.9282H12.1988ZM12.1988 27.8256C12.1988 31.1209 14.8784 33.7891 18.1735 33.7891V33.2374C15.1818 33.2374 12.7504 30.8149 12.7504 27.8256H12.1988ZM18.1735 33.7891H29.2998V33.2374H18.1735V33.7891ZM29.2998 33.7891C32.5948 33.7891 35.2757 31.121 35.2757 27.8256H34.724C34.724 30.8148 32.2916 33.2374 29.2998 33.2374V33.7891ZM35.2757 27.8256V18.9282H34.724V27.8256H35.2757ZM35.2757 18.9282C35.2757 17.3456 34.6484 15.8339 33.5268 14.7134L33.1369 15.1037C34.1552 16.1209 34.724 17.4923 34.724 18.9282H35.2757Z" fill="url(#paint1_linear_1_164)" mask="url(#path-4-outside-1_1_164)"/>
+</g>
+</g>
+<g id="Ellipse 72 (Stroke)" filter="url(#filter2_bd_1_164)">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M18.4738 17.6536C18.8927 17.6536 19.2323 17.9932 19.2323 18.4121C19.2323 20.4884 21.1997 22.3425 23.8523 22.3425C26.5049 22.3425 28.4723 20.4884 28.4723 18.4121C28.4723 17.9932 28.8119 17.6536 29.2308 17.6536C29.6497 17.6536 29.9893 17.9932 29.9893 18.4121C29.9893 21.515 27.1406 23.8596 23.8523 23.8596C20.564 23.8596 17.7153 21.515 17.7153 18.4121C17.7153 17.9932 18.0549 17.6536 18.4738 17.6536Z" fill="url(#paint2_linear_1_164)" shape-rendering="crispEdges"/>
+<path d="M18.4738 17.6812C18.8775 17.6812 19.2048 18.0085 19.2048 18.4121C19.2048 20.5069 21.1879 22.3701 23.8523 22.3701C26.5167 22.3701 28.4999 20.5069 28.4999 18.4121C28.4999 18.0085 28.8271 17.6812 29.2308 17.6812C29.6345 17.6812 29.9617 18.0085 29.9617 18.4121C29.9617 21.4963 27.1292 23.832 23.8523 23.832C20.5754 23.832 17.7429 21.4963 17.7429 18.4121C17.7429 18.0085 18.0702 17.6812 18.4738 17.6812Z" stroke="url(#paint3_linear_1_164)" stroke-opacity="0.5" stroke-width="0.0551638" stroke-linecap="round" shape-rendering="crispEdges"/>
+</g>
+</g>
+<defs>
+<filter id="filter0_f_1_164" x="6.43846" y="7.48149" width="22.587" height="22.1631" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
+<feGaussianBlur stdDeviation="2.20655" result="effect1_foregroundBlur_1_164"/>
+</filter>
+<filter id="filter1_b_1_164" x="8.06144" y="8.82744" width="31.3517" height="29.0989" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImageFix" stdDeviation="2.06864"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_1_164"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_backgroundBlur_1_164" result="shape"/>
+</filter>
+<filter id="filter2_bd_1_164" x="13.578" y="13.5163" width="20.5485" height="14.4805" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImageFix" stdDeviation="2.06864"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_1_164"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dx="1.3791" dy="1.3791"/>
+<feGaussianBlur stdDeviation="1.3791"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.580392 0 0 0 0 0.247059 0 0 0 0.5 0"/>
+<feBlend mode="normal" in2="effect1_backgroundBlur_1_164" result="effect2_dropShadow_1_164"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_1_164" result="shape"/>
+</filter>
+<linearGradient id="paint0_linear_1_164" x1="19.702" y1="20.1739" x2="5.68173" y2="33.423" gradientUnits="userSpaceOnUse">
+<stop stop-color="#FFB37F"/>
+<stop offset="1" stop-color="#FF7B0D"/>
+</linearGradient>
+<linearGradient id="paint1_linear_1_164" x1="16.0603" y1="15.6023" x2="28.6423" y2="32.917" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.25"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint2_linear_1_164" x1="30.0582" y1="18.2742" x2="10.8888" y2="22.5494" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0.2"/>
+</linearGradient>
+<linearGradient id="paint3_linear_1_164" x1="31.2994" y1="19.5154" x2="15.5777" y2="19.6533" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+</defs>
+</svg>

Some files were not shown because too many files changed in this diff