提交 fb153628 作者: 方治民
......@@ -91,7 +91,7 @@
icon: '/static/images/qudao/hema.png',
iconLeft: '/static/images/qudao/hema-left.png',
backgroundColor: '#DBF8FF',
iconColor: '#252772',
iconColor: '252772',
textColor: '#282A74',
link: '/pages/chanxiao/hema/hema',
},
......@@ -100,7 +100,7 @@
icon: '/static/images/qudao/qiandama.png',
iconLeft: '/static/images/qudao/qiandama-left.png',
backgroundColor: '#FFE8E8',
iconColor: '#FE0000',
iconColor: 'FE0000',
textColor: '#540000',
link: '/pages/chanxiao/qiandama/qiandama',
},
......@@ -109,7 +109,7 @@
icon: '/static/images/qudao/xiaoxiangchaoshi.png',
iconLeft: '/static/images/qudao/xiaoxiangchaoshi-left.png',
backgroundColor: '#E2FFDE',
iconColor: '#00C53B',
iconColor: '00C53B',
textColor: '#024A18',
link: '/pages/chanxiao/xiaoxiangchaoshi/xiaoxiangchaoshi',
},
......@@ -118,7 +118,7 @@
icon: '/static/images/qudao/hongxing.png',
iconLeft: '/static/images/qudao/hongxing-left.png',
backgroundColor: '#F5DADD',
iconColor: '#E70E30',
iconColor: 'E70E30',
textColor: '#570612',
link: '/pages/chanxiao/hongxing/hongxing',
},
......@@ -127,7 +127,7 @@
icon: '/static/images/qudao/muyizhu.png',
iconLeft: '/static/images/qudao/muyizhu-left.png',
backgroundColor: '#C0D1C7',
iconColor: '#383838',
iconColor: '383838',
textColor: '#223D27',
link: '/pages/chanxiao/zhusiling/zhusiling',
},
......@@ -136,7 +136,7 @@
icon: '/static/images/qudao/caixianyi.png',
iconLeft: '/static/images/qudao/caixianyi-left.png',
backgroundColor: '#C4F2DE',
iconColor: '#14AE68',
iconColor: '14AE68',
textColor: '#064529',
link: '/pages/chanxiao/caixianyi/caixianyi',
},
......@@ -291,7 +291,7 @@
<view class="channel-list-right">
<image
class="w-28 h-28 channel-imgRight"
src="/static/images/qudao/icon.svg"
:src="`/static/images/qudao/icon-${channel.iconColor}.svg`"
mode="scaleToFill"
/>
</view>
......
......@@ -112,7 +112,7 @@
<view class="text-25 mt-1 mb-2">{{ item.title }}</view>
<view class="flex justify-between text-25 color-#686868">
<view class="mr-1 flex-center">
<image class="mr-1 w-30 h-26" src="/static/images/news/views.png" />
<image class="mt-0.2 mr-1 w-30 h-26" src="/static/images/news/views.png" />
<view class="flex-center text-24 lh-24rpx">{{ item.viewCount }}</view>
</view>
<text>{{ dayjs(item.publishDate).format('MM-DD') }}</text>
......
......@@ -236,7 +236,7 @@
<view class="w-full h-130rpx pl-3 border-rd-lg bg-#fff flex justify-between items-center">
<view class="w-40% flex flex-row">
<image src="/static/images/codefun/shield.png" class="w-100 h-100" />
<view class="color-#FFAA1E text-50 line-height-loose">726</view>
<view class="color-#FFAA1E text-50 line-height-loose">{{ userStore.getUserInfo?.creditScore }}</view>
</view>
<view class="w-60%">
<view class="text-25">信用评级: 良好</view>
......
......@@ -120,11 +120,11 @@
@click="toNewsDetail(news)"
>
<view class="flex flex-col justify-between" :class="news.image ? 'w-70%' : 'w-full'">
<view class="text-28 color-#333333">{{ news.title }}</view>
<view class="ellipsis-multiline text-28 color-#333333">{{ news.title }}</view>
<view class="flex flex-row justify-between text-25 color-#686868">
<text>{{ news.publishDate }}</text>
<view class="mr-1 flex-center">
<image class="mr-1 w-30 h-26" src="/static/images/news/views.png" />
<image class="mt-0.5 mr-1 w-30 h-26" src="/static/images/news/views.png" />
<view class="flex-center text-24 lh-24rpx">{{ news.viewCount }}</view>
</view>
</view>
......@@ -171,4 +171,12 @@
color: #999;
font-size: 28rpx;
}
.ellipsis-multiline {
display: -webkit-box; /* 必须 */
-webkit-box-orient: vertical; /* 垂直排列 */
-webkit-line-clamp: 2; /* 限制显示3行 */
overflow: hidden; /* 隐藏超出内容 */
text-overflow: ellipsis; /* 可选,部分浏览器不生效 */
}
</style>
......@@ -22,6 +22,8 @@
getAgricultureClassList()
// 智能设备
getDeviceList()
// 获取农村
getFarmList()
})
// 下拉刷新
......@@ -60,6 +62,7 @@
pestRisk: '中等',
precipitation: '25mm',
},
hasFarm: false,
// 农业模型
agricultureModels: [
......@@ -263,6 +266,21 @@
})
}
function getFarmList() {
NongChangAPI.AllFarms().then((res) => {
if (res) {
pageData.hasFarm = JSON.stringify(res) != '{}'
pageData.farmInfo = res
}
})
}
function toAdd() {
Navigate.to('/pages/nongchang/create-nongchang-form').catch(() => {
Message.alert('跳转失败', '添加基地')
})
}
// 菜单点击事件
function onMenuItemClick(item: any) {
console.log('点击菜单项:', item)
......@@ -458,7 +476,10 @@
}
function toDetail(item: Recordable) {
Navigate.to(`/pages/nongchang/detail/index?id=${item.id}&name=${encodeURIComponent(item.name)}`)
// Navigate.to(`/pages/nongchang/detail/index?id=${item.id}&name=${encodeURIComponent(item.name)}`)
let id = Object.keys(item)[0]
let name = Object.values(item)[0]
Navigate.to(`/pages/nongchang/detail/index?id=${id}&name=${encodeURIComponent(name)}`)
}
onHide(() => {
......@@ -534,13 +555,39 @@
</view>
</view>
</view>
<view class="codefun-flex-col">
<view class="codefun-flex-col mt-4">
<view class="codefun-flex-row codefun-justify-between codefun-items-center">
<text class="font">我的农场</text>
<!-- <text class="font_6 text_17">全部</text> -->
</view>
<view class="codefun-flex-col mt-17">
<!-- -->
<view class="h-300rpx codefun-flex-col mr-3.5 mt-17 nongchang_box relative">
<image class="w-full h-full" src="/static/images/nongchang/mynongchang-1.png" />
<view
v-show="pageData.hasFarm"
class="w-240rpx h-80rpx flex-center border-rd-3xl absolute top-50% left-50% color-#ffffff"
style="
background-color: rgb(255 255 255 / 20%);
border: 1rpx solid #fff;
transform: translateY(-50%) translateX(-50%);
"
@click="toDetail(pageData.farmInfo)"
>
<image class="mr-1 w-40 h-40" src="/static/images/nongchang/eye-white.png" />
<text style="font-family: '思源黑体'; font-weight: 300">进入农场</text>
</view>
<view
v-show="!pageData.hasFarm"
class="w-240rpx h-80rpx flex-center border-rd-3xl absolute top-50% left-50% color-#ffffff"
style="
background-color: rgb(255 255 255 / 20%);
border: 1rpx solid #fff;
transform: translateY(-50%) translateX(-50%);
"
@click="toAdd"
>
<image class="mr-1 w-40 h-40" src="/static/images/nongchang/add.png" />
<text style="font-family: '思源黑体'; font-weight: 300">添加农场</text>
</view>
</view>
</view>
<view class="codefun-flex-col group_10">
......@@ -2017,4 +2064,10 @@
color: #666666;
}
}
.nongchang_box {
background-image: url('/static/images/nongchang/mynongchang-2.png');
background-repeat: no-repeat;
background-size: 100% 100%;
}
</style>
......@@ -706,11 +706,11 @@
<view
v-for="news in pageData.newsItems"
:key="news.id"
class="w-full h-110 flex flex-row justify-around p-2"
class="w-full h-auto flex flex-row justify-around p-2"
@click="toNewsDetail(news)"
>
<view class="w-70% flex flex-col justify-between" :class="news.image ? 'w-70%' : 'w-full'">
<view class="text-25 color-#333333">{{ news.title }}</view>
<view class="ellipsis-multiline text-25 color-#333333 mb-1">{{ news.title }}</view>
<view class="text-25 color-#686868">{{
dayjs(news.publishDate).format('YYYY年MM月DD日')
}}</view>
......@@ -1733,4 +1733,11 @@
padding: unset !important;
font-size: 28rpx;
}
.ellipsis-multiline {
display: -webkit-box; /* 必须 */
-webkit-box-orient: vertical; /* 垂直排列 */
-webkit-line-clamp: 2; /* 限制显示3行 */
overflow: hidden; /* 隐藏超出内容 */
text-overflow: ellipsis; /* 可选,部分浏览器不生效 */
}
</style>
src/static/images/news/views.png

379 Bytes | W: | H:

src/static/images/news/views.png

9.7 KB | W: | H:

src/static/images/news/views.png
src/static/images/news/views.png
src/static/images/news/views.png
src/static/images/news/views.png
  • 2-up
  • Swipe
  • Onion skin
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" width="14" height="14" viewBox="0 0 14 14" fill="currentColor">
<path d="M7 0C10.8659 0 14 3.13406 14 7C14 10.8659 10.8659 14 7 14C3.13406 14 0 10.8659 0 7C0 3.13406 3.13406 0 7 0ZM5.19944 3.29506C5.19371 3.30136 5.18813 3.30778 5.1827 3.31433C5.17726 3.32088 5.172 3.32754 5.16687 3.33434C5.16174 3.34115 5.15678 3.34805 5.15198 3.35506C5.14719 3.3621 5.14254 3.36922 5.13806 3.37645C5.1336 3.38369 5.12929 3.39104 5.12515 3.39848C5.12102 3.40591 5.11706 3.41343 5.11327 3.42107C5.10947 3.42869 5.10586 3.43639 5.10244 3.44418C5.09901 3.45197 5.09575 3.45982 5.09269 3.46776C5.08964 3.47569 5.08675 3.4837 5.08406 3.49177C5.08137 3.49984 5.07884 3.50798 5.07652 3.51617C5.0742 3.52435 5.07207 3.53259 5.07014 3.54086C5.0682 3.54915 5.06644 3.55747 5.06489 3.56585C5.06334 3.57422 5.06196 3.58261 5.0608 3.59104C5.05964 3.59947 5.05867 3.60792 5.05789 3.61639C5.0571 3.62487 5.05653 3.63335 5.05615 3.64186C5.05577 3.65037 5.05557 3.65887 5.05558 3.66738C5.0556 3.67588 5.0558 3.68439 5.0562 3.69289C5.0566 3.7014 5.0572 3.70987 5.05799 3.71834C5.05879 3.72681 5.05978 3.73527 5.06096 3.74369C5.06215 3.75213 5.06352 3.76052 5.06511 3.76887C5.06668 3.77724 5.06845 3.78557 5.0704 3.79384C5.07236 3.80213 5.0745 3.81036 5.07684 3.81854C5.07918 3.82672 5.0817 3.83484 5.08442 3.84292C5.08713 3.85099 5.09002 3.85897 5.09311 3.86691C5.0962 3.87485 5.09946 3.8827 5.1029 3.89047C5.10636 3.89824 5.10999 3.90595 5.11378 3.91357C5.11758 3.92117 5.12155 3.92869 5.12571 3.93612C5.12987 3.94356 5.13419 3.95088 5.13868 3.95811C5.14318 3.96535 5.14782 3.97247 5.15263 3.97947C5.15746 3.98649 5.16244 3.99339 5.16757 4.00017C5.1727 4.00696 5.178 4.01363 5.18345 4.02016C5.18888 4.02669 5.19448 4.03311 5.20022 4.03939L5.24105 4.07945L8.51044 7L5.24105 9.92055C5.23468 9.92622 5.22846 9.93202 5.22236 9.93796C5.21627 9.9439 5.2103 9.94998 5.20449 9.95621C5.19867 9.96243 5.19301 9.96878 5.18749 9.97526C5.18196 9.98174 5.1766 9.98836 5.17138 9.9951C5.16615 10.0018 5.16109 10.0087 5.15619 10.0156C5.1513 10.0226 5.14657 10.0297 5.14199 10.0369C5.13743 10.044 5.13302 10.0513 5.12877 10.0587C5.12454 10.0661 5.12048 10.0736 5.11659 10.0812C5.1127 10.0887 5.10899 10.0964 5.10544 10.1041C5.10192 10.1119 5.09856 10.1197 5.09539 10.1276C5.09221 10.1355 5.08922 10.1435 5.08641 10.1515C5.0836 10.1596 5.08098 10.1677 5.07856 10.1758C5.07614 10.184 5.0739 10.1922 5.07184 10.2005C5.06979 10.2088 5.06791 10.2171 5.06626 10.2254C5.06459 10.2337 5.06312 10.2421 5.06183 10.2506C5.06054 10.259 5.05948 10.2674 5.05859 10.2759C5.0577 10.2844 5.057 10.2929 5.0565 10.3014C5.056 10.3099 5.0557 10.3184 5.0556 10.3269C5.0555 10.3354 5.0556 10.3439 5.05588 10.3524C5.05617 10.3609 5.05665 10.3694 5.05734 10.3779C5.05802 10.3864 5.05891 10.3949 5.05998 10.4033C5.06105 10.4118 5.06232 10.4202 5.06379 10.4286C5.06524 10.437 5.06689 10.4453 5.06875 10.4536C5.0706 10.4619 5.07264 10.4702 5.07488 10.4784C5.0771 10.4866 5.07953 10.4948 5.08213 10.5029C5.08476 10.511 5.08755 10.5191 5.09052 10.527C5.09351 10.535 5.09667 10.5429 5.10001 10.5508C5.10337 10.5586 5.1069 10.5663 5.11059 10.574C5.1143 10.5817 5.11818 10.5893 5.12224 10.5967C5.1263 10.6042 5.13053 10.6116 5.13492 10.6189C5.13932 10.6262 5.14388 10.6334 5.14861 10.6405C5.15334 10.6476 5.15822 10.6545 5.16328 10.6614L5.19944 10.7053C5.39311 10.9192 5.71667 10.9488 5.94533 10.7823L5.98966 10.7465L9.41345 7.68872C9.42503 7.67841 9.43634 7.66783 9.44739 7.65696C9.45844 7.64608 9.46921 7.63493 9.47969 7.62352C9.49017 7.61211 9.50036 7.60043 9.51025 7.58848C9.52016 7.57655 9.52975 7.56438 9.53903 7.55197C9.5483 7.53955 9.55727 7.5269 9.56591 7.51403C9.57455 7.50117 9.58286 7.48808 9.59085 7.4748C9.59882 7.46151 9.60647 7.44803 9.61377 7.43434C9.62107 7.42066 9.62803 7.40681 9.63463 7.39279C9.64123 7.37877 9.64746 7.36458 9.65334 7.35024C9.65924 7.33589 9.66475 7.32142 9.6699 7.3068C9.67506 7.29217 9.67984 7.27742 9.68425 7.26256C9.68865 7.24771 9.69268 7.23274 9.69634 7.21768C9.7 7.20263 9.70327 7.18747 9.70616 7.17223C9.70905 7.15701 9.71154 7.14172 9.71367 7.12636C9.71579 7.111 9.71751 7.0956 9.71884 7.08016C9.72018 7.0647 9.72113 7.04924 9.72169 7.03375C9.72224 7.01826 9.7224 7.00276 9.72219 6.98727C9.72195 6.97176 9.72133 6.95627 9.72033 6.94081C9.71933 6.92534 9.71793 6.9099 9.71614 6.89451C9.71435 6.8791 9.71218 6.86376 9.70962 6.84847C9.70706 6.83318 9.70411 6.81796 9.70078 6.80282C9.69746 6.78768 9.69375 6.77264 9.68965 6.75769C9.68556 6.74273 9.6811 6.72789 9.67625 6.71317C9.67142 6.69845 9.66621 6.68384 9.66063 6.66937C9.65505 6.65492 9.64911 6.6406 9.64281 6.62643C9.63651 6.61228 9.62986 6.59827 9.62286 6.58445C9.61586 6.57062 9.60851 6.55696 9.6008 6.54351C9.5931 6.53006 9.58508 6.51681 9.57671 6.50376C9.56834 6.49071 9.55965 6.47788 9.55064 6.46526C9.54163 6.45264 9.53231 6.44028 9.52267 6.42813C9.51303 6.41598 9.5031 6.4041 9.49286 6.39245C9.48261 6.38081 9.47209 6.36944 9.46128 6.35833L9.41345 6.31206L5.98966 3.25422C5.98284 3.24814 5.97587 3.24222 5.96875 3.23649C5.96164 3.23074 5.95438 3.22518 5.947 3.2198C5.93961 3.2144 5.93209 3.2092 5.92446 3.20417C5.91682 3.19916 5.90905 3.19433 5.90118 3.18969C5.89331 3.18504 5.88532 3.18059 5.87723 3.17633C5.86913 3.17207 5.86094 3.16803 5.85265 3.16417C5.84436 3.16031 5.83598 3.15667 5.8275 3.15322C5.81903 3.14976 5.81049 3.14652 5.80187 3.1435C5.79325 3.14047 5.78456 3.13767 5.77579 3.13506C5.76701 3.13245 5.75819 3.13006 5.74932 3.12787C5.74044 3.1257 5.7315 3.12375 5.72253 3.12201C5.71356 3.12027 5.70453 3.11875 5.69549 3.11745C5.68645 3.11614 5.67736 3.11506 5.66826 3.11421C5.65915 3.11335 5.65004 3.1127 5.6409 3.11228C5.63178 3.11187 5.62264 3.11168 5.6135 3.11172C5.60436 3.11175 5.59522 3.112 5.58609 3.11248C5.57695 3.11295 5.56785 3.11365 5.55874 3.11457C5.54965 3.11549 5.54058 3.11665 5.53153 3.118C5.52249 3.11935 5.5135 3.12094 5.50453 3.12274C5.49556 3.12455 5.48665 3.12657 5.47778 3.12879C5.46892 3.13103 5.46012 3.13349 5.45138 3.13615C5.44262 3.13882 5.43395 3.14169 5.42534 3.14479C5.41674 3.14788 5.4082 3.15117 5.39976 3.15466C5.39132 3.15817 5.38297 3.16188 5.37469 3.16579C5.36644 3.1697 5.35828 3.17381 5.35021 3.17812C5.34214 3.18243 5.33419 3.18693 5.32635 3.19162C5.3185 3.19632 5.31078 3.20122 5.30317 3.20628C5.29557 3.21136 5.28809 3.21662 5.28073 3.22205C5.27338 3.22748 5.26616 3.2331 5.25909 3.2389C5.25203 3.24468 5.24509 3.25063 5.23829 3.25676C5.23151 3.26289 5.22487 3.26918 5.2184 3.27562C5.21192 3.28208 5.20561 3.28868 5.19944 3.29544L5.19944 3.29506Z" fill="#14AE68"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" width="14" height="14" viewBox="0 0 14 14" fill="currentColor">
<path d="M7 0C10.8659 0 14 3.13406 14 7C14 10.8659 10.8659 14 7 14C3.13406 14 0 10.8659 0 7C0 3.13406 3.13406 0 7 0ZM5.19944 3.29506C5.19371 3.30136 5.18813 3.30778 5.1827 3.31433C5.17726 3.32088 5.172 3.32754 5.16687 3.33434C5.16174 3.34115 5.15678 3.34805 5.15198 3.35506C5.14719 3.3621 5.14254 3.36922 5.13806 3.37645C5.1336 3.38369 5.12929 3.39104 5.12515 3.39848C5.12102 3.40591 5.11706 3.41343 5.11327 3.42107C5.10947 3.42869 5.10586 3.43639 5.10244 3.44418C5.09901 3.45197 5.09575 3.45982 5.09269 3.46776C5.08964 3.47569 5.08675 3.4837 5.08406 3.49177C5.08137 3.49984 5.07884 3.50798 5.07652 3.51617C5.0742 3.52435 5.07207 3.53259 5.07014 3.54086C5.0682 3.54915 5.06644 3.55747 5.06489 3.56585C5.06334 3.57422 5.06196 3.58261 5.0608 3.59104C5.05964 3.59947 5.05867 3.60792 5.05789 3.61639C5.0571 3.62487 5.05653 3.63335 5.05615 3.64186C5.05577 3.65037 5.05557 3.65887 5.05558 3.66738C5.0556 3.67588 5.0558 3.68439 5.0562 3.69289C5.0566 3.7014 5.0572 3.70987 5.05799 3.71834C5.05879 3.72681 5.05978 3.73527 5.06096 3.74369C5.06215 3.75213 5.06352 3.76052 5.06511 3.76887C5.06668 3.77724 5.06845 3.78557 5.0704 3.79384C5.07236 3.80213 5.0745 3.81036 5.07684 3.81854C5.07918 3.82672 5.0817 3.83484 5.08442 3.84292C5.08713 3.85099 5.09002 3.85897 5.09311 3.86691C5.0962 3.87485 5.09946 3.8827 5.1029 3.89047C5.10636 3.89824 5.10999 3.90595 5.11378 3.91357C5.11758 3.92117 5.12155 3.92869 5.12571 3.93612C5.12987 3.94356 5.13419 3.95088 5.13868 3.95811C5.14318 3.96535 5.14782 3.97247 5.15263 3.97947C5.15746 3.98649 5.16244 3.99339 5.16757 4.00017C5.1727 4.00696 5.178 4.01363 5.18345 4.02016C5.18888 4.02669 5.19448 4.03311 5.20022 4.03939L5.24105 4.07945L8.51044 7L5.24105 9.92055C5.23468 9.92622 5.22846 9.93202 5.22236 9.93796C5.21627 9.9439 5.2103 9.94998 5.20449 9.95621C5.19867 9.96243 5.19301 9.96878 5.18749 9.97526C5.18196 9.98174 5.1766 9.98836 5.17138 9.9951C5.16615 10.0018 5.16109 10.0087 5.15619 10.0156C5.1513 10.0226 5.14657 10.0297 5.14199 10.0369C5.13743 10.044 5.13302 10.0513 5.12877 10.0587C5.12454 10.0661 5.12048 10.0736 5.11659 10.0812C5.1127 10.0887 5.10899 10.0964 5.10544 10.1041C5.10192 10.1119 5.09856 10.1197 5.09539 10.1276C5.09221 10.1355 5.08922 10.1435 5.08641 10.1515C5.0836 10.1596 5.08098 10.1677 5.07856 10.1758C5.07614 10.184 5.0739 10.1922 5.07184 10.2005C5.06979 10.2088 5.06791 10.2171 5.06626 10.2254C5.06459 10.2337 5.06312 10.2421 5.06183 10.2506C5.06054 10.259 5.05948 10.2674 5.05859 10.2759C5.0577 10.2844 5.057 10.2929 5.0565 10.3014C5.056 10.3099 5.0557 10.3184 5.0556 10.3269C5.0555 10.3354 5.0556 10.3439 5.05588 10.3524C5.05617 10.3609 5.05665 10.3694 5.05734 10.3779C5.05802 10.3864 5.05891 10.3949 5.05998 10.4033C5.06105 10.4118 5.06232 10.4202 5.06379 10.4286C5.06524 10.437 5.06689 10.4453 5.06875 10.4536C5.0706 10.4619 5.07264 10.4702 5.07488 10.4784C5.0771 10.4866 5.07953 10.4948 5.08213 10.5029C5.08476 10.511 5.08755 10.5191 5.09052 10.527C5.09351 10.535 5.09667 10.5429 5.10001 10.5508C5.10337 10.5586 5.1069 10.5663 5.11059 10.574C5.1143 10.5817 5.11818 10.5893 5.12224 10.5967C5.1263 10.6042 5.13053 10.6116 5.13492 10.6189C5.13932 10.6262 5.14388 10.6334 5.14861 10.6405C5.15334 10.6476 5.15822 10.6545 5.16328 10.6614L5.19944 10.7053C5.39311 10.9192 5.71667 10.9488 5.94533 10.7823L5.98966 10.7465L9.41345 7.68872C9.42503 7.67841 9.43634 7.66783 9.44739 7.65696C9.45844 7.64608 9.46921 7.63493 9.47969 7.62352C9.49017 7.61211 9.50036 7.60043 9.51025 7.58848C9.52016 7.57655 9.52975 7.56438 9.53903 7.55197C9.5483 7.53955 9.55727 7.5269 9.56591 7.51403C9.57455 7.50117 9.58286 7.48808 9.59085 7.4748C9.59882 7.46151 9.60647 7.44803 9.61377 7.43434C9.62107 7.42066 9.62803 7.40681 9.63463 7.39279C9.64123 7.37877 9.64746 7.36458 9.65334 7.35024C9.65924 7.33589 9.66475 7.32142 9.6699 7.3068C9.67506 7.29217 9.67984 7.27742 9.68425 7.26256C9.68865 7.24771 9.69268 7.23274 9.69634 7.21768C9.7 7.20263 9.70327 7.18747 9.70616 7.17223C9.70905 7.15701 9.71154 7.14172 9.71367 7.12636C9.71579 7.111 9.71751 7.0956 9.71884 7.08016C9.72018 7.0647 9.72113 7.04924 9.72169 7.03375C9.72224 7.01826 9.7224 7.00276 9.72219 6.98727C9.72195 6.97176 9.72133 6.95627 9.72033 6.94081C9.71933 6.92534 9.71793 6.9099 9.71614 6.89451C9.71435 6.8791 9.71218 6.86376 9.70962 6.84847C9.70706 6.83318 9.70411 6.81796 9.70078 6.80282C9.69746 6.78768 9.69375 6.77264 9.68965 6.75769C9.68556 6.74273 9.6811 6.72789 9.67625 6.71317C9.67142 6.69845 9.66621 6.68384 9.66063 6.66937C9.65505 6.65492 9.64911 6.6406 9.64281 6.62643C9.63651 6.61228 9.62986 6.59827 9.62286 6.58445C9.61586 6.57062 9.60851 6.55696 9.6008 6.54351C9.5931 6.53006 9.58508 6.51681 9.57671 6.50376C9.56834 6.49071 9.55965 6.47788 9.55064 6.46526C9.54163 6.45264 9.53231 6.44028 9.52267 6.42813C9.51303 6.41598 9.5031 6.4041 9.49286 6.39245C9.48261 6.38081 9.47209 6.36944 9.46128 6.35833L9.41345 6.31206L5.98966 3.25422C5.98284 3.24814 5.97587 3.24222 5.96875 3.23649C5.96164 3.23074 5.95438 3.22518 5.947 3.2198C5.93961 3.2144 5.93209 3.2092 5.92446 3.20417C5.91682 3.19916 5.90905 3.19433 5.90118 3.18969C5.89331 3.18504 5.88532 3.18059 5.87723 3.17633C5.86913 3.17207 5.86094 3.16803 5.85265 3.16417C5.84436 3.16031 5.83598 3.15667 5.8275 3.15322C5.81903 3.14976 5.81049 3.14652 5.80187 3.1435C5.79325 3.14047 5.78456 3.13767 5.77579 3.13506C5.76701 3.13245 5.75819 3.13006 5.74932 3.12787C5.74044 3.1257 5.7315 3.12375 5.72253 3.12201C5.71356 3.12027 5.70453 3.11875 5.69549 3.11745C5.68645 3.11614 5.67736 3.11506 5.66826 3.11421C5.65915 3.11335 5.65004 3.1127 5.6409 3.11228C5.63178 3.11187 5.62264 3.11168 5.6135 3.11172C5.60436 3.11175 5.59522 3.112 5.58609 3.11248C5.57695 3.11295 5.56785 3.11365 5.55874 3.11457C5.54965 3.11549 5.54058 3.11665 5.53153 3.118C5.52249 3.11935 5.5135 3.12094 5.50453 3.12274C5.49556 3.12455 5.48665 3.12657 5.47778 3.12879C5.46892 3.13103 5.46012 3.13349 5.45138 3.13615C5.44262 3.13882 5.43395 3.14169 5.42534 3.14479C5.41674 3.14788 5.4082 3.15117 5.39976 3.15466C5.39132 3.15817 5.38297 3.16188 5.37469 3.16579C5.36644 3.1697 5.35828 3.17381 5.35021 3.17812C5.34214 3.18243 5.33419 3.18693 5.32635 3.19162C5.3185 3.19632 5.31078 3.20122 5.30317 3.20628C5.29557 3.21136 5.28809 3.21662 5.28073 3.22205C5.27338 3.22748 5.26616 3.2331 5.25909 3.2389C5.25203 3.24468 5.24509 3.25063 5.23829 3.25676C5.23151 3.26289 5.22487 3.26918 5.2184 3.27562C5.21192 3.28208 5.20561 3.28868 5.19944 3.29544L5.19944 3.29506Z" fill="#252772"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" width="14" height="14" viewBox="0 0 14 14" fill="currentColor">
<path d="M7 0C10.8659 0 14 3.13406 14 7C14 10.8659 10.8659 14 7 14C3.13406 14 0 10.8659 0 7C0 3.13406 3.13406 0 7 0ZM5.19944 3.29506C5.19371 3.30136 5.18813 3.30778 5.1827 3.31433C5.17726 3.32088 5.172 3.32754 5.16687 3.33434C5.16174 3.34115 5.15678 3.34805 5.15198 3.35506C5.14719 3.3621 5.14254 3.36922 5.13806 3.37645C5.1336 3.38369 5.12929 3.39104 5.12515 3.39848C5.12102 3.40591 5.11706 3.41343 5.11327 3.42107C5.10947 3.42869 5.10586 3.43639 5.10244 3.44418C5.09901 3.45197 5.09575 3.45982 5.09269 3.46776C5.08964 3.47569 5.08675 3.4837 5.08406 3.49177C5.08137 3.49984 5.07884 3.50798 5.07652 3.51617C5.0742 3.52435 5.07207 3.53259 5.07014 3.54086C5.0682 3.54915 5.06644 3.55747 5.06489 3.56585C5.06334 3.57422 5.06196 3.58261 5.0608 3.59104C5.05964 3.59947 5.05867 3.60792 5.05789 3.61639C5.0571 3.62487 5.05653 3.63335 5.05615 3.64186C5.05577 3.65037 5.05557 3.65887 5.05558 3.66738C5.0556 3.67588 5.0558 3.68439 5.0562 3.69289C5.0566 3.7014 5.0572 3.70987 5.05799 3.71834C5.05879 3.72681 5.05978 3.73527 5.06096 3.74369C5.06215 3.75213 5.06352 3.76052 5.06511 3.76887C5.06668 3.77724 5.06845 3.78557 5.0704 3.79384C5.07236 3.80213 5.0745 3.81036 5.07684 3.81854C5.07918 3.82672 5.0817 3.83484 5.08442 3.84292C5.08713 3.85099 5.09002 3.85897 5.09311 3.86691C5.0962 3.87485 5.09946 3.8827 5.1029 3.89047C5.10636 3.89824 5.10999 3.90595 5.11378 3.91357C5.11758 3.92117 5.12155 3.92869 5.12571 3.93612C5.12987 3.94356 5.13419 3.95088 5.13868 3.95811C5.14318 3.96535 5.14782 3.97247 5.15263 3.97947C5.15746 3.98649 5.16244 3.99339 5.16757 4.00017C5.1727 4.00696 5.178 4.01363 5.18345 4.02016C5.18888 4.02669 5.19448 4.03311 5.20022 4.03939L5.24105 4.07945L8.51044 7L5.24105 9.92055C5.23468 9.92622 5.22846 9.93202 5.22236 9.93796C5.21627 9.9439 5.2103 9.94998 5.20449 9.95621C5.19867 9.96243 5.19301 9.96878 5.18749 9.97526C5.18196 9.98174 5.1766 9.98836 5.17138 9.9951C5.16615 10.0018 5.16109 10.0087 5.15619 10.0156C5.1513 10.0226 5.14657 10.0297 5.14199 10.0369C5.13743 10.044 5.13302 10.0513 5.12877 10.0587C5.12454 10.0661 5.12048 10.0736 5.11659 10.0812C5.1127 10.0887 5.10899 10.0964 5.10544 10.1041C5.10192 10.1119 5.09856 10.1197 5.09539 10.1276C5.09221 10.1355 5.08922 10.1435 5.08641 10.1515C5.0836 10.1596 5.08098 10.1677 5.07856 10.1758C5.07614 10.184 5.0739 10.1922 5.07184 10.2005C5.06979 10.2088 5.06791 10.2171 5.06626 10.2254C5.06459 10.2337 5.06312 10.2421 5.06183 10.2506C5.06054 10.259 5.05948 10.2674 5.05859 10.2759C5.0577 10.2844 5.057 10.2929 5.0565 10.3014C5.056 10.3099 5.0557 10.3184 5.0556 10.3269C5.0555 10.3354 5.0556 10.3439 5.05588 10.3524C5.05617 10.3609 5.05665 10.3694 5.05734 10.3779C5.05802 10.3864 5.05891 10.3949 5.05998 10.4033C5.06105 10.4118 5.06232 10.4202 5.06379 10.4286C5.06524 10.437 5.06689 10.4453 5.06875 10.4536C5.0706 10.4619 5.07264 10.4702 5.07488 10.4784C5.0771 10.4866 5.07953 10.4948 5.08213 10.5029C5.08476 10.511 5.08755 10.5191 5.09052 10.527C5.09351 10.535 5.09667 10.5429 5.10001 10.5508C5.10337 10.5586 5.1069 10.5663 5.11059 10.574C5.1143 10.5817 5.11818 10.5893 5.12224 10.5967C5.1263 10.6042 5.13053 10.6116 5.13492 10.6189C5.13932 10.6262 5.14388 10.6334 5.14861 10.6405C5.15334 10.6476 5.15822 10.6545 5.16328 10.6614L5.19944 10.7053C5.39311 10.9192 5.71667 10.9488 5.94533 10.7823L5.98966 10.7465L9.41345 7.68872C9.42503 7.67841 9.43634 7.66783 9.44739 7.65696C9.45844 7.64608 9.46921 7.63493 9.47969 7.62352C9.49017 7.61211 9.50036 7.60043 9.51025 7.58848C9.52016 7.57655 9.52975 7.56438 9.53903 7.55197C9.5483 7.53955 9.55727 7.5269 9.56591 7.51403C9.57455 7.50117 9.58286 7.48808 9.59085 7.4748C9.59882 7.46151 9.60647 7.44803 9.61377 7.43434C9.62107 7.42066 9.62803 7.40681 9.63463 7.39279C9.64123 7.37877 9.64746 7.36458 9.65334 7.35024C9.65924 7.33589 9.66475 7.32142 9.6699 7.3068C9.67506 7.29217 9.67984 7.27742 9.68425 7.26256C9.68865 7.24771 9.69268 7.23274 9.69634 7.21768C9.7 7.20263 9.70327 7.18747 9.70616 7.17223C9.70905 7.15701 9.71154 7.14172 9.71367 7.12636C9.71579 7.111 9.71751 7.0956 9.71884 7.08016C9.72018 7.0647 9.72113 7.04924 9.72169 7.03375C9.72224 7.01826 9.7224 7.00276 9.72219 6.98727C9.72195 6.97176 9.72133 6.95627 9.72033 6.94081C9.71933 6.92534 9.71793 6.9099 9.71614 6.89451C9.71435 6.8791 9.71218 6.86376 9.70962 6.84847C9.70706 6.83318 9.70411 6.81796 9.70078 6.80282C9.69746 6.78768 9.69375 6.77264 9.68965 6.75769C9.68556 6.74273 9.6811 6.72789 9.67625 6.71317C9.67142 6.69845 9.66621 6.68384 9.66063 6.66937C9.65505 6.65492 9.64911 6.6406 9.64281 6.62643C9.63651 6.61228 9.62986 6.59827 9.62286 6.58445C9.61586 6.57062 9.60851 6.55696 9.6008 6.54351C9.5931 6.53006 9.58508 6.51681 9.57671 6.50376C9.56834 6.49071 9.55965 6.47788 9.55064 6.46526C9.54163 6.45264 9.53231 6.44028 9.52267 6.42813C9.51303 6.41598 9.5031 6.4041 9.49286 6.39245C9.48261 6.38081 9.47209 6.36944 9.46128 6.35833L9.41345 6.31206L5.98966 3.25422C5.98284 3.24814 5.97587 3.24222 5.96875 3.23649C5.96164 3.23074 5.95438 3.22518 5.947 3.2198C5.93961 3.2144 5.93209 3.2092 5.92446 3.20417C5.91682 3.19916 5.90905 3.19433 5.90118 3.18969C5.89331 3.18504 5.88532 3.18059 5.87723 3.17633C5.86913 3.17207 5.86094 3.16803 5.85265 3.16417C5.84436 3.16031 5.83598 3.15667 5.8275 3.15322C5.81903 3.14976 5.81049 3.14652 5.80187 3.1435C5.79325 3.14047 5.78456 3.13767 5.77579 3.13506C5.76701 3.13245 5.75819 3.13006 5.74932 3.12787C5.74044 3.1257 5.7315 3.12375 5.72253 3.12201C5.71356 3.12027 5.70453 3.11875 5.69549 3.11745C5.68645 3.11614 5.67736 3.11506 5.66826 3.11421C5.65915 3.11335 5.65004 3.1127 5.6409 3.11228C5.63178 3.11187 5.62264 3.11168 5.6135 3.11172C5.60436 3.11175 5.59522 3.112 5.58609 3.11248C5.57695 3.11295 5.56785 3.11365 5.55874 3.11457C5.54965 3.11549 5.54058 3.11665 5.53153 3.118C5.52249 3.11935 5.5135 3.12094 5.50453 3.12274C5.49556 3.12455 5.48665 3.12657 5.47778 3.12879C5.46892 3.13103 5.46012 3.13349 5.45138 3.13615C5.44262 3.13882 5.43395 3.14169 5.42534 3.14479C5.41674 3.14788 5.4082 3.15117 5.39976 3.15466C5.39132 3.15817 5.38297 3.16188 5.37469 3.16579C5.36644 3.1697 5.35828 3.17381 5.35021 3.17812C5.34214 3.18243 5.33419 3.18693 5.32635 3.19162C5.3185 3.19632 5.31078 3.20122 5.30317 3.20628C5.29557 3.21136 5.28809 3.21662 5.28073 3.22205C5.27338 3.22748 5.26616 3.2331 5.25909 3.2389C5.25203 3.24468 5.24509 3.25063 5.23829 3.25676C5.23151 3.26289 5.22487 3.26918 5.2184 3.27562C5.21192 3.28208 5.20561 3.28868 5.19944 3.29544L5.19944 3.29506Z" fill="#383838"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" width="14" height="14" viewBox="0 0 14 14" fill="currentColor">
<path d="M7 0C10.8659 0 14 3.13406 14 7C14 10.8659 10.8659 14 7 14C3.13406 14 0 10.8659 0 7C0 3.13406 3.13406 0 7 0ZM5.19944 3.29506C5.19371 3.30136 5.18813 3.30778 5.1827 3.31433C5.17726 3.32088 5.172 3.32754 5.16687 3.33434C5.16174 3.34115 5.15678 3.34805 5.15198 3.35506C5.14719 3.3621 5.14254 3.36922 5.13806 3.37645C5.1336 3.38369 5.12929 3.39104 5.12515 3.39848C5.12102 3.40591 5.11706 3.41343 5.11327 3.42107C5.10947 3.42869 5.10586 3.43639 5.10244 3.44418C5.09901 3.45197 5.09575 3.45982 5.09269 3.46776C5.08964 3.47569 5.08675 3.4837 5.08406 3.49177C5.08137 3.49984 5.07884 3.50798 5.07652 3.51617C5.0742 3.52435 5.07207 3.53259 5.07014 3.54086C5.0682 3.54915 5.06644 3.55747 5.06489 3.56585C5.06334 3.57422 5.06196 3.58261 5.0608 3.59104C5.05964 3.59947 5.05867 3.60792 5.05789 3.61639C5.0571 3.62487 5.05653 3.63335 5.05615 3.64186C5.05577 3.65037 5.05557 3.65887 5.05558 3.66738C5.0556 3.67588 5.0558 3.68439 5.0562 3.69289C5.0566 3.7014 5.0572 3.70987 5.05799 3.71834C5.05879 3.72681 5.05978 3.73527 5.06096 3.74369C5.06215 3.75213 5.06352 3.76052 5.06511 3.76887C5.06668 3.77724 5.06845 3.78557 5.0704 3.79384C5.07236 3.80213 5.0745 3.81036 5.07684 3.81854C5.07918 3.82672 5.0817 3.83484 5.08442 3.84292C5.08713 3.85099 5.09002 3.85897 5.09311 3.86691C5.0962 3.87485 5.09946 3.8827 5.1029 3.89047C5.10636 3.89824 5.10999 3.90595 5.11378 3.91357C5.11758 3.92117 5.12155 3.92869 5.12571 3.93612C5.12987 3.94356 5.13419 3.95088 5.13868 3.95811C5.14318 3.96535 5.14782 3.97247 5.15263 3.97947C5.15746 3.98649 5.16244 3.99339 5.16757 4.00017C5.1727 4.00696 5.178 4.01363 5.18345 4.02016C5.18888 4.02669 5.19448 4.03311 5.20022 4.03939L5.24105 4.07945L8.51044 7L5.24105 9.92055C5.23468 9.92622 5.22846 9.93202 5.22236 9.93796C5.21627 9.9439 5.2103 9.94998 5.20449 9.95621C5.19867 9.96243 5.19301 9.96878 5.18749 9.97526C5.18196 9.98174 5.1766 9.98836 5.17138 9.9951C5.16615 10.0018 5.16109 10.0087 5.15619 10.0156C5.1513 10.0226 5.14657 10.0297 5.14199 10.0369C5.13743 10.044 5.13302 10.0513 5.12877 10.0587C5.12454 10.0661 5.12048 10.0736 5.11659 10.0812C5.1127 10.0887 5.10899 10.0964 5.10544 10.1041C5.10192 10.1119 5.09856 10.1197 5.09539 10.1276C5.09221 10.1355 5.08922 10.1435 5.08641 10.1515C5.0836 10.1596 5.08098 10.1677 5.07856 10.1758C5.07614 10.184 5.0739 10.1922 5.07184 10.2005C5.06979 10.2088 5.06791 10.2171 5.06626 10.2254C5.06459 10.2337 5.06312 10.2421 5.06183 10.2506C5.06054 10.259 5.05948 10.2674 5.05859 10.2759C5.0577 10.2844 5.057 10.2929 5.0565 10.3014C5.056 10.3099 5.0557 10.3184 5.0556 10.3269C5.0555 10.3354 5.0556 10.3439 5.05588 10.3524C5.05617 10.3609 5.05665 10.3694 5.05734 10.3779C5.05802 10.3864 5.05891 10.3949 5.05998 10.4033C5.06105 10.4118 5.06232 10.4202 5.06379 10.4286C5.06524 10.437 5.06689 10.4453 5.06875 10.4536C5.0706 10.4619 5.07264 10.4702 5.07488 10.4784C5.0771 10.4866 5.07953 10.4948 5.08213 10.5029C5.08476 10.511 5.08755 10.5191 5.09052 10.527C5.09351 10.535 5.09667 10.5429 5.10001 10.5508C5.10337 10.5586 5.1069 10.5663 5.11059 10.574C5.1143 10.5817 5.11818 10.5893 5.12224 10.5967C5.1263 10.6042 5.13053 10.6116 5.13492 10.6189C5.13932 10.6262 5.14388 10.6334 5.14861 10.6405C5.15334 10.6476 5.15822 10.6545 5.16328 10.6614L5.19944 10.7053C5.39311 10.9192 5.71667 10.9488 5.94533 10.7823L5.98966 10.7465L9.41345 7.68872C9.42503 7.67841 9.43634 7.66783 9.44739 7.65696C9.45844 7.64608 9.46921 7.63493 9.47969 7.62352C9.49017 7.61211 9.50036 7.60043 9.51025 7.58848C9.52016 7.57655 9.52975 7.56438 9.53903 7.55197C9.5483 7.53955 9.55727 7.5269 9.56591 7.51403C9.57455 7.50117 9.58286 7.48808 9.59085 7.4748C9.59882 7.46151 9.60647 7.44803 9.61377 7.43434C9.62107 7.42066 9.62803 7.40681 9.63463 7.39279C9.64123 7.37877 9.64746 7.36458 9.65334 7.35024C9.65924 7.33589 9.66475 7.32142 9.6699 7.3068C9.67506 7.29217 9.67984 7.27742 9.68425 7.26256C9.68865 7.24771 9.69268 7.23274 9.69634 7.21768C9.7 7.20263 9.70327 7.18747 9.70616 7.17223C9.70905 7.15701 9.71154 7.14172 9.71367 7.12636C9.71579 7.111 9.71751 7.0956 9.71884 7.08016C9.72018 7.0647 9.72113 7.04924 9.72169 7.03375C9.72224 7.01826 9.7224 7.00276 9.72219 6.98727C9.72195 6.97176 9.72133 6.95627 9.72033 6.94081C9.71933 6.92534 9.71793 6.9099 9.71614 6.89451C9.71435 6.8791 9.71218 6.86376 9.70962 6.84847C9.70706 6.83318 9.70411 6.81796 9.70078 6.80282C9.69746 6.78768 9.69375 6.77264 9.68965 6.75769C9.68556 6.74273 9.6811 6.72789 9.67625 6.71317C9.67142 6.69845 9.66621 6.68384 9.66063 6.66937C9.65505 6.65492 9.64911 6.6406 9.64281 6.62643C9.63651 6.61228 9.62986 6.59827 9.62286 6.58445C9.61586 6.57062 9.60851 6.55696 9.6008 6.54351C9.5931 6.53006 9.58508 6.51681 9.57671 6.50376C9.56834 6.49071 9.55965 6.47788 9.55064 6.46526C9.54163 6.45264 9.53231 6.44028 9.52267 6.42813C9.51303 6.41598 9.5031 6.4041 9.49286 6.39245C9.48261 6.38081 9.47209 6.36944 9.46128 6.35833L9.41345 6.31206L5.98966 3.25422C5.98284 3.24814 5.97587 3.24222 5.96875 3.23649C5.96164 3.23074 5.95438 3.22518 5.947 3.2198C5.93961 3.2144 5.93209 3.2092 5.92446 3.20417C5.91682 3.19916 5.90905 3.19433 5.90118 3.18969C5.89331 3.18504 5.88532 3.18059 5.87723 3.17633C5.86913 3.17207 5.86094 3.16803 5.85265 3.16417C5.84436 3.16031 5.83598 3.15667 5.8275 3.15322C5.81903 3.14976 5.81049 3.14652 5.80187 3.1435C5.79325 3.14047 5.78456 3.13767 5.77579 3.13506C5.76701 3.13245 5.75819 3.13006 5.74932 3.12787C5.74044 3.1257 5.7315 3.12375 5.72253 3.12201C5.71356 3.12027 5.70453 3.11875 5.69549 3.11745C5.68645 3.11614 5.67736 3.11506 5.66826 3.11421C5.65915 3.11335 5.65004 3.1127 5.6409 3.11228C5.63178 3.11187 5.62264 3.11168 5.6135 3.11172C5.60436 3.11175 5.59522 3.112 5.58609 3.11248C5.57695 3.11295 5.56785 3.11365 5.55874 3.11457C5.54965 3.11549 5.54058 3.11665 5.53153 3.118C5.52249 3.11935 5.5135 3.12094 5.50453 3.12274C5.49556 3.12455 5.48665 3.12657 5.47778 3.12879C5.46892 3.13103 5.46012 3.13349 5.45138 3.13615C5.44262 3.13882 5.43395 3.14169 5.42534 3.14479C5.41674 3.14788 5.4082 3.15117 5.39976 3.15466C5.39132 3.15817 5.38297 3.16188 5.37469 3.16579C5.36644 3.1697 5.35828 3.17381 5.35021 3.17812C5.34214 3.18243 5.33419 3.18693 5.32635 3.19162C5.3185 3.19632 5.31078 3.20122 5.30317 3.20628C5.29557 3.21136 5.28809 3.21662 5.28073 3.22205C5.27338 3.22748 5.26616 3.2331 5.25909 3.2389C5.25203 3.24468 5.24509 3.25063 5.23829 3.25676C5.23151 3.26289 5.22487 3.26918 5.2184 3.27562C5.21192 3.28208 5.20561 3.28868 5.19944 3.29544L5.19944 3.29506Z" fill="#E70E30"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" width="14" height="14" viewBox="0 0 14 14" fill="currentColor">
<path d="M7 0C10.8659 0 14 3.13406 14 7C14 10.8659 10.8659 14 7 14C3.13406 14 0 10.8659 0 7C0 3.13406 3.13406 0 7 0ZM5.19944 3.29506C5.19371 3.30136 5.18813 3.30778 5.1827 3.31433C5.17726 3.32088 5.172 3.32754 5.16687 3.33434C5.16174 3.34115 5.15678 3.34805 5.15198 3.35506C5.14719 3.3621 5.14254 3.36922 5.13806 3.37645C5.1336 3.38369 5.12929 3.39104 5.12515 3.39848C5.12102 3.40591 5.11706 3.41343 5.11327 3.42107C5.10947 3.42869 5.10586 3.43639 5.10244 3.44418C5.09901 3.45197 5.09575 3.45982 5.09269 3.46776C5.08964 3.47569 5.08675 3.4837 5.08406 3.49177C5.08137 3.49984 5.07884 3.50798 5.07652 3.51617C5.0742 3.52435 5.07207 3.53259 5.07014 3.54086C5.0682 3.54915 5.06644 3.55747 5.06489 3.56585C5.06334 3.57422 5.06196 3.58261 5.0608 3.59104C5.05964 3.59947 5.05867 3.60792 5.05789 3.61639C5.0571 3.62487 5.05653 3.63335 5.05615 3.64186C5.05577 3.65037 5.05557 3.65887 5.05558 3.66738C5.0556 3.67588 5.0558 3.68439 5.0562 3.69289C5.0566 3.7014 5.0572 3.70987 5.05799 3.71834C5.05879 3.72681 5.05978 3.73527 5.06096 3.74369C5.06215 3.75213 5.06352 3.76052 5.06511 3.76887C5.06668 3.77724 5.06845 3.78557 5.0704 3.79384C5.07236 3.80213 5.0745 3.81036 5.07684 3.81854C5.07918 3.82672 5.0817 3.83484 5.08442 3.84292C5.08713 3.85099 5.09002 3.85897 5.09311 3.86691C5.0962 3.87485 5.09946 3.8827 5.1029 3.89047C5.10636 3.89824 5.10999 3.90595 5.11378 3.91357C5.11758 3.92117 5.12155 3.92869 5.12571 3.93612C5.12987 3.94356 5.13419 3.95088 5.13868 3.95811C5.14318 3.96535 5.14782 3.97247 5.15263 3.97947C5.15746 3.98649 5.16244 3.99339 5.16757 4.00017C5.1727 4.00696 5.178 4.01363 5.18345 4.02016C5.18888 4.02669 5.19448 4.03311 5.20022 4.03939L5.24105 4.07945L8.51044 7L5.24105 9.92055C5.23468 9.92622 5.22846 9.93202 5.22236 9.93796C5.21627 9.9439 5.2103 9.94998 5.20449 9.95621C5.19867 9.96243 5.19301 9.96878 5.18749 9.97526C5.18196 9.98174 5.1766 9.98836 5.17138 9.9951C5.16615 10.0018 5.16109 10.0087 5.15619 10.0156C5.1513 10.0226 5.14657 10.0297 5.14199 10.0369C5.13743 10.044 5.13302 10.0513 5.12877 10.0587C5.12454 10.0661 5.12048 10.0736 5.11659 10.0812C5.1127 10.0887 5.10899 10.0964 5.10544 10.1041C5.10192 10.1119 5.09856 10.1197 5.09539 10.1276C5.09221 10.1355 5.08922 10.1435 5.08641 10.1515C5.0836 10.1596 5.08098 10.1677 5.07856 10.1758C5.07614 10.184 5.0739 10.1922 5.07184 10.2005C5.06979 10.2088 5.06791 10.2171 5.06626 10.2254C5.06459 10.2337 5.06312 10.2421 5.06183 10.2506C5.06054 10.259 5.05948 10.2674 5.05859 10.2759C5.0577 10.2844 5.057 10.2929 5.0565 10.3014C5.056 10.3099 5.0557 10.3184 5.0556 10.3269C5.0555 10.3354 5.0556 10.3439 5.05588 10.3524C5.05617 10.3609 5.05665 10.3694 5.05734 10.3779C5.05802 10.3864 5.05891 10.3949 5.05998 10.4033C5.06105 10.4118 5.06232 10.4202 5.06379 10.4286C5.06524 10.437 5.06689 10.4453 5.06875 10.4536C5.0706 10.4619 5.07264 10.4702 5.07488 10.4784C5.0771 10.4866 5.07953 10.4948 5.08213 10.5029C5.08476 10.511 5.08755 10.5191 5.09052 10.527C5.09351 10.535 5.09667 10.5429 5.10001 10.5508C5.10337 10.5586 5.1069 10.5663 5.11059 10.574C5.1143 10.5817 5.11818 10.5893 5.12224 10.5967C5.1263 10.6042 5.13053 10.6116 5.13492 10.6189C5.13932 10.6262 5.14388 10.6334 5.14861 10.6405C5.15334 10.6476 5.15822 10.6545 5.16328 10.6614L5.19944 10.7053C5.39311 10.9192 5.71667 10.9488 5.94533 10.7823L5.98966 10.7465L9.41345 7.68872C9.42503 7.67841 9.43634 7.66783 9.44739 7.65696C9.45844 7.64608 9.46921 7.63493 9.47969 7.62352C9.49017 7.61211 9.50036 7.60043 9.51025 7.58848C9.52016 7.57655 9.52975 7.56438 9.53903 7.55197C9.5483 7.53955 9.55727 7.5269 9.56591 7.51403C9.57455 7.50117 9.58286 7.48808 9.59085 7.4748C9.59882 7.46151 9.60647 7.44803 9.61377 7.43434C9.62107 7.42066 9.62803 7.40681 9.63463 7.39279C9.64123 7.37877 9.64746 7.36458 9.65334 7.35024C9.65924 7.33589 9.66475 7.32142 9.6699 7.3068C9.67506 7.29217 9.67984 7.27742 9.68425 7.26256C9.68865 7.24771 9.69268 7.23274 9.69634 7.21768C9.7 7.20263 9.70327 7.18747 9.70616 7.17223C9.70905 7.15701 9.71154 7.14172 9.71367 7.12636C9.71579 7.111 9.71751 7.0956 9.71884 7.08016C9.72018 7.0647 9.72113 7.04924 9.72169 7.03375C9.72224 7.01826 9.7224 7.00276 9.72219 6.98727C9.72195 6.97176 9.72133 6.95627 9.72033 6.94081C9.71933 6.92534 9.71793 6.9099 9.71614 6.89451C9.71435 6.8791 9.71218 6.86376 9.70962 6.84847C9.70706 6.83318 9.70411 6.81796 9.70078 6.80282C9.69746 6.78768 9.69375 6.77264 9.68965 6.75769C9.68556 6.74273 9.6811 6.72789 9.67625 6.71317C9.67142 6.69845 9.66621 6.68384 9.66063 6.66937C9.65505 6.65492 9.64911 6.6406 9.64281 6.62643C9.63651 6.61228 9.62986 6.59827 9.62286 6.58445C9.61586 6.57062 9.60851 6.55696 9.6008 6.54351C9.5931 6.53006 9.58508 6.51681 9.57671 6.50376C9.56834 6.49071 9.55965 6.47788 9.55064 6.46526C9.54163 6.45264 9.53231 6.44028 9.52267 6.42813C9.51303 6.41598 9.5031 6.4041 9.49286 6.39245C9.48261 6.38081 9.47209 6.36944 9.46128 6.35833L9.41345 6.31206L5.98966 3.25422C5.98284 3.24814 5.97587 3.24222 5.96875 3.23649C5.96164 3.23074 5.95438 3.22518 5.947 3.2198C5.93961 3.2144 5.93209 3.2092 5.92446 3.20417C5.91682 3.19916 5.90905 3.19433 5.90118 3.18969C5.89331 3.18504 5.88532 3.18059 5.87723 3.17633C5.86913 3.17207 5.86094 3.16803 5.85265 3.16417C5.84436 3.16031 5.83598 3.15667 5.8275 3.15322C5.81903 3.14976 5.81049 3.14652 5.80187 3.1435C5.79325 3.14047 5.78456 3.13767 5.77579 3.13506C5.76701 3.13245 5.75819 3.13006 5.74932 3.12787C5.74044 3.1257 5.7315 3.12375 5.72253 3.12201C5.71356 3.12027 5.70453 3.11875 5.69549 3.11745C5.68645 3.11614 5.67736 3.11506 5.66826 3.11421C5.65915 3.11335 5.65004 3.1127 5.6409 3.11228C5.63178 3.11187 5.62264 3.11168 5.6135 3.11172C5.60436 3.11175 5.59522 3.112 5.58609 3.11248C5.57695 3.11295 5.56785 3.11365 5.55874 3.11457C5.54965 3.11549 5.54058 3.11665 5.53153 3.118C5.52249 3.11935 5.5135 3.12094 5.50453 3.12274C5.49556 3.12455 5.48665 3.12657 5.47778 3.12879C5.46892 3.13103 5.46012 3.13349 5.45138 3.13615C5.44262 3.13882 5.43395 3.14169 5.42534 3.14479C5.41674 3.14788 5.4082 3.15117 5.39976 3.15466C5.39132 3.15817 5.38297 3.16188 5.37469 3.16579C5.36644 3.1697 5.35828 3.17381 5.35021 3.17812C5.34214 3.18243 5.33419 3.18693 5.32635 3.19162C5.3185 3.19632 5.31078 3.20122 5.30317 3.20628C5.29557 3.21136 5.28809 3.21662 5.28073 3.22205C5.27338 3.22748 5.26616 3.2331 5.25909 3.2389C5.25203 3.24468 5.24509 3.25063 5.23829 3.25676C5.23151 3.26289 5.22487 3.26918 5.2184 3.27562C5.21192 3.28208 5.20561 3.28868 5.19944 3.29544L5.19944 3.29506Z" fill="#FE0000"></path>
</svg>
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论