no message
@ -40,7 +40,7 @@ class SystemController extends AbstractController
|
|||||||
* @apiParam {String} type
|
* @apiParam {String} type
|
||||||
* - get: 获取(默认)
|
* - get: 获取(默认)
|
||||||
* - all: 获取所有(需要管理员权限)
|
* - all: 获取所有(需要管理员权限)
|
||||||
* - save: 保存设置(参数:['reg', 'reg_identity', 'reg_invite', 'temp_account_alias', 'login_code', 'password_policy', 'project_invite', 'chat_information', 'anon_message', 'voice2text', 'translation', 'convert_video', 'compress_video', 'e2e_message', 'auto_archived', 'archived_day', 'task_visible', 'task_default_time', 'all_group_mute', 'all_group_autoin', 'user_private_chat_mute', 'user_group_chat_mute', 'system_alias', 'system_welcome', 'image_compress', 'image_quality', 'image_save_local', 'start_home'])
|
* - save: 保存设置(参数:['reg', 'reg_identity', 'reg_invite', 'temp_account_alias', 'login_code', 'password_policy', 'project_invite', 'chat_information', 'anon_message', 'voice2text', 'translation', 'convert_video', 'compress_video', 'e2e_message', 'auto_archived', 'archived_day', 'task_visible', 'task_default_time', 'all_group_mute', 'all_group_autoin', 'user_private_chat_mute', 'user_group_chat_mute', 'system_alias', 'system_welcome', 'image_compress', 'image_quality', 'image_save_local'])
|
||||||
|
|
||||||
* @apiSuccess {Number} ret 返回状态码(1正确、0错误)
|
* @apiSuccess {Number} ret 返回状态码(1正确、0错误)
|
||||||
* @apiSuccess {String} msg 返回信息(错误描述)
|
* @apiSuccess {String} msg 返回信息(错误描述)
|
||||||
@ -87,7 +87,6 @@ class SystemController extends AbstractController
|
|||||||
'image_compress',
|
'image_compress',
|
||||||
'image_quality',
|
'image_quality',
|
||||||
'image_save_local',
|
'image_save_local',
|
||||||
'start_home',
|
|
||||||
'file_upload_limit',
|
'file_upload_limit',
|
||||||
'unclaimed_task_reminder',
|
'unclaimed_task_reminder',
|
||||||
'unclaimed_task_reminder_time',
|
'unclaimed_task_reminder_time',
|
||||||
@ -149,7 +148,6 @@ class SystemController extends AbstractController
|
|||||||
$setting['all_group_autoin'] = $setting['all_group_autoin'] ?: 'yes';
|
$setting['all_group_autoin'] = $setting['all_group_autoin'] ?: 'yes';
|
||||||
$setting['user_private_chat_mute'] = $setting['user_private_chat_mute'] ?: 'open';
|
$setting['user_private_chat_mute'] = $setting['user_private_chat_mute'] ?: 'open';
|
||||||
$setting['user_group_chat_mute'] = $setting['user_group_chat_mute'] ?: 'open';
|
$setting['user_group_chat_mute'] = $setting['user_group_chat_mute'] ?: 'open';
|
||||||
$setting['start_home'] = $setting['start_home'] ?: 'close';
|
|
||||||
$setting['file_upload_limit'] = $setting['file_upload_limit'] ?: '';
|
$setting['file_upload_limit'] = $setting['file_upload_limit'] ?: '';
|
||||||
$setting['unclaimed_task_reminder'] = $setting['unclaimed_task_reminder'] ?: 'close';
|
$setting['unclaimed_task_reminder'] = $setting['unclaimed_task_reminder'] ?: 'close';
|
||||||
$setting['unclaimed_task_reminder_time'] = $setting['unclaimed_task_reminder_time'] ?: '';
|
$setting['unclaimed_task_reminder_time'] = $setting['unclaimed_task_reminder_time'] ?: '';
|
||||||
|
|||||||
@ -516,6 +516,17 @@ class Apps
|
|||||||
return $output;
|
return $output;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 判断应用是否已安装
|
||||||
|
* @param string $appName 应用名称
|
||||||
|
* @return bool 如果应用已安装返回 true,否则返回 false
|
||||||
|
*/
|
||||||
|
public static function isInstalled(string $appName): bool
|
||||||
|
{
|
||||||
|
$appConfig = self::getAppConfig($appName);
|
||||||
|
return $appConfig['status'] === 'installed';
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取应用的文档(README)
|
* 获取应用的文档(README)
|
||||||
*
|
*
|
||||||
|
|||||||
@ -214,7 +214,6 @@ services:
|
|||||||
- /var/run/docker.sock:/var/run/docker.sock
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
- ./:/var/www
|
- ./:/var/www
|
||||||
environment:
|
environment:
|
||||||
DOO_ENV: "/var/www"
|
|
||||||
HOST_PWD: "${PWD}"
|
HOST_PWD: "${PWD}"
|
||||||
networks:
|
networks:
|
||||||
- extnetwork
|
- extnetwork
|
||||||
|
|||||||
206
public/site/css/about.css
vendored
@ -1,206 +0,0 @@
|
|||||||
/* 头部样式 */
|
|
||||||
.about_green_bg {
|
|
||||||
background: var(--bg-11-url) top right no-repeat;
|
|
||||||
}
|
|
||||||
.head {
|
|
||||||
background-color: transparent !important;
|
|
||||||
}
|
|
||||||
.company-ul {
|
|
||||||
padding: 32px 0;
|
|
||||||
margin-top: 32px;
|
|
||||||
width: 100%;
|
|
||||||
max-width: 1280px;
|
|
||||||
background: var(--bg-fa-color);
|
|
||||||
box-shadow: 0px 2px 8px 4px rgba(0, 0, 0, 0.05);
|
|
||||||
border-radius: 12px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-around;
|
|
||||||
z-index: 2;
|
|
||||||
}
|
|
||||||
.company-ul-item {
|
|
||||||
text-align: center;
|
|
||||||
padding: 0 32px;
|
|
||||||
width: 362px;
|
|
||||||
}
|
|
||||||
.company-ul-item:nth-of-type(1),
|
|
||||||
.company-ul-item:nth-of-type(2) {
|
|
||||||
border-right: 1px solid var(--border-color);
|
|
||||||
}
|
|
||||||
.company-h2 {
|
|
||||||
color: var(--text-color);
|
|
||||||
opacity: 0.5;
|
|
||||||
}
|
|
||||||
.company-h6 {
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
}
|
|
||||||
.company-sup {
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 14px;
|
|
||||||
margin-left: 5px;
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
vertical-align: super;
|
|
||||||
}
|
|
||||||
.company-profile {
|
|
||||||
padding-top: 120px;
|
|
||||||
}
|
|
||||||
.company-profile-con {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 1280px;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
.company-profile-layout {
|
|
||||||
display: flex;
|
|
||||||
align-items: flex-start;
|
|
||||||
justify-content: space-between;
|
|
||||||
padding-bottom: 120px;
|
|
||||||
}
|
|
||||||
.company-profile-l {
|
|
||||||
display: inline-block;
|
|
||||||
height: auto;
|
|
||||||
width: 580px;
|
|
||||||
}
|
|
||||||
.company-profile-r {
|
|
||||||
width: 620px;
|
|
||||||
}
|
|
||||||
.company-profile-h1 {
|
|
||||||
position: relative;
|
|
||||||
color: var(--text-color);
|
|
||||||
width: fit-content;
|
|
||||||
}
|
|
||||||
.company-profile-arcs {
|
|
||||||
display: block;
|
|
||||||
width: 100%;
|
|
||||||
position: absolute;
|
|
||||||
bottom: -28px;
|
|
||||||
left: 0;
|
|
||||||
}
|
|
||||||
.company-profile-h6 {
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
}
|
|
||||||
.company-year,
|
|
||||||
.company-area,
|
|
||||||
.company-size {
|
|
||||||
}
|
|
||||||
@keyframes randomize {
|
|
||||||
from {
|
|
||||||
content: attr(data-value); /* 使用 data-value 属性作为初始值 */
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
content: attr(data-random); /* 使用 data-random 属性作为随机值 */
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.scenario-app {
|
|
||||||
position: relative;
|
|
||||||
padding: 120px 0px;
|
|
||||||
background-color: var(--bg-fa-color);
|
|
||||||
}
|
|
||||||
.scenario-app-con {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 1280px;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
.scenario-app-h1 {
|
|
||||||
text-align: center;
|
|
||||||
color: var(--text-color);
|
|
||||||
}
|
|
||||||
.scenario-app-h6 {
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
}
|
|
||||||
.scenario-app-ul {
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
.scenario-app-ul-item {
|
|
||||||
padding: 24px;
|
|
||||||
background: var(--choose-bg-hover-color);
|
|
||||||
box-shadow: 0px 2px 8px 4px rgba(0, 0, 0, 0.05);
|
|
||||||
border-radius: 12px;
|
|
||||||
width: 576px;
|
|
||||||
height: 225px;
|
|
||||||
position: relative;
|
|
||||||
transition: all 0.3s ease-in-out;
|
|
||||||
}
|
|
||||||
.scenario-app-ul-item:hover {
|
|
||||||
transform: translateY(-16px);
|
|
||||||
}
|
|
||||||
.scenario-app-ul-item-svg {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
}
|
|
||||||
.scenario-app-icon-bg {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
width: 32px;
|
|
||||||
height: 32px;
|
|
||||||
padding: 16px;
|
|
||||||
border-radius: 50%;
|
|
||||||
background-color: var(--txt-theme-color);
|
|
||||||
}
|
|
||||||
.scenario-app-icon {
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
.scenario-app-h5 {
|
|
||||||
font-weight: 600;
|
|
||||||
font-size: 20px;
|
|
||||||
line-height: 25px;
|
|
||||||
color: var(--txt-191a15-color);
|
|
||||||
}
|
|
||||||
.from-submit {
|
|
||||||
display: inline-block;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
/* 底部样式 */
|
|
||||||
.footer-layout {
|
|
||||||
border-top: var(--border-color) solid 1px;
|
|
||||||
}
|
|
||||||
/* 弹框样式 */
|
|
||||||
.BulletBox {
|
|
||||||
position: fixed;
|
|
||||||
display: none;
|
|
||||||
top: 50%;
|
|
||||||
left: 50%;
|
|
||||||
transform: translate(-50%, -50%);
|
|
||||||
padding: 8px;
|
|
||||||
background-color: var(--txt-theme-color);
|
|
||||||
line-height: 20px;
|
|
||||||
text-align: center;
|
|
||||||
z-index: 9999;
|
|
||||||
border: 1px solid transparent;
|
|
||||||
border-radius: 8px;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
#desc_wrap {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
#characterCount {
|
|
||||||
position: absolute;
|
|
||||||
right: 20px;
|
|
||||||
bottom: 7px;
|
|
||||||
z-index: 999;
|
|
||||||
color: #ccc;
|
|
||||||
}
|
|
||||||
#loadingWrap {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
#submitLoading {
|
|
||||||
position: absolute;
|
|
||||||
display: none;
|
|
||||||
left: 42%;
|
|
||||||
width: 18px;
|
|
||||||
height: 18px;
|
|
||||||
border-radius: 50%;
|
|
||||||
animation: spin 3s infinite linear;
|
|
||||||
}
|
|
||||||
@keyframes spin {
|
|
||||||
0% {
|
|
||||||
transform: rotate(0deg);
|
|
||||||
}
|
|
||||||
100% {
|
|
||||||
transform: rotate(360deg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
592
public/site/css/ad.css
vendored
@ -1,592 +0,0 @@
|
|||||||
.ad-wrapper {
|
|
||||||
color: #441726;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-wrapper #ad-banner {
|
|
||||||
background-image: url(../img/ad/banner.png);
|
|
||||||
background-size: cover;
|
|
||||||
background-position: center;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
header .ad {
|
|
||||||
width: 100vw;
|
|
||||||
height: 0;
|
|
||||||
background-color: #fff;
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
z-index: 999;
|
|
||||||
background-size: cover;
|
|
||||||
background-position: center;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
header .ad .ad-content {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
height: 100%;
|
|
||||||
padding: 0 20px;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
header .ad .ad-content .ad-content-left {
|
|
||||||
flex-grow: 1;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
padding-right: 32px;
|
|
||||||
}
|
|
||||||
|
|
||||||
header .ad .ad-content .ad-close {
|
|
||||||
position: absolute;
|
|
||||||
right: 24px;
|
|
||||||
top: 50%;
|
|
||||||
transform: translateY(-50%);
|
|
||||||
cursor: pointer;
|
|
||||||
width: 28px;
|
|
||||||
height: 28px;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
border-radius: 50%;
|
|
||||||
background: rgba(0, 0, 0, 0.2);
|
|
||||||
transition: all 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
header .ad .ad-content .ad-close:hover {
|
|
||||||
background: rgba(0, 0, 0, 0.15);
|
|
||||||
}
|
|
||||||
|
|
||||||
header .ad .ad-content .ad-close img {
|
|
||||||
width: 16px;
|
|
||||||
height: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
header .ad .ad-content .ad-content-left .ad-text {
|
|
||||||
font-size: 28px;
|
|
||||||
font-weight: 600;
|
|
||||||
color: #441726;
|
|
||||||
font-family: Lexend;
|
|
||||||
margin-right: 16px;
|
|
||||||
line-height: 35px;
|
|
||||||
}
|
|
||||||
|
|
||||||
header .ad .ad-content .ad-content-left .ad-btn {
|
|
||||||
height: 36px;
|
|
||||||
min-width: 72px;
|
|
||||||
background: linear-gradient(
|
|
||||||
104.43deg,
|
|
||||||
#fc8c80 1.18%,
|
|
||||||
#f3596e 46.98%,
|
|
||||||
#ee61d4 93.24%
|
|
||||||
);
|
|
||||||
padding: 8px 16px 8px 16px;
|
|
||||||
border-radius: 8px;
|
|
||||||
border: none;
|
|
||||||
font-family: Lexend;
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 500;
|
|
||||||
line-height: 20px;
|
|
||||||
text-align: left;
|
|
||||||
color: #fff;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer.ad-footer {
|
|
||||||
background-color: #1d0f14;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer.ad-footer .dootask {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer.ad-footer .footer-layout {
|
|
||||||
border-top-color: transparent;
|
|
||||||
border-bottom: rgba(231, 233, 228, 0.12) solid 1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-wrapper .arcs {
|
|
||||||
display: inline-block;
|
|
||||||
position: absolute;
|
|
||||||
width: 100%;
|
|
||||||
height: 60px;
|
|
||||||
left: 0;
|
|
||||||
top: 60px;
|
|
||||||
z-index: -1;
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-wrapper .topics .topics-h1-green {
|
|
||||||
color: #f3474c;
|
|
||||||
position: relative;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-wrapper .topics .btn-primary {
|
|
||||||
background: linear-gradient(
|
|
||||||
104.43deg,
|
|
||||||
#ff7155 1.18%,
|
|
||||||
#ef3e56 46.98%,
|
|
||||||
#ee61d4 93.24%
|
|
||||||
);
|
|
||||||
box-shadow: 0px 3px 6px 0px #ff010133;
|
|
||||||
transition: all 0.3s ease-in-out;
|
|
||||||
border: 1px solid transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-wrapper .topics .topics-btn {
|
|
||||||
gap: 16px;
|
|
||||||
|
|
||||||
margin-bottom: 240px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-wrapper .topics .topics-btn .btn {
|
|
||||||
min-width: 120px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-wrapper .topics .btn-primary:hover {
|
|
||||||
background: linear-gradient(
|
|
||||||
-104.43deg,
|
|
||||||
#ff7155 1.18%,
|
|
||||||
#ef3e56 46.98%,
|
|
||||||
#ee61d4 93.24%
|
|
||||||
);
|
|
||||||
border: 1px solid #f3474c;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-wrapper .topics .btn-default {
|
|
||||||
color: #f3474c;
|
|
||||||
background-color: #fff;
|
|
||||||
border: 1px solid #f3474c;
|
|
||||||
box-shadow: 0px 3px 6px 0px #ff010133;
|
|
||||||
transition: all 0.3s ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-wrapper .topics .btn-default:hover {
|
|
||||||
background-color: #f3474c;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-wrapper main {
|
|
||||||
/* background-image: url(../img/ad/plan.png);
|
|
||||||
background-size: cover;
|
|
||||||
background-position: center;
|
|
||||||
background-repeat: no-repeat; */
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-plan {
|
|
||||||
margin-top: -240px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-plan,
|
|
||||||
.ad-intro {
|
|
||||||
background: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.section-wrapper {
|
|
||||||
max-width: 1280px;
|
|
||||||
margin: 0 auto;
|
|
||||||
padding: 0 0 96px 64px;
|
|
||||||
|
|
||||||
display: flex;
|
|
||||||
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
gap: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.section-wrapper .section-title {
|
|
||||||
font-size: 28px;
|
|
||||||
font-weight: 600;
|
|
||||||
color: #441726;
|
|
||||||
}
|
|
||||||
|
|
||||||
.section-wrapper .section-description {
|
|
||||||
font-size: 16px;
|
|
||||||
color: #441726;
|
|
||||||
}
|
|
||||||
|
|
||||||
.section-wrapper .section-content {
|
|
||||||
margin-top: 48px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-plan .section-content {
|
|
||||||
width: 100%;
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(3, 1fr);
|
|
||||||
gap: 32px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-plan .section-content .plan-item {
|
|
||||||
box-shadow: 0px 4px 16px 8px #0000001f;
|
|
||||||
border-radius: 16px;
|
|
||||||
background-color: #fff;
|
|
||||||
|
|
||||||
min-height: 360px;
|
|
||||||
padding: 32px 24px;
|
|
||||||
border: 2px solid transparent;
|
|
||||||
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-plan .section-content .plan-item:hover,
|
|
||||||
.ad-plan .section-content .plan-item.active {
|
|
||||||
border-color: #f3474c;
|
|
||||||
box-shadow: 0px 24px 32px 16px #0000001f;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-plan .section-content .plan-item .plan-item-tag {
|
|
||||||
position: absolute;
|
|
||||||
top: -12px;
|
|
||||||
right: -12px;
|
|
||||||
width: 88px;
|
|
||||||
height: 32px;
|
|
||||||
background-image: url(../img/ad/tag.png);
|
|
||||||
background-size: cover;
|
|
||||||
background-position: center;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: 500;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-plan .section-content .plan-item .plan-item-title {
|
|
||||||
font-size: 18px;
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-plan .section-content .plan-item .plan-item-price {
|
|
||||||
font-family: Lexend;
|
|
||||||
margin-top: 32px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: flex-start;
|
|
||||||
gap: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-plan .section-content .plan-item .plan-item-price .plan-item-price-current {
|
|
||||||
font-size: 32px;
|
|
||||||
font-weight: 900;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-plan
|
|
||||||
.section-content
|
|
||||||
.plan-item
|
|
||||||
.plan-item-price
|
|
||||||
.plan-item-price-current.price {
|
|
||||||
color: #f3474c;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-plan .section-content .plan-item .plan-item-price .plan-item-price-payment {
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: 500;
|
|
||||||
color: #727570;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-plan
|
|
||||||
.section-content
|
|
||||||
.plan-item
|
|
||||||
.plan-item-price
|
|
||||||
.plan-item-price-original {
|
|
||||||
font-size: 14px;
|
|
||||||
color: #727570;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-plan
|
|
||||||
.section-content
|
|
||||||
.plan-item
|
|
||||||
.plan-item-price
|
|
||||||
.plan-item-price-original.price {
|
|
||||||
text-decoration: line-through;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-plan .section-content .plan-item .plan-item-button {
|
|
||||||
margin-top: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-plan .section-content .plan-item .plan-item-button .btn-primary {
|
|
||||||
width: 100%;
|
|
||||||
|
|
||||||
height: 40px;
|
|
||||||
padding: 10px 16px 10px 16px;
|
|
||||||
border-radius: 8px;
|
|
||||||
background: linear-gradient(
|
|
||||||
104.43deg,
|
|
||||||
#ff7155 1.18%,
|
|
||||||
#ef3e56 46.98%,
|
|
||||||
#ee61d4 93.24%
|
|
||||||
);
|
|
||||||
border: none;
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 500;
|
|
||||||
line-height: 20px;
|
|
||||||
text-align: center;
|
|
||||||
color: #fff;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-plan .section-content .plan-item .plan-item-description {
|
|
||||||
margin-top: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-plan
|
|
||||||
.section-content
|
|
||||||
.plan-item
|
|
||||||
.plan-item-description
|
|
||||||
.plan-item-description-list {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-plan
|
|
||||||
.section-content
|
|
||||||
.plan-item
|
|
||||||
.plan-item-description
|
|
||||||
.plan-item-description-item {
|
|
||||||
display: flex;
|
|
||||||
align-items: flex-start;
|
|
||||||
gap: 8px;
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-plan
|
|
||||||
.section-content
|
|
||||||
.plan-item
|
|
||||||
.plan-item-description
|
|
||||||
.plan-item-description-item
|
|
||||||
.plan-item-description-item-icon {
|
|
||||||
width: 18px;
|
|
||||||
height: 18px;
|
|
||||||
display: flex;
|
|
||||||
justify-content: flex-start;
|
|
||||||
align-items: flex-end;
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-plan
|
|
||||||
.section-content
|
|
||||||
.plan-item
|
|
||||||
.plan-item-description
|
|
||||||
.plan-item-description-item
|
|
||||||
.plan-item-description-item-content {
|
|
||||||
color: #727570;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-intro .section-content {
|
|
||||||
width: 100%;
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(2, 1fr);
|
|
||||||
gap: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-intro .section-content .ad-intro-item {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
gap: 16px;
|
|
||||||
background-color: #fff;
|
|
||||||
border-radius: 16px;
|
|
||||||
padding: 24px;
|
|
||||||
position: relative;
|
|
||||||
|
|
||||||
box-shadow: 0px 4px 16px 8px #0000001f;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-intro .section-content .ad-intro-item .ad-intro-item-header {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-intro .section-content .ad-intro-item .ad-intro-item-header img {
|
|
||||||
border-top-left-radius: 16px;
|
|
||||||
border-top-right-radius: 16px;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-intro .section-content .ad-intro-item .ad-intro-item-image {
|
|
||||||
width: 100%;
|
|
||||||
height: 260px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-intro .section-content .ad-intro-item .ad-intro-item-image img {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-intro .section-content .ad-intro-item .ad-intro-item-title {
|
|
||||||
margin-top: 12px;
|
|
||||||
font-size: 18px;
|
|
||||||
font-weight: 600;
|
|
||||||
align-self: flex-start;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-intro .section-content .ad-intro-item .ad-intro-item-description {
|
|
||||||
font-size: 14px;
|
|
||||||
align-self: flex-start;
|
|
||||||
color: #727570;
|
|
||||||
line-height: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width: 1200px) {
|
|
||||||
.ad-plan .section-content {
|
|
||||||
grid-template-columns: repeat(3, 1fr);
|
|
||||||
}
|
|
||||||
|
|
||||||
.section-wrapper {
|
|
||||||
padding: 96px 24px 64px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width: 900px) {
|
|
||||||
.ad-plan .section-content {
|
|
||||||
grid-template-columns: repeat(2, 1fr);
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-intro .section-content {
|
|
||||||
grid-template-columns: repeat(1, 1fr);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width: 768px) {
|
|
||||||
header .ad .ad-content .ad-content-left .ad-text {
|
|
||||||
font-size: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
header .ad .ad-content .ad-content-left .ad-btn {
|
|
||||||
font-size: 14px;
|
|
||||||
height: 28px;
|
|
||||||
line-height: 14px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-plan .section-content {
|
|
||||||
grid-template-columns: repeat(1, 1fr);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-dialog {
|
|
||||||
position: fixed;
|
|
||||||
z-index: 10000;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-dialog.show {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-dialog .ad-dialog-backdrop {
|
|
||||||
position: absolute;
|
|
||||||
z-index: 10010;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
background-color: #0000001f;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-dialog .ad-dialog-wrapper {
|
|
||||||
z-index: 10020;
|
|
||||||
min-height: 200px;
|
|
||||||
min-width: 200px;
|
|
||||||
max-width: 320px;
|
|
||||||
max-height: 480px;
|
|
||||||
|
|
||||||
background-color: #fff;
|
|
||||||
border-radius: 16px;
|
|
||||||
padding: 24px;
|
|
||||||
|
|
||||||
box-shadow: 0px 4px 16px 8px #00000014;
|
|
||||||
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-dialog .ad-dialog-wrapper .ad-dialog-header {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
|
|
||||||
flex-grow: 0;
|
|
||||||
flex-shrink: 0;
|
|
||||||
padding: 8px 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-dialog .ad-dialog-wrapper .ad-dialog-header .ad-dialog-header-img {
|
|
||||||
height: 240px;
|
|
||||||
width: 240px;
|
|
||||||
background-image: url(../img/side_nav_wechat.png);
|
|
||||||
background-size: cover;
|
|
||||||
background-position: center;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-dialog .ad-dialog-wrapper .ad-dialog-content {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
|
|
||||||
flex-grow: 1;
|
|
||||||
flex-shrink: 0;
|
|
||||||
padding: 8px 12px;
|
|
||||||
|
|
||||||
font-size: 14px;
|
|
||||||
color: #727570;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-dialog .ad-dialog-wrapper .ad-dialog-footer {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
|
|
||||||
flex-grow: 0;
|
|
||||||
flex-shrink: 0;
|
|
||||||
padding: 8px 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-dialog .ad-dialog-wrapper .ad-dialog-footer .ad-dialog-footer-btn {
|
|
||||||
width: 100%;
|
|
||||||
|
|
||||||
height: 40px;
|
|
||||||
padding: 10px 16px 10px 16px;
|
|
||||||
border-radius: 8px;
|
|
||||||
background: linear-gradient(
|
|
||||||
104.43deg,
|
|
||||||
#ff7155 1.18%,
|
|
||||||
#ef3e56 46.98%,
|
|
||||||
#ee61d4 93.24%
|
|
||||||
);
|
|
||||||
border: none;
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 500;
|
|
||||||
line-height: 20px;
|
|
||||||
text-align: center;
|
|
||||||
color: #fff;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ad-dialog .ad-dialog-wrapper .ad-dialog-footer .ad-dialog-footer-btn:hover {
|
|
||||||
background: linear-gradient(
|
|
||||||
-104.43deg,
|
|
||||||
#ff7155 1.18%,
|
|
||||||
#ef3e56 46.98%,
|
|
||||||
#ee61d4 93.24%
|
|
||||||
);
|
|
||||||
}
|
|
||||||
7
public/site/css/animate.min.css
vendored
1249
public/site/css/common.css
vendored
223
public/site/css/distribution.css
vendored
@ -1,223 +0,0 @@
|
|||||||
main{
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.bg_fpic1{
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 34vw;
|
|
||||||
max-width: 300px;
|
|
||||||
}
|
|
||||||
.bg_fpic2{
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
width: 34vw;
|
|
||||||
max-width: 300px;
|
|
||||||
}
|
|
||||||
section{
|
|
||||||
width: 100%;
|
|
||||||
height: 100vh;
|
|
||||||
max-width: 768px;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
.content{
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
.layout{
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
flex-direction: column;
|
|
||||||
min-width: 240px;
|
|
||||||
}
|
|
||||||
.icon1{
|
|
||||||
display: none;
|
|
||||||
height: 88px;
|
|
||||||
margin-bottom: 18px;
|
|
||||||
}
|
|
||||||
.name{
|
|
||||||
width: 100%;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
padding-bottom: 20px;
|
|
||||||
|
|
||||||
}
|
|
||||||
.name >i{
|
|
||||||
color: #000;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 28px;
|
|
||||||
line-height: 39px;
|
|
||||||
}
|
|
||||||
.icon2{
|
|
||||||
display: block;
|
|
||||||
height: 32px;
|
|
||||||
margin-right: 8px;
|
|
||||||
}
|
|
||||||
.info{
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.info-t{
|
|
||||||
display: inline-block;
|
|
||||||
margin-bottom: 2px;
|
|
||||||
}
|
|
||||||
.info-t >i{
|
|
||||||
color: #727570;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 12px;
|
|
||||||
line-height: 17px;
|
|
||||||
}
|
|
||||||
.info-b{
|
|
||||||
display: inline-block;
|
|
||||||
color: #727570;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 12px;
|
|
||||||
line-height: 17px;
|
|
||||||
margin-bottom: 36px;
|
|
||||||
}
|
|
||||||
.info-btn{
|
|
||||||
margin-bottom: 16px;
|
|
||||||
}
|
|
||||||
.info-btn >button{
|
|
||||||
min-width: 200px;
|
|
||||||
padding: 10px 24px;
|
|
||||||
border: 1px solid transparent;
|
|
||||||
cursor: pointer;
|
|
||||||
outline: none;
|
|
||||||
position: relative;
|
|
||||||
display: inline-block;
|
|
||||||
white-space: nowrap;
|
|
||||||
text-align: center;
|
|
||||||
user-select: none;
|
|
||||||
touch-action: manipulation;
|
|
||||||
width: 100%;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 16px;
|
|
||||||
line-height: 22px;
|
|
||||||
background: #8BCF70;
|
|
||||||
border-radius: 22px;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
.info-dow{
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
.info-tip{
|
|
||||||
display: none;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 16px;
|
|
||||||
line-height: 22px;
|
|
||||||
color: #8BCF70;
|
|
||||||
opacity: 0.7;
|
|
||||||
}
|
|
||||||
.line-con{
|
|
||||||
width: 100%;
|
|
||||||
height: auto;
|
|
||||||
margin-bottom: 32px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.line1{
|
|
||||||
display: inline-block;
|
|
||||||
width: 100%;
|
|
||||||
height: 1px;
|
|
||||||
background-color: #E7E9E4;
|
|
||||||
}
|
|
||||||
.line2{
|
|
||||||
display: none;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 16px;
|
|
||||||
line-height: 22px;
|
|
||||||
color: #8BCF70;
|
|
||||||
opacity: 0.7;
|
|
||||||
}
|
|
||||||
.operat-tips{
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
right: 10px;
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.operat-con{
|
|
||||||
position: relative;
|
|
||||||
max-width: 152px;
|
|
||||||
}
|
|
||||||
.operat-con .lower_triangle{
|
|
||||||
position: absolute;
|
|
||||||
top: 6px;
|
|
||||||
left: 120px;
|
|
||||||
width: 0;
|
|
||||||
height: 0;
|
|
||||||
border-left: 6px solid transparent;
|
|
||||||
border-right: 6px solid transparent;
|
|
||||||
border-bottom: 4px solid #8BCF70;
|
|
||||||
}
|
|
||||||
.operat-con .group_num{
|
|
||||||
background-color: #8BCF70;
|
|
||||||
|
|
||||||
padding: 6px 12px;;
|
|
||||||
border-radius: 6px;
|
|
||||||
}
|
|
||||||
.operat-con .group_num >p{
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 14px;
|
|
||||||
line-height: 20px;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
.qr_code{
|
|
||||||
width: 160px;
|
|
||||||
height: 160px;
|
|
||||||
background-color: #F2F3F1;
|
|
||||||
border-radius: 12px;
|
|
||||||
margin-bottom: 36px;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.scan{
|
|
||||||
text-align: center;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.scan-txt{
|
|
||||||
display: inline-block;
|
|
||||||
color: #727570;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 14px;
|
|
||||||
line-height: 20px;
|
|
||||||
opacity: 0.7;
|
|
||||||
}
|
|
||||||
.scan-txt-b{
|
|
||||||
display: inline-block;
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
@media screen and (max-width: 768px){
|
|
||||||
.qr_code,.scan{
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.icon1{
|
|
||||||
display: block !important;
|
|
||||||
}
|
|
||||||
.name >i{
|
|
||||||
color: #000;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 18px;
|
|
||||||
line-height: 25px;
|
|
||||||
}
|
|
||||||
.icon2{
|
|
||||||
display: block;
|
|
||||||
height: 24px;
|
|
||||||
margin-right: 8px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.qrcode_box{
|
|
||||||
width: 130px;
|
|
||||||
height: 130px;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
182
public/site/css/download.css
vendored
@ -1,182 +0,0 @@
|
|||||||
/* 头部样式 */
|
|
||||||
.head {
|
|
||||||
text-align: center;
|
|
||||||
background: var(--bg-8-url) top left no-repeat;
|
|
||||||
background-size: contain;
|
|
||||||
}
|
|
||||||
.nav {
|
|
||||||
background-color: var(--pop-bg-color);
|
|
||||||
box-shadow: 0px 4px 9px var(--box-shadow-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
.download-ul {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
width: 70%;
|
|
||||||
}
|
|
||||||
.download-ul-item {
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
.download-ul-item .normal {
|
|
||||||
display: flex;
|
|
||||||
background-color: var(--bg-fa-color);
|
|
||||||
border-radius: 80px;
|
|
||||||
width: 160px;
|
|
||||||
height: 160px;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.download-ul-item .icon {
|
|
||||||
display: block;
|
|
||||||
height: 48px;
|
|
||||||
}
|
|
||||||
.download-ul-item .hover {
|
|
||||||
display: none;
|
|
||||||
width: 160px;
|
|
||||||
height: 160px;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.download-ul-item .hover.radius {
|
|
||||||
background-color: var(--bg-fa-color);
|
|
||||||
border-radius: 80px;
|
|
||||||
width: 160px;
|
|
||||||
height: 160px;
|
|
||||||
}
|
|
||||||
.download-ul-item .qr-code {
|
|
||||||
display: block;
|
|
||||||
height: 100px;
|
|
||||||
}
|
|
||||||
.download-ul-item .txt {
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
}
|
|
||||||
.download-ul-item .hover.radius .txt {
|
|
||||||
color: var(--txt-theme-color);
|
|
||||||
}
|
|
||||||
.chips-txt {
|
|
||||||
color: var(--txt-theme-color);
|
|
||||||
}
|
|
||||||
.download-ul-item .btn:hover .chips-txt {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
.update {
|
|
||||||
position: relative;
|
|
||||||
background-color: var(--bg-fa-color);
|
|
||||||
}
|
|
||||||
.update-con {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 1280px;
|
|
||||||
margin: 0 auto;
|
|
||||||
padding: 120px 0px;
|
|
||||||
z-index: 2;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.update-layout {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.update-h1 {
|
|
||||||
color: var(--text-color);
|
|
||||||
}
|
|
||||||
.update-ul {
|
|
||||||
width: 465px;
|
|
||||||
}
|
|
||||||
.update-item {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
border-bottom: 1px solid var(--border-color);
|
|
||||||
padding: 16px 0;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
.update-item:hover .update-h5 {
|
|
||||||
color: var(--txt-theme-color);
|
|
||||||
}
|
|
||||||
.update-item:hover .time {
|
|
||||||
color: var(--txt-theme-color);
|
|
||||||
}
|
|
||||||
.update-h5 {
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
}
|
|
||||||
.update-item .time {
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
}
|
|
||||||
.update-ul .more-item {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.more-item .more {
|
|
||||||
color: var(--txt-theme-color);
|
|
||||||
margin-right: 8px;
|
|
||||||
cursor: pointer;
|
|
||||||
padding: 16px 0;
|
|
||||||
}
|
|
||||||
.more-item .icon {
|
|
||||||
display: inline-block;
|
|
||||||
width: 8px;
|
|
||||||
height: 12px;
|
|
||||||
line-height: 24px;
|
|
||||||
}
|
|
||||||
.update-bg-svg {
|
|
||||||
background: var(--bg-9-url) no-repeat top right;
|
|
||||||
background-size: contain;
|
|
||||||
}
|
|
||||||
.update-r {
|
|
||||||
max-width: 672px;
|
|
||||||
margin-left: 123px;
|
|
||||||
box-shadow: 0px 2px 8px 4px rgba(0, 0, 0, 0.05);
|
|
||||||
border-radius: 45px;
|
|
||||||
}
|
|
||||||
.update-r-svg {
|
|
||||||
display: block;
|
|
||||||
background: var(--bg-pic1-url) no-repeat;
|
|
||||||
background-size: cover;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
/* 底部布局 */
|
|
||||||
.footer-layout {
|
|
||||||
padding-top: 120px;
|
|
||||||
}
|
|
||||||
.btn-padding {
|
|
||||||
padding: 0 !important;
|
|
||||||
}
|
|
||||||
.btn-padding a {
|
|
||||||
display: block;
|
|
||||||
padding: 10px 16px;
|
|
||||||
}
|
|
||||||
/* 弹框样式 */
|
|
||||||
.BulletBox {
|
|
||||||
position: fixed;
|
|
||||||
display: none;
|
|
||||||
top: 50%;
|
|
||||||
left: 50%;
|
|
||||||
transform: translate(-50%, -50%);
|
|
||||||
padding: 8px;
|
|
||||||
background-color: var(--txt-theme-color);
|
|
||||||
line-height: 20px;
|
|
||||||
text-align: center;
|
|
||||||
z-index: 9999;
|
|
||||||
border: 1px solid transparent;
|
|
||||||
border-radius: 8px;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
.download-other-btn {
|
|
||||||
padding: 10px 16px;
|
|
||||||
border-radius: 8px;
|
|
||||||
margin-top: 64px;
|
|
||||||
margin-bottom: 100px;
|
|
||||||
}
|
|
||||||
.download-other-btn span {
|
|
||||||
opacity: 0.7;
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
}
|
|
||||||
.download-other-btn:hover span {
|
|
||||||
color: var(--txt-theme-color);
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
195
public/site/css/help.css
vendored
@ -1,195 +0,0 @@
|
|||||||
/* 头部样式 */
|
|
||||||
.nav {
|
|
||||||
background-color: var(--pop-bg-color);
|
|
||||||
box-shadow: 0px 4px 9px var(--box-shadow-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
.help {
|
|
||||||
position: relative;
|
|
||||||
margin: 56px 0 96px 0;
|
|
||||||
padding-top: 80px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.help-con {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 1280px;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.help-layout {
|
|
||||||
display: flex;
|
|
||||||
align-items: flex-start;
|
|
||||||
}
|
|
||||||
|
|
||||||
.help-l {
|
|
||||||
display: block;
|
|
||||||
padding: 24px;
|
|
||||||
background: var(--bg-fa-color);
|
|
||||||
border-radius: 8px;
|
|
||||||
margin-right: 32px;
|
|
||||||
height: 95%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.help-h5 {
|
|
||||||
color: var(--text-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
.help-l-ul {
|
|
||||||
width: 240px;
|
|
||||||
overflow: auto;
|
|
||||||
height: 82vh;
|
|
||||||
}
|
|
||||||
|
|
||||||
.l-ul-item.active .txt {
|
|
||||||
color: var(--txt-theme-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
.l-ul-item.active {
|
|
||||||
background-color: var(--bg-hover-color);
|
|
||||||
border-radius: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.l-ul-item:hover {
|
|
||||||
background: var(--bg-hover-color);
|
|
||||||
border-radius: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.txt {
|
|
||||||
/* display: inline-block; */
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
.help-r {
|
|
||||||
padding-left: 32px;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.help-r::-webkit-scrollbar {
|
|
||||||
width: 0 !important
|
|
||||||
}
|
|
||||||
|
|
||||||
.help-pic1 {
|
|
||||||
position: relative;
|
|
||||||
padding-left: 34px;
|
|
||||||
width: auto;
|
|
||||||
height: 240px;
|
|
||||||
background: var(--txt-theme-color);
|
|
||||||
border-radius: 8px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
#help-pic1-svg {
|
|
||||||
height: 100%;
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.help-pic1-tips {
|
|
||||||
max-width: 360px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.help-pic1-tips-h2 {
|
|
||||||
color: #fff;
|
|
||||||
margin-bottom: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.help-pic1-tips-h6 {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.help-h4 {
|
|
||||||
color: var(--text-color) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.help-h6 {
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
.help-h6-bold {
|
|
||||||
color: var(--text-color) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.r-ul-item-pic1 {
|
|
||||||
display: block;
|
|
||||||
max-width: 90%;
|
|
||||||
margin: 12px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.r-ul-item-pic2 {
|
|
||||||
display: block;
|
|
||||||
height: 418px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dots {
|
|
||||||
background: url(../img/dots.svg) no-repeat;
|
|
||||||
width: 4px;
|
|
||||||
height: 4px;
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
left: 10px;
|
|
||||||
top: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.help-t-768 {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
padding: 14px 16px;
|
|
||||||
background: var(--bg-fa-color);
|
|
||||||
border-radius: 8px;
|
|
||||||
margin-top: 16px;
|
|
||||||
cursor: pointer;
|
|
||||||
margin-bottom: 40px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.help-t-prev {
|
|
||||||
display: inline-block;
|
|
||||||
width: 14px;
|
|
||||||
margin-right: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.help-t-tit {
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 16px;
|
|
||||||
line-height: 20px;
|
|
||||||
color: var(--txt-theme-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
.help-drawer {
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
left: -90vw;
|
|
||||||
width: 75vw;
|
|
||||||
height: 100%;
|
|
||||||
padding: 22px 24px;
|
|
||||||
background-color: var(--pop-bg-color);
|
|
||||||
border: 1px solid var(--box-shadow-color);
|
|
||||||
box-shadow: var(--pop-box-shadow);
|
|
||||||
transition: all 0.5s ease-in-out;
|
|
||||||
z-index: 999;
|
|
||||||
}
|
|
||||||
|
|
||||||
.open-help-drawer {
|
|
||||||
left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.help-t-768 {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.filings {
|
|
||||||
border-top: 1px solid var(--border-color);
|
|
||||||
}
|
|
||||||
.help-fiexd{
|
|
||||||
position: sticky;
|
|
||||||
top: 80px;
|
|
||||||
}
|
|
||||||
.help-a{
|
|
||||||
display: block;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
padding: 9px 16px;
|
|
||||||
line-height: normal;
|
|
||||||
}
|
|
||||||
318
public/site/css/home.css
vendored
@ -1,318 +0,0 @@
|
|||||||
/* 头部样式 */
|
|
||||||
.head {
|
|
||||||
text-align: center;
|
|
||||||
background: var(--bg-1-url) top left no-repeat;
|
|
||||||
background-size: cover;
|
|
||||||
}
|
|
||||||
section {
|
|
||||||
background: var(--bg-2-url) bottom left no-repeat;
|
|
||||||
}
|
|
||||||
/* 底部样式 */
|
|
||||||
.footer-layout {
|
|
||||||
border-top: var(--border-color) solid 1px;
|
|
||||||
}
|
|
||||||
.collaboration {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 1280px;
|
|
||||||
max-height: 243px;
|
|
||||||
margin: 0 auto;
|
|
||||||
position: relative;
|
|
||||||
margin-bottom: 120px;
|
|
||||||
}
|
|
||||||
.collaboration-content {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
position: absolute;
|
|
||||||
top: 50%;
|
|
||||||
left: 50%;
|
|
||||||
transform: translate(-50%, -50%);
|
|
||||||
z-index: 5;
|
|
||||||
}
|
|
||||||
/* .collaboration-content-zh{
|
|
||||||
top: 27.7%;
|
|
||||||
left: 36.7%;
|
|
||||||
}
|
|
||||||
.collaboration-content-en{
|
|
||||||
top: 27.7%;
|
|
||||||
left: 28.6%;
|
|
||||||
} */
|
|
||||||
.collaboration-txt {
|
|
||||||
color: #fff;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
/* 合作公司 */
|
|
||||||
.companies {
|
|
||||||
height: 100%;
|
|
||||||
background: var(--bg-fa-color);
|
|
||||||
}
|
|
||||||
.companies-con {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 1280px;
|
|
||||||
margin: 0 auto;
|
|
||||||
padding: 88px 0;
|
|
||||||
}
|
|
||||||
.companies-h1 {
|
|
||||||
text-align: center;
|
|
||||||
color: var(--text-color);
|
|
||||||
}
|
|
||||||
.companies-ul {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-around;
|
|
||||||
margin-top: 56px;
|
|
||||||
}
|
|
||||||
.companies-ul .companies-ul-item {
|
|
||||||
height: 64px;
|
|
||||||
}
|
|
||||||
.companies-ul .companies-ul-item img {
|
|
||||||
height: 100%;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
.ten_img {
|
|
||||||
opacity: 0;
|
|
||||||
animation-name: fadeSlideIn2;
|
|
||||||
animation-duration: 2s;
|
|
||||||
animation-delay: 0.6s;
|
|
||||||
transition-timing-function: ease;
|
|
||||||
animation-fill-mode: forwards;
|
|
||||||
}
|
|
||||||
/* 定义动画 */
|
|
||||||
@keyframes fadeSlideIn2 {
|
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/* 功能卡片 */
|
|
||||||
.card {
|
|
||||||
height: auto;
|
|
||||||
width: 100%;
|
|
||||||
max-width: 1280px;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
.card-pic {
|
|
||||||
max-width: 717px;
|
|
||||||
}
|
|
||||||
.card-con {
|
|
||||||
padding-top: 120px;
|
|
||||||
}
|
|
||||||
.card-con-768 {
|
|
||||||
padding-top: 56px;
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.card-con-layout {
|
|
||||||
display: flex;
|
|
||||||
align-items: flex-start;
|
|
||||||
margin-top: 56px;
|
|
||||||
}
|
|
||||||
.card-h1 {
|
|
||||||
text-align: center;
|
|
||||||
color: var(--text-color);
|
|
||||||
}
|
|
||||||
.card-ul {
|
|
||||||
width: 483px;
|
|
||||||
margin-right: 48px;
|
|
||||||
padding-right: 32px;
|
|
||||||
}
|
|
||||||
.card-768-ul .icon {
|
|
||||||
flex: 1;
|
|
||||||
display: inline-block;
|
|
||||||
padding: 10px;
|
|
||||||
background-color: var(--bg-292c2f-color);
|
|
||||||
box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.05);
|
|
||||||
border-radius: 8px;
|
|
||||||
margin-bottom: 16px;
|
|
||||||
}
|
|
||||||
.card-ul .card-ul-item {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
padding: 24px 16px;
|
|
||||||
border-bottom: 1px solid var(--border-color);
|
|
||||||
cursor: pointer;
|
|
||||||
max-height: 50px;
|
|
||||||
transition: max-height 1s ease;
|
|
||||||
}
|
|
||||||
@keyframes fadeSlideIn3 {
|
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
transform: translateY(30px);
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
transform: translateY(0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.card-ul .card-ul-item:hover {
|
|
||||||
background-color: var(--bg-hover-color);
|
|
||||||
}
|
|
||||||
.card-ul .card-ul-item .icon {
|
|
||||||
flex: 1;
|
|
||||||
display: inline-block;
|
|
||||||
padding: 10px;
|
|
||||||
background-color: var(--bg-292c2f-color);
|
|
||||||
box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.05);
|
|
||||||
border-radius: 8px;
|
|
||||||
margin-right: 24px;
|
|
||||||
}
|
|
||||||
.card-ul .card-ul-item .arrows {
|
|
||||||
display: inline-block;
|
|
||||||
height: 18px;
|
|
||||||
width: 18px;
|
|
||||||
}
|
|
||||||
.card-ul-item-h3 {
|
|
||||||
color: var(--text-color);
|
|
||||||
}
|
|
||||||
.card-ul-item-unfolded {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
flex: 14;
|
|
||||||
}
|
|
||||||
.card-ul-item-expand {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.card-ul-item-expand-tit {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
margin-bottom: 16px;
|
|
||||||
}
|
|
||||||
.card-ul-item-txt {
|
|
||||||
display: inline-block;
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
opacity: 0;
|
|
||||||
animation: fadeSlideIn3 0.5s cubic-bezier(0.61, -0.01, 0.57, 0.96) forwards
|
|
||||||
var(--delay);
|
|
||||||
}
|
|
||||||
@keyframes fadeSlideIn3 {
|
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.card-ul-item.active {
|
|
||||||
align-items: flex-start !important;
|
|
||||||
max-height: 138px;
|
|
||||||
}
|
|
||||||
.card-ul-item.active .arrows {
|
|
||||||
transform: rotate(180deg);
|
|
||||||
}
|
|
||||||
.card-ul-item.active .card-ul-item-unfolded {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.card-ul-item.active .card-ul-item-expand {
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* 为什么选择我们 */
|
|
||||||
.choose {
|
|
||||||
position: relative;
|
|
||||||
height: auto;
|
|
||||||
width: 100%;
|
|
||||||
max-width: 1280px;
|
|
||||||
margin: 0 auto;
|
|
||||||
z-index: 10;
|
|
||||||
}
|
|
||||||
.choose-con {
|
|
||||||
padding: 240px 0 120px 0;
|
|
||||||
}
|
|
||||||
.choose-con-768 {
|
|
||||||
display: none;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
flex-direction: column;
|
|
||||||
padding-bottom: 88px;
|
|
||||||
}
|
|
||||||
.choose-con-768-box {
|
|
||||||
position: relative;
|
|
||||||
width: calc(100vw);
|
|
||||||
overflow-x: hidden;
|
|
||||||
}
|
|
||||||
.zh_choose_768,
|
|
||||||
.en_choose_768 {
|
|
||||||
/* min-height: 257px; */
|
|
||||||
}
|
|
||||||
.choose-con-768-ul {
|
|
||||||
z-index: 99;
|
|
||||||
display: flex;
|
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
top: 10px;
|
|
||||||
transition: all cubic-bezier(0, -0.26, 0.13, 1.04) 0.8s;
|
|
||||||
}
|
|
||||||
.choose-con-768-ul::-webkit-scrollbar {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.choose-con-768-item {
|
|
||||||
padding: 30px 24px;
|
|
||||||
width: calc(100vw - 88px);
|
|
||||||
min-height: 177px;
|
|
||||||
height: 100%;
|
|
||||||
background: var(--choose-bg-hover-color);
|
|
||||||
box-shadow: 0px 2px 8px 4px rgba(0, 0, 0, 0.05);
|
|
||||||
border-radius: 12px;
|
|
||||||
margin: 0 20px;
|
|
||||||
}
|
|
||||||
#card-indicators {
|
|
||||||
position: absolute;
|
|
||||||
bottom: 54px;
|
|
||||||
left: 50%;
|
|
||||||
transform: translateX(-50%);
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
z-index: 99;
|
|
||||||
}
|
|
||||||
.card-indicators-item {
|
|
||||||
list-style: none;
|
|
||||||
margin: 0 5px;
|
|
||||||
width: 10px;
|
|
||||||
height: 10px;
|
|
||||||
border-radius: 50%;
|
|
||||||
background-color: var(--border-color);
|
|
||||||
cursor: pointer;
|
|
||||||
transition: background-color 0.3s ease-in-out;
|
|
||||||
}
|
|
||||||
.card-indicators-item.active {
|
|
||||||
background-color: var(--txt-theme-color);
|
|
||||||
}
|
|
||||||
.arcs2 {
|
|
||||||
display: inline-block;
|
|
||||||
position: absolute;
|
|
||||||
width: 100%;
|
|
||||||
left: 0;
|
|
||||||
bottom: -28px;
|
|
||||||
}
|
|
||||||
.choose-con-ul {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
.choose-con-item {
|
|
||||||
width: calc(18vw + 12px);
|
|
||||||
padding: 24px;
|
|
||||||
}
|
|
||||||
.choose-con-ul .hover {
|
|
||||||
cursor: pointer;
|
|
||||||
transition: all 0.3s ease-in-out;
|
|
||||||
}
|
|
||||||
.choose-con-ul .hover:hover {
|
|
||||||
background-color: var(--choose-bg-hover-color);
|
|
||||||
box-shadow: 0px 2px 8px 4px rgba(0, 0, 0, 0.05);
|
|
||||||
border-radius: 12px;
|
|
||||||
transform: translateY(-16px);
|
|
||||||
}
|
|
||||||
.choose-con-tit {
|
|
||||||
color: var(--text-color);
|
|
||||||
padding-top: 80px;
|
|
||||||
position: relative;
|
|
||||||
width: fit-content;
|
|
||||||
}
|
|
||||||
.home_pic7_768 {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
146
public/site/css/log.css
vendored
@ -1,146 +0,0 @@
|
|||||||
/* 头部样式 */
|
|
||||||
.nav {
|
|
||||||
background-color: var(--pop-bg-color);
|
|
||||||
box-shadow: 0px 4px 9px var(--box-shadow-color);
|
|
||||||
}
|
|
||||||
.logs {
|
|
||||||
position: relative;
|
|
||||||
margin: 136px 0 96px 0;
|
|
||||||
}
|
|
||||||
.logs-con {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 1280px;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
.logs-layout {
|
|
||||||
display: flex;
|
|
||||||
align-items: flex-start;
|
|
||||||
/* height: 929px; */
|
|
||||||
}
|
|
||||||
.logs-l {
|
|
||||||
padding: 24px;
|
|
||||||
background-color: var(--bg-fa-color);
|
|
||||||
border-radius: 8px;
|
|
||||||
margin-right: 32px;
|
|
||||||
height: 95%;
|
|
||||||
}
|
|
||||||
.logs-h5 {
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 16px;
|
|
||||||
line-height: 20px;
|
|
||||||
color: var(--text-color);
|
|
||||||
}
|
|
||||||
.logs-l-ul {
|
|
||||||
width: 240px;
|
|
||||||
}
|
|
||||||
.l-ul-item.active .txt {
|
|
||||||
color: var(--txt-theme-color);
|
|
||||||
}
|
|
||||||
.l-ul-item.active {
|
|
||||||
background-color: var(--bg-hover-color);
|
|
||||||
border-radius: 8px;
|
|
||||||
}
|
|
||||||
.l-ul-item:hover {
|
|
||||||
background-color: var(--bg-hover-color);
|
|
||||||
border-radius: 8px;
|
|
||||||
}
|
|
||||||
.txt {
|
|
||||||
/* display: inline-block; */
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
}
|
|
||||||
.logs-r {
|
|
||||||
border-left: 1px solid var(--border-color);
|
|
||||||
padding-left: 32px;
|
|
||||||
/* height: 929px; */
|
|
||||||
/* overflow-y:scroll; */
|
|
||||||
}
|
|
||||||
.logs-r::-webkit-scrollbar {
|
|
||||||
width: 0 !important;
|
|
||||||
}
|
|
||||||
.logs-h1 {
|
|
||||||
color: var(--text-color);
|
|
||||||
}
|
|
||||||
.logs-h4 {
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 24px;
|
|
||||||
line-height: 30px;
|
|
||||||
color: var(--text-color);
|
|
||||||
padding-top: 15px;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
.r-ol-item {
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.r-ul-item:last-child {
|
|
||||||
margin-bottom: 0 !important;
|
|
||||||
}
|
|
||||||
.dots {
|
|
||||||
background: url(../img/dots.svg) no-repeat;
|
|
||||||
width: 4px;
|
|
||||||
height: 4px;
|
|
||||||
display: inline-block;
|
|
||||||
position: absolute;
|
|
||||||
left: 10px;
|
|
||||||
top: 10px;
|
|
||||||
}
|
|
||||||
.logs-t-768 {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
padding: 14px 16px;
|
|
||||||
background: var(--bg-fa-color);
|
|
||||||
border-radius: 8px;
|
|
||||||
margin-top: 16px;
|
|
||||||
cursor: pointer;
|
|
||||||
margin-bottom: 40px;
|
|
||||||
}
|
|
||||||
.logs-t-prev {
|
|
||||||
display: inline-block;
|
|
||||||
width: 14px;
|
|
||||||
margin-right: 8px;
|
|
||||||
}
|
|
||||||
.logs-t-tit {
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 16px;
|
|
||||||
line-height: 20px;
|
|
||||||
color: var(--txt-theme-color);
|
|
||||||
}
|
|
||||||
.logs-drawer {
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
left: -90vw;
|
|
||||||
width: 75vw;
|
|
||||||
height: 100%;
|
|
||||||
padding: 22px 24px;
|
|
||||||
background-color: var(--pop-bg-color);
|
|
||||||
border: 1px solid var(--box-shadow-color);
|
|
||||||
box-shadow: var(--pop-box-shadow);
|
|
||||||
transition: all 0.5s ease-in-out;
|
|
||||||
z-index: 999;
|
|
||||||
}
|
|
||||||
.open-logs-drawer {
|
|
||||||
left: 0;
|
|
||||||
}
|
|
||||||
.logs-t-768 {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.log-a {
|
|
||||||
display: block;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
padding: 9px 16px;
|
|
||||||
line-height: normal;
|
|
||||||
}
|
|
||||||
.logs-sticky {
|
|
||||||
position: sticky;
|
|
||||||
top: 80px;
|
|
||||||
height: calc(100vh - 136px);
|
|
||||||
}
|
|
||||||
#help-l-ul {
|
|
||||||
overflow-y: auto;
|
|
||||||
height: calc(100% - 36px);
|
|
||||||
}
|
|
||||||
.footer-layout {
|
|
||||||
border-top: var(--border-color) solid 1px;
|
|
||||||
}
|
|
||||||
268
public/site/css/price.css
vendored
@ -1,268 +0,0 @@
|
|||||||
/* 头部样式 */
|
|
||||||
.head {
|
|
||||||
background: var(--bg-10-url) top left no-repeat;
|
|
||||||
background-size: contain;
|
|
||||||
}
|
|
||||||
.price-card {
|
|
||||||
width: 100%;
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
z-index: 2;
|
|
||||||
}
|
|
||||||
.price-card-item {
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: flex-start;
|
|
||||||
padding: 24px;
|
|
||||||
width: 298px;
|
|
||||||
transition: all 0.3s ease-in-out;
|
|
||||||
background: var(--choose-bg-hover-color);
|
|
||||||
border: 1px solid var(--border-color);
|
|
||||||
border-radius: 12px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
.price-card-item:hover {
|
|
||||||
border: 1px solid var(--txt-theme-color);
|
|
||||||
transform: translateY(-16px);
|
|
||||||
}
|
|
||||||
.price-animate-box {
|
|
||||||
opacity: 0;
|
|
||||||
transform: translateY(50%);
|
|
||||||
animation: fadeIn 1s ease-in-out forwards var(--delay); /* 应用动画效果 */
|
|
||||||
}
|
|
||||||
.price-card-item:hover .btn-green {
|
|
||||||
background-color: var(--txt-theme-color);
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
.price-card-h4 {
|
|
||||||
color: var(--text-color);
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
.price-card-item.active {
|
|
||||||
border: 2px solid var(--txt-theme-color);
|
|
||||||
box-shadow: 0px 4px 8px 4px rgba(0, 0, 0, 0.05);
|
|
||||||
}
|
|
||||||
.price-card-item.active .btn-green {
|
|
||||||
background-color: var(--txt-theme-color);
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
.price-card-item.active .btn-green:hover {
|
|
||||||
background-color: var(--btn-hover-color);
|
|
||||||
border-color: var(--btn-hover-color);
|
|
||||||
}
|
|
||||||
.price-card-item.active .price-card-h4 {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
color: var(--txt-theme-color);
|
|
||||||
}
|
|
||||||
.rec-icon {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
align-items: center;
|
|
||||||
padding: 2px 6px;
|
|
||||||
height: 20px;
|
|
||||||
background-color: var(--bg-rec-color);
|
|
||||||
border-radius: 4px;
|
|
||||||
color: #fff;
|
|
||||||
font-size: 14px;
|
|
||||||
line-height: 16px;
|
|
||||||
margin-left: 8px;
|
|
||||||
}
|
|
||||||
.price-card-money {
|
|
||||||
display: flex;
|
|
||||||
align-items: flex-end;
|
|
||||||
}
|
|
||||||
.price-card-h2 {
|
|
||||||
color: var(--text-color);
|
|
||||||
text-align: left;
|
|
||||||
margin-right: 4px;
|
|
||||||
}
|
|
||||||
.price-card-unit {
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
}
|
|
||||||
.price-card-h6 {
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
.price-card-ol-item {
|
|
||||||
display: flex;
|
|
||||||
align-items: flex-start;
|
|
||||||
}
|
|
||||||
.price-card-ol-item .icon {
|
|
||||||
display: inline-block;
|
|
||||||
height: 20px;
|
|
||||||
}
|
|
||||||
.plans-ul-t .plans-ul-t-item:last-child,
|
|
||||||
.plans-ol-item:last-child {
|
|
||||||
border-bottom: none !important;
|
|
||||||
}
|
|
||||||
.plans-ol .plans-ol-item:first-child {
|
|
||||||
background-color: var(--bg-fa-color);
|
|
||||||
padding: 20px 24px !important;
|
|
||||||
}
|
|
||||||
.plans {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.plans-tit-h2 {
|
|
||||||
text-align: center;
|
|
||||||
color: var(--text-color);
|
|
||||||
}
|
|
||||||
.plans-tit-h5 {
|
|
||||||
text-align: center;
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
}
|
|
||||||
.plans-con {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 1280px;
|
|
||||||
margin: 0 auto;
|
|
||||||
z-index: 2;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.plans-layout {
|
|
||||||
padding: 120px 0;
|
|
||||||
}
|
|
||||||
.plans-ul-t-item {
|
|
||||||
border-bottom: 1px solid var(--border-color);
|
|
||||||
}
|
|
||||||
.plans-ul-t-item-h4 {
|
|
||||||
color: var(--text-color);
|
|
||||||
}
|
|
||||||
.plans-ol-item {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
padding: 24px;
|
|
||||||
border-bottom: 1px solid var(--border-color);
|
|
||||||
}
|
|
||||||
.plans-ol-item .plans-ol-item-h6:first-child {
|
|
||||||
color: var(--txt-gray-color) !important;
|
|
||||||
}
|
|
||||||
.plans-ol-item-h6 {
|
|
||||||
color: var(--txt-4ca5);
|
|
||||||
line-height: normal;
|
|
||||||
}
|
|
||||||
.plans-ol-item-icon {
|
|
||||||
display: block;
|
|
||||||
height: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.plans-ol-item-icon2 {
|
|
||||||
display: block;
|
|
||||||
height: 24px;
|
|
||||||
opacity: 0.5;
|
|
||||||
}
|
|
||||||
|
|
||||||
.plans-ul-b {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: 506px 266px 266px 266px;
|
|
||||||
}
|
|
||||||
.plans-ul-b-item-btn {
|
|
||||||
display: inline-block;
|
|
||||||
width: 160px;
|
|
||||||
}
|
|
||||||
.flex-s-c {
|
|
||||||
display: flex;
|
|
||||||
justify-content: flex-start;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.plans-ul-768 {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.plans-ul-768-item:nth-of-type(1),
|
|
||||||
.plans-ul-768-item:nth-of-type(2) {
|
|
||||||
border-bottom: 1px solid var(--border-color);
|
|
||||||
padding-bottom: 36px;
|
|
||||||
}
|
|
||||||
.plans-ol-768-item {
|
|
||||||
border: 1px solid var(--border-color);
|
|
||||||
border-radius: 12px;
|
|
||||||
margin-bottom: 24px;
|
|
||||||
background-color: var(--bg-color);
|
|
||||||
}
|
|
||||||
.plans-ol-768-item .plans-ol-768-content {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
|
||||||
padding: 20px 24px;
|
|
||||||
}
|
|
||||||
.plans-ol-768-item .plans-ol-768-content:nth-child(2n) {
|
|
||||||
background-color: var(--bg-fa-color);
|
|
||||||
}
|
|
||||||
.plans-ol-768-item .plans-ol-768-content:last-child {
|
|
||||||
border-radius: 0 0 12px 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* 底部样式 */
|
|
||||||
.footer-layout {
|
|
||||||
border-top: var(--border-color) solid 1px;
|
|
||||||
}
|
|
||||||
.BulletBox1 {
|
|
||||||
position: fixed;
|
|
||||||
display: none;
|
|
||||||
top: 50%;
|
|
||||||
left: 50%;
|
|
||||||
transform: translate(-50%, -50%);
|
|
||||||
background-color: #fff;
|
|
||||||
width: 430px;
|
|
||||||
text-align: center;
|
|
||||||
z-index: 9999;
|
|
||||||
border: 1px solid transparent;
|
|
||||||
border-radius: 18px;
|
|
||||||
box-sizing: border-box;
|
|
||||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width: 600px) {
|
|
||||||
.BulletBox1 {
|
|
||||||
width: 80%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.BulletBox1 .top {
|
|
||||||
width: 382px;
|
|
||||||
line-height: 20px;
|
|
||||||
padding: 22px 24px 20px 24px;
|
|
||||||
font-size: 18px;
|
|
||||||
color: #303133;
|
|
||||||
font-weight: 500;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
white-space: nowrap;
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
.BulletBox1 .content {
|
|
||||||
width: 100%;
|
|
||||||
box-sizing: border-box;
|
|
||||||
line-height: 1.5;
|
|
||||||
font-size: 14px;
|
|
||||||
padding: 16px 32px 2px 32px;
|
|
||||||
text-align: left;
|
|
||||||
color: rgb(96, 98, 102);
|
|
||||||
}
|
|
||||||
.BulletBox1 .bottom {
|
|
||||||
display: flex;
|
|
||||||
justify-content: end;
|
|
||||||
padding: 20px 30px 22px 30px;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.BulletBox1 .bottom .BulletBox1Btn {
|
|
||||||
min-width: 100px;
|
|
||||||
right: 20px;
|
|
||||||
height: 34px;
|
|
||||||
line-height: 32px;
|
|
||||||
color: #fff;
|
|
||||||
background-color: #8bcf70;
|
|
||||||
border-color: #8bcf70;
|
|
||||||
cursor: pointer;
|
|
||||||
border-radius: 8px;
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.price-ceiling {
|
|
||||||
position: sticky;
|
|
||||||
top: 80px;
|
|
||||||
background-color: var(--bg-color);
|
|
||||||
border-bottom: 1px solid var(--border-color);
|
|
||||||
z-index: 9999;
|
|
||||||
}
|
|
||||||
0
public/site/css/privacy.css
vendored
312
public/site/css/product.css
vendored
@ -1,312 +0,0 @@
|
|||||||
/* 头部样式 */
|
|
||||||
.head.product {
|
|
||||||
position: relative;
|
|
||||||
background: var(--bg-3-url) top right no-repeat;
|
|
||||||
}
|
|
||||||
.prooduct-con {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 1280px;
|
|
||||||
margin: 0 auto;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.prooduct-list {
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
}
|
|
||||||
.prooduct-list .prooduct-list-item {
|
|
||||||
padding: 24px;
|
|
||||||
background-color: var(--bg-fa-color);
|
|
||||||
border: 1px solid var(--border-color);
|
|
||||||
border-radius: 12px;
|
|
||||||
cursor: pointer;
|
|
||||||
margin-right: 32px;
|
|
||||||
width: 100%;
|
|
||||||
margin-bottom: 24px;
|
|
||||||
opacity: 0;
|
|
||||||
animation: fadeIn 0.5s ease-in-out forwards var(--delay); /* 应用动画效果 */
|
|
||||||
}
|
|
||||||
/* 定义动画 */
|
|
||||||
@keyframes fadeIn {
|
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
transform: translateY(50%);
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
transform: translateY(0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.prooduct-list .prooduct-list-item.top {
|
|
||||||
max-width: 180px;
|
|
||||||
}
|
|
||||||
.prooduct-list .prooduct-list-item:nth-of-type(6),
|
|
||||||
.prooduct-list .prooduct-list-item:nth-of-type(10) {
|
|
||||||
margin-right: 0 !important;
|
|
||||||
}
|
|
||||||
.prooduct-list .prooduct-list-item.bot {
|
|
||||||
max-width: 246px;
|
|
||||||
}
|
|
||||||
.prooduct-list .prooduct-list-item:hover {
|
|
||||||
background-color: var(--choose-bg-hover-color);
|
|
||||||
border: 1px solid var(--txt-theme-color);
|
|
||||||
box-shadow: 0px 1px 6px 2px rgba(0, 0, 0, 0.12);
|
|
||||||
}
|
|
||||||
.prooduct-list .prooduct-list-item .icon {
|
|
||||||
width: 48px;
|
|
||||||
display: block;
|
|
||||||
margin-bottom: 16px;
|
|
||||||
}
|
|
||||||
.prooduct-list .prooduct-list-item .txt {
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
}
|
|
||||||
.prooduct-list .active {
|
|
||||||
background-color: var(--choose-bg-hover-color) !important;
|
|
||||||
border: 1px solid var(--txt-theme-color) !important;
|
|
||||||
box-shadow: 0px 2px 8px 4px rgba(0, 0, 0, 0.05) !important;
|
|
||||||
}
|
|
||||||
.prooduct-list .prev,
|
|
||||||
.prooduct-list .next {
|
|
||||||
padding: 14px;
|
|
||||||
background: var(--choose-bg-hover-color);
|
|
||||||
box-shadow: 0px 2px 8px 4px rgba(0, 0, 0, 0.05);
|
|
||||||
border-radius: 8px;
|
|
||||||
cursor: pointer;
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.prooduct-list .prev {
|
|
||||||
margin-right: 16px;
|
|
||||||
}
|
|
||||||
.prooduct-list .next {
|
|
||||||
margin-left: 16px;
|
|
||||||
}
|
|
||||||
.active .txt {
|
|
||||||
color: var(--text-color) !important;
|
|
||||||
}
|
|
||||||
.details {
|
|
||||||
display: none;
|
|
||||||
width: 100%;
|
|
||||||
max-width: 1280px;
|
|
||||||
opacity: 0;
|
|
||||||
transform: translateY(20%); /* 将元素向下移动 50 像素 */
|
|
||||||
animation-name: fadeIn2; /* 指定动画名称 */
|
|
||||||
animation-duration: 1s; /* 动画持续时间为 1 秒 */
|
|
||||||
transition-delay: 1s;
|
|
||||||
transition-timing-function: ease;
|
|
||||||
animation-fill-mode: forwards; /* 元素保持动画结束状态 */
|
|
||||||
}
|
|
||||||
.details.active {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
.details-ul-1280 {
|
|
||||||
display: none;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
justify-content: space-between;
|
|
||||||
padding: 56px 48px;
|
|
||||||
background-color: var(--choose-bg-hover-color);
|
|
||||||
box-shadow: 0px 2px 8px 4px rgba(0, 0, 0, 0.05);
|
|
||||||
border-radius: 12px;
|
|
||||||
}
|
|
||||||
.details-ul-1280 .details-ul-item {
|
|
||||||
width: 48%;
|
|
||||||
}
|
|
||||||
.prooduct-ul {
|
|
||||||
margin: 12px 0 125px 0;
|
|
||||||
}
|
|
||||||
.details-con {
|
|
||||||
display: flex;
|
|
||||||
align-items: flex-start;
|
|
||||||
padding: 56px 48px;
|
|
||||||
background-color: var(--choose-bg-hover-color);
|
|
||||||
box-shadow: 0px 2px 8px 4px rgba(0, 0, 0, 0.05);
|
|
||||||
border-radius: 12px;
|
|
||||||
}
|
|
||||||
/* 定义动画 */
|
|
||||||
@keyframes fadeIn2 {
|
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
transform: translateY(20%);
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
transform: translateY(0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.details-con .pic {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
.details-con .details-ul {
|
|
||||||
margin-left: 56px;
|
|
||||||
}
|
|
||||||
.details-con .details-ul.item4 {
|
|
||||||
width: 764px;
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
.details-con .details-ul.item4 .details-ul-item {
|
|
||||||
width: 364px;
|
|
||||||
}
|
|
||||||
|
|
||||||
main {
|
|
||||||
width: 100%;
|
|
||||||
z-index: 2;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.manage {
|
|
||||||
background-color: var(--bg-fa-color);
|
|
||||||
}
|
|
||||||
.manage-con {
|
|
||||||
padding: 120px 0px;
|
|
||||||
width: 100%;
|
|
||||||
max-width: 1280px;
|
|
||||||
margin: 0 auto;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.manage-t {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.manage-b {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.manage-h1 {
|
|
||||||
color: var(--text-color);
|
|
||||||
}
|
|
||||||
.manage-h3 {
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 20px;
|
|
||||||
line-height: 25px;
|
|
||||||
color: var(--txt-191a15-color);
|
|
||||||
}
|
|
||||||
.manage-h5 {
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
}
|
|
||||||
.manage-h6 {
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
}
|
|
||||||
.manage-h5-768 {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.manage-tit {
|
|
||||||
width: 341px;
|
|
||||||
}
|
|
||||||
.manage-icon {
|
|
||||||
height: 24px;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
.manage-bg {
|
|
||||||
display: block;
|
|
||||||
max-width: 100%;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
.manage-svg {
|
|
||||||
position: relative;
|
|
||||||
box-shadow: 0px 4px 8px 4px rgba(0, 0, 0, 0.05);
|
|
||||||
border-radius: 30px;
|
|
||||||
width: 405px;
|
|
||||||
}
|
|
||||||
.manage-tips {
|
|
||||||
padding: 18px 20px;
|
|
||||||
background: var(--choose-bg-hover-color);
|
|
||||||
box-shadow: 0px 4px 8px 4px rgba(0, 0, 0, 0.05);
|
|
||||||
border-radius: 12px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
position: absolute;
|
|
||||||
top: 42px;
|
|
||||||
left: 100px;
|
|
||||||
width: 76%;
|
|
||||||
}
|
|
||||||
.manage-tips-txt {
|
|
||||||
margin-left: 12px;
|
|
||||||
color: var(--text-color);
|
|
||||||
}
|
|
||||||
.manage-svg-h2 {
|
|
||||||
display: inline-block;
|
|
||||||
position: absolute;
|
|
||||||
bottom: 52px;
|
|
||||||
left: 120px;
|
|
||||||
text-align: end;
|
|
||||||
color: #fff;
|
|
||||||
width: 60%;
|
|
||||||
}
|
|
||||||
.manage-ul-item {
|
|
||||||
display: flex;
|
|
||||||
align-items: flex-start;
|
|
||||||
}
|
|
||||||
.performance {
|
|
||||||
position: relative;
|
|
||||||
background: var(--bg-4-url) top left no-repeat;
|
|
||||||
}
|
|
||||||
.performance-con {
|
|
||||||
padding: 120px 0px;
|
|
||||||
width: 100%;
|
|
||||||
max-width: 1280px;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
.performance-con .pic {
|
|
||||||
display: block;
|
|
||||||
height: auto;
|
|
||||||
}
|
|
||||||
.performance-h1 {
|
|
||||||
color: var(--text-color);
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.performance-ul {
|
|
||||||
display: flex;
|
|
||||||
align-items: flex-start;
|
|
||||||
justify-content: space-between;
|
|
||||||
margin-top: 48px;
|
|
||||||
}
|
|
||||||
.performance-ul-item {
|
|
||||||
width: 248px;
|
|
||||||
}
|
|
||||||
.performance-ul-item .icon {
|
|
||||||
display: inline-block;
|
|
||||||
width: 24px;
|
|
||||||
height: 24px;
|
|
||||||
background-color: var(--txt-theme-color);
|
|
||||||
border-radius: 4px;
|
|
||||||
transform: rotate(45deg);
|
|
||||||
}
|
|
||||||
.performance-h5 {
|
|
||||||
color: var(--txt-191a15-color);
|
|
||||||
}
|
|
||||||
.performance-h6 {
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 16px;
|
|
||||||
line-height: 24px;
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
}
|
|
||||||
.product-animate-box,
|
|
||||||
.product-animate-box2 {
|
|
||||||
opacity: 0;
|
|
||||||
transform: translateY(25%);
|
|
||||||
}
|
|
||||||
.product-animate-box.animate {
|
|
||||||
animation: fadeIn5 0.8s cubic-bezier(0.61, -0.01, 0.57, 0.96) forwards
|
|
||||||
var(--delay); /* 应用动画效果 */
|
|
||||||
}
|
|
||||||
.product-animate-box2.animate {
|
|
||||||
animation: fadeIn5 0.7s cubic-bezier(0.61, -0.01, 0.57, 0.96) forwards
|
|
||||||
var(--delay); /* 应用动画效果 */
|
|
||||||
}
|
|
||||||
/* 定义动画 */
|
|
||||||
@keyframes fadeIn5 {
|
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
transform: translateY(30%);
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
transform: translateY(0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/* 底部样式 */
|
|
||||||
.footer-layout {
|
|
||||||
border-top: var(--border-color) solid 1px;
|
|
||||||
}
|
|
||||||
950
public/site/css/rem.css
vendored
@ -1,950 +0,0 @@
|
|||||||
@media screen and (max-width: 1280px) {
|
|
||||||
.head-con,
|
|
||||||
.companies-con,
|
|
||||||
.card,
|
|
||||||
.choose,
|
|
||||||
.footer-con,
|
|
||||||
.prooduct-con,
|
|
||||||
.manage-con,
|
|
||||||
.performance-con,
|
|
||||||
.app-con,
|
|
||||||
.nav-layout,
|
|
||||||
.update-con,
|
|
||||||
.logs-con,
|
|
||||||
.help-con,
|
|
||||||
.plans-con,
|
|
||||||
.company-profile-con,
|
|
||||||
.scenario-app-con,
|
|
||||||
.footer-t-con,
|
|
||||||
.topics-con,
|
|
||||||
.collaboration {
|
|
||||||
width: calc(100vw - 72px) !important;
|
|
||||||
padding-left: 36px !important;
|
|
||||||
padding-right: 36px !important;
|
|
||||||
}
|
|
||||||
.nav-r {
|
|
||||||
width: 27%;
|
|
||||||
}
|
|
||||||
.nav-ul {
|
|
||||||
width: 42%;
|
|
||||||
}
|
|
||||||
.card-pic {
|
|
||||||
max-width: 50% !important;
|
|
||||||
margin-bottom: 36px !important;
|
|
||||||
}
|
|
||||||
.manage-b,
|
|
||||||
.scenario-app-ul {
|
|
||||||
flex-wrap: wrap;
|
|
||||||
justify-content: center !important;
|
|
||||||
}
|
|
||||||
.update-layout {
|
|
||||||
justify-content: center !important;
|
|
||||||
}
|
|
||||||
.update-l {
|
|
||||||
margin-right: 36px;
|
|
||||||
}
|
|
||||||
.manage-b {
|
|
||||||
display: block !important;
|
|
||||||
}
|
|
||||||
.details,
|
|
||||||
.manage-tit,
|
|
||||||
.company-profile-l {
|
|
||||||
width: calc(100vw - 72px) !important;
|
|
||||||
}
|
|
||||||
.topics-tit {
|
|
||||||
width: calc(100vw - 72px) !important;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.prooduct-list .prooduct-list-item {
|
|
||||||
width: auto !important;
|
|
||||||
max-width: 100% !important;
|
|
||||||
margin-right: 0 !important;
|
|
||||||
margin-bottom: 0 !important;
|
|
||||||
}
|
|
||||||
.prooduct-ul {
|
|
||||||
margin-top: 36px !important;
|
|
||||||
}
|
|
||||||
.manage-ul-item {
|
|
||||||
margin-bottom: 32px !important;
|
|
||||||
}
|
|
||||||
.details-con-item4 {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.details-ul-1280 {
|
|
||||||
display: flex !important;
|
|
||||||
}
|
|
||||||
.app-ul {
|
|
||||||
justify-content: center !important;
|
|
||||||
}
|
|
||||||
.team-ul,
|
|
||||||
.price-card {
|
|
||||||
flex-wrap: wrap !important;
|
|
||||||
justify-content: space-between !important;
|
|
||||||
}
|
|
||||||
.plans-ul-b {
|
|
||||||
flex-wrap: wrap !important;
|
|
||||||
justify-content: flex-start !important;
|
|
||||||
}
|
|
||||||
.team-ul-item,
|
|
||||||
.price-card-item,
|
|
||||||
.plans-ul-b-item {
|
|
||||||
margin-bottom: 32px;
|
|
||||||
}
|
|
||||||
.team-con {
|
|
||||||
width: calc(100vw - 72px) !important;
|
|
||||||
padding: 120px 20px 88px 20px !important;
|
|
||||||
}
|
|
||||||
.download-ul {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.update-r {
|
|
||||||
margin-left: 0 !important;
|
|
||||||
}
|
|
||||||
.grid-4 {
|
|
||||||
grid-template-columns: 32vw 18vw 18vw 18vw !important;
|
|
||||||
}
|
|
||||||
.grid-5 {
|
|
||||||
grid-template-columns: 26vw 18.5vw 18.5vw 18.5vw 18.5vw !important;
|
|
||||||
}
|
|
||||||
.plans-ul-b {
|
|
||||||
grid-template-columns: calc(34vw + 4px) 18vw 18vw 18vw !important;
|
|
||||||
}
|
|
||||||
.scenario-app-ul-item:nth-of-type(3),
|
|
||||||
.app-ul-item:nth-of-type(3) {
|
|
||||||
margin-bottom: 32px !important;
|
|
||||||
}
|
|
||||||
.company-profile-layout {
|
|
||||||
flex-wrap: wrap;
|
|
||||||
justify-content: center !important;
|
|
||||||
}
|
|
||||||
.company-profile-r {
|
|
||||||
margin-top: 48px !important;
|
|
||||||
width: auto !important;
|
|
||||||
}
|
|
||||||
.team-ul-item {
|
|
||||||
width: auto !important;
|
|
||||||
height: auto !important;
|
|
||||||
}
|
|
||||||
.help-pic1 {
|
|
||||||
height: auto !important;
|
|
||||||
}
|
|
||||||
.help-pic1-tips-h2 {
|
|
||||||
margin-bottom: 0 !important;
|
|
||||||
}
|
|
||||||
.help-pic1-tips {
|
|
||||||
position: relative;
|
|
||||||
padding: 12px 0 !important;
|
|
||||||
z-index: 10;
|
|
||||||
max-width: calc(100% - 123px) !important;
|
|
||||||
}
|
|
||||||
.help-pic1-tips-h2 {
|
|
||||||
font-weight: 500 !important;
|
|
||||||
font-size: 16px !important;
|
|
||||||
line-height: 24px !important;
|
|
||||||
margin-bottom: 8px !important;
|
|
||||||
}
|
|
||||||
.help-pic1-tips-h6 {
|
|
||||||
font-weight: 400 !important;
|
|
||||||
font-size: 12px !important;
|
|
||||||
line-height: 16px !important;
|
|
||||||
}
|
|
||||||
.choose-con-ul {
|
|
||||||
justify-content: flex-start !important;
|
|
||||||
}
|
|
||||||
.choose-con-item,
|
|
||||||
.app-ul-item,
|
|
||||||
.scenario-app-ul-item {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.choose-con {
|
|
||||||
padding: 120px 0 56px 0 !important;
|
|
||||||
}
|
|
||||||
.collaboration {
|
|
||||||
/* padding-bottom: 56px !important; */
|
|
||||||
}
|
|
||||||
.price-card-item {
|
|
||||||
width: 22% !important;
|
|
||||||
min-width: 200px !important;
|
|
||||||
}
|
|
||||||
.performance-ul-item {
|
|
||||||
margin-right: 24px !important;
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.performance-ul-item:last-child {
|
|
||||||
margin-right: 0 !important;
|
|
||||||
}
|
|
||||||
.prooduct-list {
|
|
||||||
display: grid !important;
|
|
||||||
grid-template-columns: repeat(3, 1fr) !important;
|
|
||||||
grid-gap: 24px 32px;
|
|
||||||
}
|
|
||||||
.plans-ul-b-item-btn {
|
|
||||||
width: auto !important;
|
|
||||||
}
|
|
||||||
.app-bg-box {
|
|
||||||
max-height: 100% !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width: 1050px) {
|
|
||||||
.nav-ul,
|
|
||||||
.nav-r {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.menuBtn {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
.footer-t-layout {
|
|
||||||
flex-direction: column !important;
|
|
||||||
}
|
|
||||||
.footer-t-l {
|
|
||||||
margin-bottom: 32px;
|
|
||||||
}
|
|
||||||
.price-card-item {
|
|
||||||
width: 358px !important;
|
|
||||||
}
|
|
||||||
.price-card-h2 {
|
|
||||||
font-size: 24px !important;
|
|
||||||
}
|
|
||||||
.plans-ul-t-item-h4 {
|
|
||||||
font-size: 16px !important;
|
|
||||||
}
|
|
||||||
.price-card-unit {
|
|
||||||
font-size: 14px !important;
|
|
||||||
}
|
|
||||||
.update-layout {
|
|
||||||
flex-wrap: wrap;
|
|
||||||
justify-content: center !important;
|
|
||||||
}
|
|
||||||
.update-l {
|
|
||||||
margin-right: 0 !important;
|
|
||||||
}
|
|
||||||
.from-ul {
|
|
||||||
width: calc(100vw - 72px) !important;
|
|
||||||
margin-top: 40px !important;
|
|
||||||
}
|
|
||||||
.update-ul {
|
|
||||||
width: calc(100vw - 72px) !important;
|
|
||||||
}
|
|
||||||
.update-r {
|
|
||||||
max-width: 100% !important;
|
|
||||||
}
|
|
||||||
.topics-h1-green,
|
|
||||||
.topics-h1 {
|
|
||||||
font-size: 56px !important;
|
|
||||||
}
|
|
||||||
.collaboration-txt {
|
|
||||||
font-size: 24px !important;
|
|
||||||
margin-bottom: 8px !important;
|
|
||||||
}
|
|
||||||
.logs-l-ul,
|
|
||||||
.help-l-ul,
|
|
||||||
.search-input {
|
|
||||||
width: 220px !important;
|
|
||||||
}
|
|
||||||
.update-bg-svg {
|
|
||||||
background-size: 62% !important;
|
|
||||||
}
|
|
||||||
.card-ul-item.active {
|
|
||||||
max-height: 307px !important;
|
|
||||||
}
|
|
||||||
.footer_copyright {
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@media screen and (max-width: 768px) and (min-width: 768px) {
|
|
||||||
.download-ul-item:nth-of-type(2) {
|
|
||||||
margin-right: 24px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@media screen and (max-width: 768px) {
|
|
||||||
img {
|
|
||||||
max-width: 100% !important;
|
|
||||||
}
|
|
||||||
.filings {
|
|
||||||
font-size: 14px !important;
|
|
||||||
}
|
|
||||||
.nav-layout {
|
|
||||||
height: 64px !important;
|
|
||||||
}
|
|
||||||
section {
|
|
||||||
background: transparent !important;
|
|
||||||
}
|
|
||||||
#logo {
|
|
||||||
height: 28px !important;
|
|
||||||
}
|
|
||||||
.btn {
|
|
||||||
font-size: 15px !important;
|
|
||||||
line-height: 18px !important;
|
|
||||||
}
|
|
||||||
.companies-ul .companies-ul-item {
|
|
||||||
height: 36px !important;
|
|
||||||
}
|
|
||||||
.topics-con {
|
|
||||||
width: calc(100vw - 40px) !important;
|
|
||||||
padding-top: 100px !important;
|
|
||||||
padding-left: 20px !important;
|
|
||||||
padding-right: 20px !important;
|
|
||||||
}
|
|
||||||
.details,
|
|
||||||
.manage-tit,
|
|
||||||
.company-profile-l {
|
|
||||||
width: calc(100vw - 40px) !important;
|
|
||||||
}
|
|
||||||
.nav {
|
|
||||||
height: 60px !important;
|
|
||||||
}
|
|
||||||
.head-con,
|
|
||||||
.card,
|
|
||||||
.choose,
|
|
||||||
.footer-con,
|
|
||||||
.companies-con,
|
|
||||||
.manage-con,
|
|
||||||
.performance-con,
|
|
||||||
.app-con,
|
|
||||||
.team-con,
|
|
||||||
.update-con,
|
|
||||||
.logs-con,
|
|
||||||
.help-con,
|
|
||||||
.plans-con,
|
|
||||||
.prooduct-con,
|
|
||||||
.scenario-app-con,
|
|
||||||
.footer-t-con,
|
|
||||||
.nav-layout,
|
|
||||||
.company-profile-con,
|
|
||||||
.collaboration {
|
|
||||||
width: calc(100vw - 40px) !important;
|
|
||||||
padding: 0 20px !important;
|
|
||||||
}
|
|
||||||
.company-profile-r {
|
|
||||||
width: 100% !important;
|
|
||||||
margin-top: 0 !important;
|
|
||||||
}
|
|
||||||
.details,
|
|
||||||
.manage-b,
|
|
||||||
.performance-con .pic {
|
|
||||||
width: calc(100vw - 40px) !important;
|
|
||||||
}
|
|
||||||
.manage-b {
|
|
||||||
justify-content: center !important;
|
|
||||||
padding-bottom: 56px;
|
|
||||||
}
|
|
||||||
.topics-h1,
|
|
||||||
.topics-h1-green {
|
|
||||||
font-weight: 600;
|
|
||||||
font-size: 28px !important;
|
|
||||||
line-height: 35px !important;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.topics-tit,
|
|
||||||
.topics-h4 {
|
|
||||||
width: 340px !important;
|
|
||||||
margin-bottom: 20px !important;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.solutions .topics-btn {
|
|
||||||
margin-bottom: 56px !important;
|
|
||||||
}
|
|
||||||
.topics-btn {
|
|
||||||
margin-bottom: 32px !important;
|
|
||||||
}
|
|
||||||
.arcs {
|
|
||||||
top: 26px !important;
|
|
||||||
width: 120px !important;
|
|
||||||
}
|
|
||||||
.companies-h1 {
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 18px;
|
|
||||||
line-height: 22px;
|
|
||||||
}
|
|
||||||
.companies-con {
|
|
||||||
padding: 32px 0 !important;
|
|
||||||
}
|
|
||||||
.companies-ul {
|
|
||||||
margin-top: 24px !important;
|
|
||||||
display: grid !important;
|
|
||||||
grid-template-columns: repeat(2, 50%) !important;
|
|
||||||
grid-template-rows: repeat(2, 50%) !important;
|
|
||||||
justify-items: center !important;
|
|
||||||
}
|
|
||||||
.companies-ul .companies-ul-item:nth-of-type(1),
|
|
||||||
.companies-ul .companies-ul-item:nth-of-type(2) {
|
|
||||||
margin-bottom: 20px !important;
|
|
||||||
}
|
|
||||||
.card-con,
|
|
||||||
.collaboration-bg,
|
|
||||||
.choose-con,
|
|
||||||
.footer-l,
|
|
||||||
.footer-r,
|
|
||||||
.manage-h5-1920,
|
|
||||||
.download-ul-item .hover,
|
|
||||||
.home_pic7 {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.card-con-768,
|
|
||||||
.performance-ul,
|
|
||||||
.help-t-768,
|
|
||||||
.prooduct-list .prev,
|
|
||||||
.prooduct-list .next,
|
|
||||||
.manage-ul-item,
|
|
||||||
.logs-t-768,
|
|
||||||
.plans-ul-768,
|
|
||||||
.manage-h5-768,
|
|
||||||
.home_pic7_768 {
|
|
||||||
display: block !important;
|
|
||||||
}
|
|
||||||
.choose-con-768 {
|
|
||||||
display: flex !important;
|
|
||||||
}
|
|
||||||
.manage-h5-768 {
|
|
||||||
width: 320px !important;
|
|
||||||
}
|
|
||||||
.card-pic {
|
|
||||||
max-width: 100% !important;
|
|
||||||
}
|
|
||||||
.choose-con-768-item,
|
|
||||||
.r-ul-item-pic1 {
|
|
||||||
height: auto !important;
|
|
||||||
}
|
|
||||||
.choose-con-tit {
|
|
||||||
padding-top: 20px !important;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 22px;
|
|
||||||
line-height: 30px;
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 48px;
|
|
||||||
}
|
|
||||||
.manage-h1,
|
|
||||||
.performance-h1,
|
|
||||||
.app-h1,
|
|
||||||
.team-tit,
|
|
||||||
.update-h1 {
|
|
||||||
padding-top: 56px !important;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 22px;
|
|
||||||
line-height: 28px;
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 12px !important;
|
|
||||||
}
|
|
||||||
.manage-b,
|
|
||||||
.app-ul,
|
|
||||||
.team-ul {
|
|
||||||
margin-top: 40px !important;
|
|
||||||
}
|
|
||||||
.manage-icon {
|
|
||||||
margin-bottom: 16px;
|
|
||||||
}
|
|
||||||
.manage-h5,
|
|
||||||
.app-h5,
|
|
||||||
.topics-h4,
|
|
||||||
.scenario-app-h6,
|
|
||||||
.footer-t-h6 {
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 16px;
|
|
||||||
line-height: 24px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.app-h5 {
|
|
||||||
width: 320px !important;
|
|
||||||
}
|
|
||||||
.footer-t-h6 {
|
|
||||||
text-align: start !important;
|
|
||||||
margin-bottom: 32px !important;
|
|
||||||
}
|
|
||||||
.plans-tit-h5 {
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 16px;
|
|
||||||
line-height: 24px;
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 48px !important;
|
|
||||||
}
|
|
||||||
.manage-h3 {
|
|
||||||
margin-bottom: 12px !important;
|
|
||||||
font-size: 18px !important;
|
|
||||||
}
|
|
||||||
.performance-h5,
|
|
||||||
.help-h4,
|
|
||||||
.price-card-h4 {
|
|
||||||
font-size: 18px !important;
|
|
||||||
}
|
|
||||||
.price-card-h4 {
|
|
||||||
margin-bottom: 20px !important;
|
|
||||||
}
|
|
||||||
.price-card-h2 {
|
|
||||||
font-size: 24px !important;
|
|
||||||
}
|
|
||||||
.price-card-h2 {
|
|
||||||
margin-right: 4px;
|
|
||||||
}
|
|
||||||
.manage-ul-item {
|
|
||||||
margin-bottom: 36px !important;
|
|
||||||
}
|
|
||||||
.performance-ul {
|
|
||||||
margin-top: 36px !important;
|
|
||||||
}
|
|
||||||
.arcs2 {
|
|
||||||
width: 170px !important;
|
|
||||||
left: 4px !important;
|
|
||||||
bottom: -12px !important;
|
|
||||||
}
|
|
||||||
.collaboration-txt {
|
|
||||||
font-size: 20px !important;
|
|
||||||
max-width: 280px !important;
|
|
||||||
}
|
|
||||||
.collaboration {
|
|
||||||
margin-bottom: 56px !important;
|
|
||||||
max-height: inherit !important;
|
|
||||||
}
|
|
||||||
.footer-layout {
|
|
||||||
border-bottom: none !important;
|
|
||||||
padding: 0 !important;
|
|
||||||
}
|
|
||||||
.prooduct-list {
|
|
||||||
display: flex !important;
|
|
||||||
flex-wrap: nowrap !important;
|
|
||||||
margin-bottom: 24px !important;
|
|
||||||
justify-content: space-between !important;
|
|
||||||
align-items: center !important;
|
|
||||||
grid-gap: 0 !important;
|
|
||||||
}
|
|
||||||
.prooduct-list .active {
|
|
||||||
display: flex !important;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.prooduct-list .prooduct-list-item.top {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.prooduct-list .prooduct-list-item {
|
|
||||||
display: none;
|
|
||||||
padding: 16px !important;
|
|
||||||
margin: 0 !important;
|
|
||||||
}
|
|
||||||
.prooduct-list .prooduct-list-item .icon {
|
|
||||||
width: 28px !important;
|
|
||||||
margin-bottom: 0 !important;
|
|
||||||
margin-right: 12px !important;
|
|
||||||
}
|
|
||||||
.prooduct-list .prooduct-list-item .txt {
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 16px;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
.prooduct-ul {
|
|
||||||
margin: 0 0 56px 0 !important;
|
|
||||||
}
|
|
||||||
.performance {
|
|
||||||
background: var(--bg-768-4-url) top left no-repeat !important;
|
|
||||||
}
|
|
||||||
.about_green_bg {
|
|
||||||
background: var(--bg-768-9-url) top right no-repeat !important;
|
|
||||||
}
|
|
||||||
.head.product {
|
|
||||||
background: var(--bg-768-3-url) top left no-repeat !important;
|
|
||||||
}
|
|
||||||
.head.price {
|
|
||||||
background: var(--bg-768-8-url) top left no-repeat !important;
|
|
||||||
}
|
|
||||||
.head.dow {
|
|
||||||
background: var(--bg-768-7-url) top left no-repeat !important;
|
|
||||||
}
|
|
||||||
.head.solutions {
|
|
||||||
background: var(--bg-768-5-url) top right no-repeat !important;
|
|
||||||
}
|
|
||||||
.team.solutions {
|
|
||||||
background: var(--bg-768-6-url) top right no-repeat !important;
|
|
||||||
}
|
|
||||||
.details-con .pic {
|
|
||||||
margin-bottom: 36px;
|
|
||||||
}
|
|
||||||
.choose-con-item-h5,
|
|
||||||
.app-h4,
|
|
||||||
.scenario-app-h5 {
|
|
||||||
font-size: 18px !important;
|
|
||||||
}
|
|
||||||
.choose-con-item-h6,
|
|
||||||
.app-h6,
|
|
||||||
.company-profile-h6,
|
|
||||||
.scenario-app-h6,
|
|
||||||
.footer-t-contact-h6,
|
|
||||||
.update-h5,
|
|
||||||
.performance-h6,
|
|
||||||
.manage-h6,
|
|
||||||
.download-ul-item .txt,
|
|
||||||
.update-item .time,
|
|
||||||
.price-card-unit,
|
|
||||||
.price-card-h6 {
|
|
||||||
font-size: 15px !important;
|
|
||||||
}
|
|
||||||
.details-ul-item {
|
|
||||||
margin-bottom: 32px !important;
|
|
||||||
}
|
|
||||||
.details-ul-item:last-child {
|
|
||||||
margin-bottom: 0 !important;
|
|
||||||
}
|
|
||||||
.serial-number {
|
|
||||||
font-size: 32px !important;
|
|
||||||
}
|
|
||||||
.details-ul-1280,
|
|
||||||
.details-con {
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
padding: 30px 24px !important;
|
|
||||||
}
|
|
||||||
.details-ul-1280 .details-ul-item,
|
|
||||||
.update-ul,
|
|
||||||
.update-l {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.details-con .details-ul {
|
|
||||||
margin-left: 0 !important;
|
|
||||||
}
|
|
||||||
.performance-con .pic {
|
|
||||||
margin-top: 40px !important;
|
|
||||||
}
|
|
||||||
.performance-ul-item {
|
|
||||||
width: auto !important;
|
|
||||||
margin-bottom: 40px;
|
|
||||||
}
|
|
||||||
.app-bg {
|
|
||||||
margin-bottom: 16px !important;
|
|
||||||
}
|
|
||||||
.app-h4 {
|
|
||||||
margin-bottom: 12px !important;
|
|
||||||
}
|
|
||||||
.app-ul-item {
|
|
||||||
width: auto !important;
|
|
||||||
margin-bottom: 36px !important;
|
|
||||||
}
|
|
||||||
.team-ul-item {
|
|
||||||
padding: 30px 24px !important;
|
|
||||||
}
|
|
||||||
.download-ul {
|
|
||||||
flex-wrap: wrap !important;
|
|
||||||
justify-content: center !important;
|
|
||||||
padding-bottom: 32px !important;
|
|
||||||
padding-top: 12px !important;
|
|
||||||
}
|
|
||||||
.download-ul-item {
|
|
||||||
margin-bottom: 24px;
|
|
||||||
}
|
|
||||||
.download-ul-item .normal,
|
|
||||||
.download-ul-item .hover.radius,
|
|
||||||
.download-ul-item .hover {
|
|
||||||
width: 120px !important;
|
|
||||||
height: 120px !important;
|
|
||||||
}
|
|
||||||
.download-ul-item .icon {
|
|
||||||
height: 36px !important;
|
|
||||||
}
|
|
||||||
.download-ul-item:nth-of-type(odd) {
|
|
||||||
margin-right: 24px;
|
|
||||||
}
|
|
||||||
.update-bg-svg {
|
|
||||||
background: none !important;
|
|
||||||
}
|
|
||||||
.update-r {
|
|
||||||
margin-bottom: 56px;
|
|
||||||
margin-top: 28px;
|
|
||||||
}
|
|
||||||
.logs-l,
|
|
||||||
.help-l,
|
|
||||||
.plans-ul-t,
|
|
||||||
.plans-ul-b {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.logs-r,
|
|
||||||
.help-r {
|
|
||||||
border: none !important;
|
|
||||||
padding-left: 0 !important;
|
|
||||||
}
|
|
||||||
.logs-h1,
|
|
||||||
.plans-tit-h2 {
|
|
||||||
font-weight: 600;
|
|
||||||
font-size: 22px !important;
|
|
||||||
line-height: 28px !important;
|
|
||||||
}
|
|
||||||
.company-profile-h1 {
|
|
||||||
margin-bottom: 34px !important;
|
|
||||||
margin-top: 40px !important;
|
|
||||||
font-weight: 500 !important;
|
|
||||||
font-size: 22px !important;
|
|
||||||
line-height: 28px !important;
|
|
||||||
}
|
|
||||||
.logs-h4 {
|
|
||||||
font-size: 18px !important;
|
|
||||||
line-height: 22px !important;
|
|
||||||
}
|
|
||||||
.r-ol-item,
|
|
||||||
.help-h6,
|
|
||||||
.l-ul-item .txt {
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 15px !important;
|
|
||||||
line-height: 24px !important;
|
|
||||||
}
|
|
||||||
.logs {
|
|
||||||
margin: 0 !important;
|
|
||||||
padding-bottom: 56px !important;
|
|
||||||
}
|
|
||||||
.help {
|
|
||||||
margin: 0 !important;
|
|
||||||
padding-bottom: 20px !important;
|
|
||||||
}
|
|
||||||
.l-ul-item {
|
|
||||||
padding: 12px 0 !important;
|
|
||||||
}
|
|
||||||
.logs-h5 {
|
|
||||||
margin-top: 10px;
|
|
||||||
font-weight: 400 !important;
|
|
||||||
font-size: 18px !important;
|
|
||||||
line-height: 20px !important;
|
|
||||||
}
|
|
||||||
.help-pic1 {
|
|
||||||
height: calc(50vw / 2 + 10px) !important;
|
|
||||||
padding-left: 14px !important;
|
|
||||||
}
|
|
||||||
.help-pic1-tips-h2 {
|
|
||||||
font-weight: 500 !important;
|
|
||||||
font-size: 16px !important;
|
|
||||||
line-height: 24px !important;
|
|
||||||
margin-bottom: 8px !important;
|
|
||||||
}
|
|
||||||
.help-pic1-tips-h6 {
|
|
||||||
font-weight: 400 !important;
|
|
||||||
font-size: 12px !important;
|
|
||||||
line-height: 16px !important;
|
|
||||||
}
|
|
||||||
.help-pic1-tips {
|
|
||||||
max-width: 160px !important;
|
|
||||||
}
|
|
||||||
#help_pic2 {
|
|
||||||
height: calc(60vw - 40px) !important;
|
|
||||||
}
|
|
||||||
#help_pic3 {
|
|
||||||
height: calc(80vw - 60px) !important;
|
|
||||||
}
|
|
||||||
.price-card {
|
|
||||||
flex-direction: column !important;
|
|
||||||
}
|
|
||||||
.price-card-item {
|
|
||||||
width: 100% !important;
|
|
||||||
height: 100% !important;
|
|
||||||
}
|
|
||||||
.price-card-item:last-of-type {
|
|
||||||
margin-bottom: 0 !important;
|
|
||||||
}
|
|
||||||
.plans-layout {
|
|
||||||
padding: 56px 0 !important;
|
|
||||||
}
|
|
||||||
.company-profile {
|
|
||||||
width: 100% !important;
|
|
||||||
margin-top: 56px;
|
|
||||||
padding-top: 0 !important;
|
|
||||||
}
|
|
||||||
.company-profile-layout,
|
|
||||||
.footer-t-layout {
|
|
||||||
flex-direction: column !important;
|
|
||||||
}
|
|
||||||
.company-profile-arcs {
|
|
||||||
bottom: -20px !important;
|
|
||||||
left: 0 !important;
|
|
||||||
}
|
|
||||||
.company-h2 {
|
|
||||||
font-weight: 500 !important;
|
|
||||||
font-size: 20px !important;
|
|
||||||
line-height: 30px !important;
|
|
||||||
}
|
|
||||||
.company-h6 {
|
|
||||||
font-weight: 400 !important;
|
|
||||||
font-size: 12px !important;
|
|
||||||
line-height: 15px !important;
|
|
||||||
}
|
|
||||||
.company-ul {
|
|
||||||
width: 100% !important;
|
|
||||||
padding: 24px 0 !important;
|
|
||||||
margin-top: 12px !important;
|
|
||||||
}
|
|
||||||
.company-ul-item {
|
|
||||||
padding: 0 24px !important;
|
|
||||||
}
|
|
||||||
.scenario-app,
|
|
||||||
.footer-t {
|
|
||||||
padding: 56px 0 !important ;
|
|
||||||
}
|
|
||||||
.scenario-app-h1,
|
|
||||||
.footer-t-h1 {
|
|
||||||
font-weight: 500 !important;
|
|
||||||
font-size: 22px !important;
|
|
||||||
line-height: 28px !important;
|
|
||||||
}
|
|
||||||
.scenario-app-ul-item .scenario-app-h6 {
|
|
||||||
text-align: start !important;
|
|
||||||
}
|
|
||||||
.scenario-app-ul-item,
|
|
||||||
.footer-t-l {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.from-ul {
|
|
||||||
width: calc(100vw - 40px) !important;
|
|
||||||
margin-top: 8px !important;
|
|
||||||
}
|
|
||||||
.app-con,
|
|
||||||
.team-con {
|
|
||||||
padding-top: 0 !important;
|
|
||||||
padding-bottom: 24px !important;
|
|
||||||
}
|
|
||||||
.card-ul-item-txt,
|
|
||||||
.prooduct-list .prooduct-list-item,
|
|
||||||
.details-con {
|
|
||||||
opacity: 1 !important;
|
|
||||||
animation: normal !important;
|
|
||||||
}
|
|
||||||
.details-con {
|
|
||||||
transform: translateY(0) !important;
|
|
||||||
}
|
|
||||||
.company-profile-layout {
|
|
||||||
padding-bottom: 56px !important;
|
|
||||||
}
|
|
||||||
.footer-t-h1 {
|
|
||||||
margin-bottom: 32px !important;
|
|
||||||
}
|
|
||||||
.logs-layout,
|
|
||||||
.team-ul-item,
|
|
||||||
.scenario-app-ul-item {
|
|
||||||
height: auto !important;
|
|
||||||
}
|
|
||||||
.logs-r {
|
|
||||||
height: auto !important;
|
|
||||||
overflow: auto !important;
|
|
||||||
}
|
|
||||||
.manage-svg {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.manage-bg {
|
|
||||||
width: 100% !important;
|
|
||||||
margin-top: 0 !important;
|
|
||||||
}
|
|
||||||
.manage-tips {
|
|
||||||
top: 42px !important;
|
|
||||||
right: 0 !important;
|
|
||||||
width: auto !important;
|
|
||||||
}
|
|
||||||
.manage-tips-txt {
|
|
||||||
font-size: 16px !important;
|
|
||||||
line-height: 20px !important;
|
|
||||||
}
|
|
||||||
.manage-svg-h2 {
|
|
||||||
bottom: 52px;
|
|
||||||
right: 22px;
|
|
||||||
width: 45% !important;
|
|
||||||
font-size: 28px !important;
|
|
||||||
line-height: 40px !important;
|
|
||||||
}
|
|
||||||
.prooduct-list .prooduct-list-item.bot {
|
|
||||||
width: auto !important;
|
|
||||||
}
|
|
||||||
.head.product {
|
|
||||||
background-size: contain !important;
|
|
||||||
}
|
|
||||||
.details-ul-item:nth-of-type(4) {
|
|
||||||
margin-bottom: 32px !important;
|
|
||||||
}
|
|
||||||
.card-h1 {
|
|
||||||
margin-bottom: 40px !important;
|
|
||||||
}
|
|
||||||
.card-con-layout {
|
|
||||||
margin-top: 0 !important;
|
|
||||||
}
|
|
||||||
.bg-style {
|
|
||||||
background: transparent !important;
|
|
||||||
}
|
|
||||||
.logo {
|
|
||||||
width: 32px !important;
|
|
||||||
}
|
|
||||||
.dootask {
|
|
||||||
margin-left: 12px !important;
|
|
||||||
}
|
|
||||||
.price-card-item > .price-card-h6 {
|
|
||||||
height: auto !important;
|
|
||||||
margin-bottom: 20px !important;
|
|
||||||
}
|
|
||||||
.scenario-app-layout > .scenario-app-h6 {
|
|
||||||
margin-bottom: 48px !important;
|
|
||||||
}
|
|
||||||
.update-h1 {
|
|
||||||
margin-bottom: 28px !important;
|
|
||||||
}
|
|
||||||
.logs-t-768 {
|
|
||||||
margin-top: 96px !important;
|
|
||||||
}
|
|
||||||
#help-pic1-svg {
|
|
||||||
width: 44%;
|
|
||||||
}
|
|
||||||
.en_choose_768 {
|
|
||||||
min-height: 378px !important;
|
|
||||||
}
|
|
||||||
.plans-ol-768-content .plans-ol-item-h6:first-child {
|
|
||||||
color: var(--txt-gray-color) !important;
|
|
||||||
}
|
|
||||||
.plans-ol-768-content .plans-ol-item-h6:last-child {
|
|
||||||
color: var(--txt-4ca5) !important;
|
|
||||||
}
|
|
||||||
.scenario-app-ul-item-svg {
|
|
||||||
width: 140px !important;
|
|
||||||
}
|
|
||||||
.scenario-app-ul-item:hover,
|
|
||||||
.price-card-item:hover,
|
|
||||||
.team-ul-item:hover {
|
|
||||||
transform: none !important;
|
|
||||||
}
|
|
||||||
.topics-tit,
|
|
||||||
.topics-btn,
|
|
||||||
.topics-h4,
|
|
||||||
.ten_img,
|
|
||||||
.details,
|
|
||||||
.price-animate-box {
|
|
||||||
opacity: 1 !important;
|
|
||||||
animation: normal !important;
|
|
||||||
transform: none !important;
|
|
||||||
}
|
|
||||||
.about-animate-box,
|
|
||||||
.solutions-animate-box,
|
|
||||||
.home-animate-box,
|
|
||||||
.dow-animate-box,
|
|
||||||
.product-animate-box,
|
|
||||||
.product-animate-box2 {
|
|
||||||
opacity: 1 !important;
|
|
||||||
transform: none !important;
|
|
||||||
}
|
|
||||||
.about-animate-box.animate,
|
|
||||||
.price-animate-box.animate,
|
|
||||||
.solutions-animate-box.animate,
|
|
||||||
.home-animate-box.animate,
|
|
||||||
.dow-animate-box.animate,
|
|
||||||
#arc {
|
|
||||||
animation: normal !important;
|
|
||||||
}
|
|
||||||
.drawer-ul {
|
|
||||||
overflow: auto;
|
|
||||||
height: 82vh;
|
|
||||||
}
|
|
||||||
.home_pic7_768 {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
.help-l-ul {
|
|
||||||
width: auto !important;
|
|
||||||
}
|
|
||||||
.footer_copyright {
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
#cookieConsent {
|
|
||||||
width: 90% !important;
|
|
||||||
right: 0 !important;
|
|
||||||
left: 0;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
.download-other-btn {
|
|
||||||
margin-top: 0px !important;
|
|
||||||
margin-bottom: 56px !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
140
public/site/css/side_nav.css
vendored
@ -1,140 +0,0 @@
|
|||||||
@font-face {
|
|
||||||
font-family: "official.iconfont";
|
|
||||||
src: url("../font/side_nav_font.woff");
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal
|
|
||||||
}
|
|
||||||
|
|
||||||
.side_nav{
|
|
||||||
position: fixed;
|
|
||||||
right: 20px;
|
|
||||||
bottom: 135px;
|
|
||||||
z-index: 100;
|
|
||||||
}
|
|
||||||
.side_nav .side_toolbars{
|
|
||||||
width: 48px;
|
|
||||||
padding: 4px;
|
|
||||||
box-sizing: border-box;
|
|
||||||
border-radius: 60px;
|
|
||||||
background-color: var(--pop-bg-color);
|
|
||||||
color: var(--text-color);
|
|
||||||
box-shadow: var(--pop-box-shadow);
|
|
||||||
}
|
|
||||||
.side_nav .side_toolbars .side_toolbar_item{
|
|
||||||
display: flex;
|
|
||||||
width: 40px;
|
|
||||||
height: 40px;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
border-radius: 50%;
|
|
||||||
cursor: pointer;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.side_nav .side_toolbars .side_toolbar_item .toolbar_font{
|
|
||||||
font-size: 24px;
|
|
||||||
height: 24px;
|
|
||||||
color: var(--text-color);
|
|
||||||
}
|
|
||||||
.side_nav .side_toolbars .side_toolbar_item .toolbar_font::after{
|
|
||||||
display: inline-block;
|
|
||||||
font-family: "official.iconfont";
|
|
||||||
font-style: normal;
|
|
||||||
font-weight: normal;
|
|
||||||
line-height: 1;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
}
|
|
||||||
.side_nav .side_toolbars .side_toolbar_item .font_phone::after{
|
|
||||||
content: "\EA25";
|
|
||||||
}
|
|
||||||
.side_nav .side_toolbars .side_toolbar_item .font_qrcode::after{
|
|
||||||
content: "\EA28";
|
|
||||||
}
|
|
||||||
.side_nav .side_toolbars .side_toolbar_item .toolbar_tooltip{
|
|
||||||
position: absolute;
|
|
||||||
right: 40px;
|
|
||||||
top: 2px;
|
|
||||||
transform-origin: right center;
|
|
||||||
white-space: nowrap;
|
|
||||||
width: fit-content;
|
|
||||||
display: none;
|
|
||||||
background-color: var(--code-bg-color);
|
|
||||||
color: #fff;
|
|
||||||
margin-right: 12px;
|
|
||||||
border-radius: 4px;
|
|
||||||
padding: 10px;
|
|
||||||
z-index: 2000;
|
|
||||||
font-size: 12px;
|
|
||||||
line-height: 1.2;
|
|
||||||
min-width: 10px;
|
|
||||||
word-wrap: break-word;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.side_nav .side_toolbars .side_toolbar_item .toolbar_tooltip .toolbar_whtasapp{
|
|
||||||
width: 120px;
|
|
||||||
height: 120px;
|
|
||||||
background-image: url('../img/side_nav_whatsapp.png');
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-size: cover;
|
|
||||||
}
|
|
||||||
.side_nav .side_toolbars .side_toolbar_item .toolbar_tooltip .toolbar_qrcode{
|
|
||||||
width: 120px;
|
|
||||||
height: 120px;
|
|
||||||
background-image: url('../img/side_nav_wechat.png');
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-size: cover;
|
|
||||||
}
|
|
||||||
.side_nav .side_toolbars .side_toolbar_item .toolbar_tooltip .tooltip_arrow{
|
|
||||||
position: absolute;
|
|
||||||
display: block;
|
|
||||||
width: 0;
|
|
||||||
height: 0;
|
|
||||||
border-color: transparent;
|
|
||||||
border-style: solid;
|
|
||||||
right: -5px;
|
|
||||||
top: 11px;
|
|
||||||
border-width: 6px;
|
|
||||||
border-right-width: 0;
|
|
||||||
border-left-color: var(--code-bg-color);
|
|
||||||
}
|
|
||||||
.side_nav .side_to_top{
|
|
||||||
width: 48px;
|
|
||||||
height: 48px;
|
|
||||||
background: #fff;
|
|
||||||
margin-top: 16px;
|
|
||||||
border-radius: 50%;
|
|
||||||
cursor: pointer;
|
|
||||||
position: relative;
|
|
||||||
display: none;
|
|
||||||
background-color: var(--pop-bg-color);
|
|
||||||
color: var(--text-color);
|
|
||||||
box-shadow: var(--pop-box-shadow);
|
|
||||||
}
|
|
||||||
.side_nav .side_to_top .side_to_top_wrapper{
|
|
||||||
height: 40px;
|
|
||||||
width: 40px;
|
|
||||||
padding: 4px;
|
|
||||||
display: flex;
|
|
||||||
box-sizing: border-box;
|
|
||||||
border-radius: 50%;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
position: absolute;
|
|
||||||
top: 50%;
|
|
||||||
left: 50%;
|
|
||||||
transform: translate(-50%, -50%);
|
|
||||||
}
|
|
||||||
.side_nav .side_to_top .side_to_top_wrapper svg{
|
|
||||||
transform: rotate(180deg);
|
|
||||||
fill: var(--text-color);
|
|
||||||
height: 24px;
|
|
||||||
width: 24px;
|
|
||||||
}
|
|
||||||
.font_whatsapp svg{
|
|
||||||
fill: var(--text-color);
|
|
||||||
}
|
|
||||||
.side_nav .side_toolbars .side_toolbar_item:hover,.side_nav .side_to_top .side_to_top_wrapper:hover{
|
|
||||||
background-color: var(--bg-hover-color);
|
|
||||||
}
|
|
||||||
#toolbar_tooltip_phone,#toolbar_tooltip_whtasapp,#toolbar_tooltip_qrcode{
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
116
public/site/css/solution.css
vendored
@ -1,116 +0,0 @@
|
|||||||
/* 头部样式 */
|
|
||||||
.head {
|
|
||||||
text-align: center;
|
|
||||||
background: var(--bg-5-url) top center no-repeat;
|
|
||||||
background-size: cover;
|
|
||||||
}
|
|
||||||
.app {
|
|
||||||
position: relative;
|
|
||||||
z-index: 2;
|
|
||||||
background-color: var(--bg-fa-color);
|
|
||||||
}
|
|
||||||
.bg-style {
|
|
||||||
background: var(--bg-6-url) top left no-repeat;
|
|
||||||
}
|
|
||||||
.app-con {
|
|
||||||
padding: 120px 0px;
|
|
||||||
width: 100%;
|
|
||||||
max-width: 1280px;
|
|
||||||
margin: 0 auto;
|
|
||||||
position: relative;
|
|
||||||
z-index: 2;
|
|
||||||
}
|
|
||||||
.app-tit {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.app-h1 {
|
|
||||||
color: var(--text-color);
|
|
||||||
}
|
|
||||||
.app-h4 {
|
|
||||||
color: var(--txt-191a15-color);
|
|
||||||
}
|
|
||||||
.app-ul {
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
align-items: flex-start;
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
.app-ul-item {
|
|
||||||
width: 624px;
|
|
||||||
}
|
|
||||||
.app-bg-box {
|
|
||||||
max-width: 100%;
|
|
||||||
max-height: 100%;
|
|
||||||
overflow: hidden;
|
|
||||||
border-radius: 16px;
|
|
||||||
margin-bottom: 32px;
|
|
||||||
}
|
|
||||||
.app-bg {
|
|
||||||
display: block;
|
|
||||||
height: auto;
|
|
||||||
transform: scale(1);
|
|
||||||
transition: all 2s;
|
|
||||||
}
|
|
||||||
.app-bg:hover {
|
|
||||||
transform: scale(1.15);
|
|
||||||
}
|
|
||||||
.app-h5 {
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
}
|
|
||||||
.app-h6 {
|
|
||||||
color: var(--txt-gray-color);
|
|
||||||
}
|
|
||||||
.team {
|
|
||||||
background: var(--bg-7-url) top right no-repeat;
|
|
||||||
background-size: contain;
|
|
||||||
}
|
|
||||||
.team-con {
|
|
||||||
padding: 120px 0px;
|
|
||||||
width: 100%;
|
|
||||||
max-width: 1280px;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
.team-tit {
|
|
||||||
text-align: center;
|
|
||||||
color: var(--text-color);
|
|
||||||
}
|
|
||||||
.team-ul {
|
|
||||||
display: flex;
|
|
||||||
align-items: flex-start;
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
.team-ul-item {
|
|
||||||
padding: 24px;
|
|
||||||
width: 357px;
|
|
||||||
transition: all 0.3s ease-in-out;
|
|
||||||
background-color: var(--choose-bg-hover-color);
|
|
||||||
box-shadow: 0px 2px 8px 4px rgba(0, 0, 0, 0.05);
|
|
||||||
border-radius: 12px;
|
|
||||||
z-index: 2;
|
|
||||||
}
|
|
||||||
.team-ul-item:hover {
|
|
||||||
transform: translateY(-16px);
|
|
||||||
}
|
|
||||||
.team-ul-item-en {
|
|
||||||
height: 358px;
|
|
||||||
}
|
|
||||||
.team-ul-item-zh {
|
|
||||||
height: 234px;
|
|
||||||
}
|
|
||||||
.team-icon {
|
|
||||||
display: block;
|
|
||||||
width: 48px;
|
|
||||||
}
|
|
||||||
/* 底部样式 */
|
|
||||||
footer {
|
|
||||||
width: 100%;
|
|
||||||
z-index: 2;
|
|
||||||
position: relative;
|
|
||||||
background-color: var(--bg-color);
|
|
||||||
}
|
|
||||||
.footer-layout {
|
|
||||||
border-top: var(--border-color) solid 1px;
|
|
||||||
}
|
|
||||||
@ -1,766 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8" />
|
|
||||||
<title>About Us - DooTask</title>
|
|
||||||
<meta name="google" value="notranslate" />
|
|
||||||
<meta name="description"
|
|
||||||
content="Lightweight open source online project task management tool to help teams efficiently advance their projects and make work easier." />
|
|
||||||
<meta name="keywords" content="China DooTask Task management Lightweight Hitosea Teamwork" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
||||||
<link rel="shortcut icon" href="../img/favicon.ico" />
|
|
||||||
<link rel="stylesheet" href="../css/common.css" />
|
|
||||||
<link rel="stylesheet" type="text/css" href="../css/rem.css" />
|
|
||||||
<link rel="stylesheet" href="../css/about.css" />
|
|
||||||
<!-- Google tag (gtag.js) -->
|
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-16660800396"></script>
|
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PE77P6491J"></script>
|
|
||||||
<script src="../js/googleAds.js"></script>
|
|
||||||
<script src="../js/googleAnalyze.js"></script>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<div class="BulletBox"></div>
|
|
||||||
<div id="layout" class="about_green_bg">
|
|
||||||
<header class="head">
|
|
||||||
<div class="nav">
|
|
||||||
<div class="nav-layout">
|
|
||||||
<a href="../en/index.html" class="logo">
|
|
||||||
<img id="logo" src="../img/light/logo.svg" alt="DooTask,Logo" />
|
|
||||||
<i class="dootask txt-7002027">DooTask</i>
|
|
||||||
</a>
|
|
||||||
<ul class="nav-ul">
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<a class="txt-4001620 txt nav-product" href="../en/product.html">Product</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<a class="txt-4001620 txt nav-solutions" href="../en/solutions.html">Solutions</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<i class="txt-4001620 txt nav-support" id="support-txt" onclick="showMenuPopHandle()">
|
|
||||||
Support
|
|
||||||
<img src="../img/vector.svg" alt="Support" class="nav-vector" id="drop-down-svg" />
|
|
||||||
</i>
|
|
||||||
<ol class="submenu-pop" id="submenu-pop">
|
|
||||||
<li class="submenu-pop-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001418 txt-sub" href="../en/download.html">Download Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="submenu-pop-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001418 txt-sub" href="../en/help.html">Help Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="submenu-pop-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001418 txt-sub" href="../en/privacy.html" target="_blank">Privacy
|
|
||||||
Policy</a>
|
|
||||||
</li>
|
|
||||||
<li class="submenu-pop-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001418 txt-sub" href="../../docs/index.html" target="_blank">API
|
|
||||||
document</a>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<a class="txt-4001620 txt nav-price" href="../en/price.html">Pricing</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<a class="txt-4001620 txt nav-about" href="../en/about.html">About Us</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<div class="nav-r">
|
|
||||||
<div class="lang" id="lang-img">
|
|
||||||
<img src="../img/lang-select.svg" alt="Language switch" onclick="shouLangPopHandle()" />
|
|
||||||
<ul class="lang-pop" id="lang-pop">
|
|
||||||
<li class="lang-pop-item" onclick="changeLanguage('zh')">
|
|
||||||
<i class="lang-txt">简体中文</i>
|
|
||||||
</li>
|
|
||||||
<li class="lang-pop-item" onclick="changeLanguage('en')">
|
|
||||||
<i class="lang-txt">English</i>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<i class="nav-r-icon theme_dark" onclick="setTheme('light')">
|
|
||||||
<img src="../img/light.svg" alt="Light theme" />
|
|
||||||
</i>
|
|
||||||
<i class="nav-r-icon theme_light" onclick="setTheme('dark')">
|
|
||||||
<img src="../img/drak.svg" alt="Dark theme" />
|
|
||||||
</i>
|
|
||||||
<a href="https://github.com/kuaifan/dootask" target="_blank">
|
|
||||||
<i class="nav-r-icon">
|
|
||||||
<img src="../img/github.svg" alt="github" />
|
|
||||||
</i>
|
|
||||||
</a>
|
|
||||||
<i class="line-1"></i>
|
|
||||||
<span class="get-started">
|
|
||||||
<a href="../../manage/dashboard">
|
|
||||||
<button class="btn btn-primary">
|
|
||||||
Try Now
|
|
||||||
</button>
|
|
||||||
</a>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div class="menuBtn">
|
|
||||||
<img id="menuBtn" src="../img/menu.svg" alt="Menu" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="topics">
|
|
||||||
<div class="topics-con">
|
|
||||||
<div class="topics-layout">
|
|
||||||
<div class="topics-tit mb-32 topics-tit-en">
|
|
||||||
<span class="txt-6007290 topics-h1">About our company</span>
|
|
||||||
</div>
|
|
||||||
<h4 class="txt-4001830 topics-h4 mb-32 topics-h4-en">
|
|
||||||
Focusing on the field of network security, we
|
|
||||||
are committed to providing users with a full
|
|
||||||
range of network security solutions.
|
|
||||||
</h4>
|
|
||||||
<ul class="company-ul">
|
|
||||||
<li class="company-ul-item">
|
|
||||||
<h2 class="txt-5003636 company-h2 mb-8 company-year">
|
|
||||||
2020
|
|
||||||
</h2>
|
|
||||||
<h6 class="txt-4001624 company-h6">
|
|
||||||
Company founded
|
|
||||||
</h6>
|
|
||||||
</li>
|
|
||||||
<li class="company-ul-item">
|
|
||||||
<div class="flex-sc">
|
|
||||||
<h2 class="txt-5003636 company-h2 mb-8 company-area">
|
|
||||||
10
|
|
||||||
</h2>
|
|
||||||
<i class="company-sup">+</i>
|
|
||||||
</div>
|
|
||||||
<h6 class="txt-4001624 company-h6">
|
|
||||||
Team experience
|
|
||||||
</h6>
|
|
||||||
</li>
|
|
||||||
<li class="company-ul-item">
|
|
||||||
<div class="flex-sc">
|
|
||||||
<h2 class="txt-5003636 company-h2 mb-8 company-size">
|
|
||||||
99
|
|
||||||
</h2>
|
|
||||||
<i class="company-sup">%</i>
|
|
||||||
</div>
|
|
||||||
<h6 class="txt-4001624 company-h6">
|
|
||||||
Customer staisfaction
|
|
||||||
</h6>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<article class="company-profile">
|
|
||||||
<div class="company-profile-con">
|
|
||||||
<div class="company-profile-layout">
|
|
||||||
<img class="company-profile-l" id="about_pic1" src="../img/light/about_pic1.png"
|
|
||||||
alt="广西海豚有海信息科技公司,HITOSEA,海豚有海,广西海豚有海" />
|
|
||||||
<div class="company-profile-r">
|
|
||||||
<h1 class="txt-5004455 company-profile-h1 mb-80">
|
|
||||||
Company profile
|
|
||||||
<svg class="company-profile-arcs" width="312" height="23" viewBox="0 0 312 23" fill="none"
|
|
||||||
xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path id="arc" opacity="0.5" d="M3 20C47.4822 7.1714 170.957 -10.7886 309 20" stroke="#8BCF70"
|
|
||||||
stroke-width="6" stroke-linecap="round" stroke-dasharray="600, 600" stroke-dashoffset="0" />
|
|
||||||
</svg>
|
|
||||||
</h1>
|
|
||||||
<h6 class="txt-4001830 company-profile-h6">
|
|
||||||
Since its establishment, Guangxi Hitosea
|
|
||||||
Information Technology Co., Ltd.(HITOSEA)
|
|
||||||
has been focusing on the innovation of
|
|
||||||
cutting-edge technologies in the field of
|
|
||||||
network security, providing network security
|
|
||||||
products and services including border
|
|
||||||
security, cloud security, data security,
|
|
||||||
intranet security, and is committed to
|
|
||||||
providing users with comprehensive, smarter,
|
|
||||||
and zero-disturbance network security
|
|
||||||
solutions, and is a dynamic technology
|
|
||||||
company with a young and energetic team.
|
|
||||||
</h6>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</article>
|
|
||||||
</header>
|
|
||||||
<!-- 菜单抽屉 -->
|
|
||||||
<div class="drawer">
|
|
||||||
<div class="drawer-t mb-36">
|
|
||||||
<a href="../en/index.html" class="logo">
|
|
||||||
<img id="logo" src="../img/light/logo.svg" alt="DooTaskLogo" />
|
|
||||||
<i class="dootask txt-7002027">DooTask</i>
|
|
||||||
</a>
|
|
||||||
<i class="close-drawer" onclick="closeDraweHandle()">✕</i>
|
|
||||||
</div>
|
|
||||||
<ul class="drawer-ul">
|
|
||||||
<li class="drawer-item-t mb-16">
|
|
||||||
<div class="drawer-item" onclick="closeDraweHandle()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/product.html">Product</a>
|
|
||||||
</div>
|
|
||||||
<div class="drawer-item" onclick="closeDraweHandle()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/solutions.html">Solutions</a>
|
|
||||||
</div>
|
|
||||||
<div class="drawer-item" onclick="expandMenuHandle('support')">
|
|
||||||
<i class="txt-4001620 txt">
|
|
||||||
Support
|
|
||||||
<img src="../img/vector.svg" class="nav-vector" alt="Support" id="drawer-down-support-svg" />
|
|
||||||
</i>
|
|
||||||
</div>
|
|
||||||
<ol class="drawer-active hide" id="support">
|
|
||||||
<li class="drawer-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/download.html">Download Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/help.html">Help Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/privacy.html" target="_blank">Privacy Policy</a>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001620 txt" href="../../docs/index.html" target="_blank">API document</a>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
<div class="drawer-item" onclick="closeDraweHandle()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/price.html">Pricing</a>
|
|
||||||
</div>
|
|
||||||
<div class="drawer-item mb-16" onclick="closeDraweHandle()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/about.html">About Us</a>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item-c">
|
|
||||||
<div class="drawer-item" onclick="expandMenuHandle('theme')">
|
|
||||||
<i class="txt-4001620 txt">
|
|
||||||
Theme
|
|
||||||
<img src="../img/vector.svg" alt="Theme" class="nav-vector" id="drawer-down-theme-svg" />
|
|
||||||
</i>
|
|
||||||
</div>
|
|
||||||
<ol class="drawer-active hide" id="theme">
|
|
||||||
<li class="drawer-item" onclick="setTheme('light')">
|
|
||||||
<i class="txt-4001620 txt">Light</i>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="setTheme('dark')">
|
|
||||||
<i class="txt-4001620 txt">Dark</i>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
<div class="drawer-item" onclick="expandMenuHandle('language')">
|
|
||||||
<i class="txt-4001620 txt">
|
|
||||||
Language
|
|
||||||
<img src="../img/vector.svg" alt="Language" class="nav-vector" id="drawer-down-language-svg" />
|
|
||||||
</i>
|
|
||||||
</div>
|
|
||||||
<ol class="drawer-active hide" id="language">
|
|
||||||
<li class="drawer-item" onclick="changeLanguage('zh')">
|
|
||||||
<i class="txt-4001620 txt">简体中文</i>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="changeLanguage('en')">
|
|
||||||
<i class="txt-4001620 txt">English</i>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item-b">
|
|
||||||
<div class="drawer-item">
|
|
||||||
<a class="txt-4001620 txt" href="../../manage/dashboard">Try Now</a>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<!-- 内容区域 -->
|
|
||||||
<main>
|
|
||||||
<!-- 主要区域划分 -->
|
|
||||||
<section>
|
|
||||||
<article class="scenario-app">
|
|
||||||
<div class="scenario-app-con">
|
|
||||||
<div class="scenario-app-layout">
|
|
||||||
<h1 class="txt-5004455 scenario-app-h1 mb-16">
|
|
||||||
Scenario Application
|
|
||||||
</h1>
|
|
||||||
<h6 class="txt-4001824 scenario-app-h6 mb-80" style="text-align: center">
|
|
||||||
The product supports a variety of
|
|
||||||
application scenarios to help team
|
|
||||||
collaboration
|
|
||||||
</h6>
|
|
||||||
<ul class="scenario-app-ul">
|
|
||||||
<li class="scenario-app-ul-item mb-32 about-animate-box" style="--delay: 0s">
|
|
||||||
<i class="scenario-app-icon-bg mb-24">
|
|
||||||
<img class="scenario-app-icon" src="../img/about_icon7.svg" alt="Edge Security" />
|
|
||||||
</i>
|
|
||||||
<h5 class="txt-5002025 scenario-app-h5 mb-16">
|
|
||||||
Edge Security
|
|
||||||
</h5>
|
|
||||||
<h6 class="txt-4001624 scenario-app-h6">
|
|
||||||
HITOSEA next-generation firewall,
|
|
||||||
intrusion prevention/intrusion
|
|
||||||
detection system, cloud sandbox and
|
|
||||||
other products provide users with
|
|
||||||
comprehensive intelligent security
|
|
||||||
protection such as access control to
|
|
||||||
network boundaries, deep attack
|
|
||||||
detection and APT attack detection.
|
|
||||||
</h6>
|
|
||||||
<img class="scenario-app-ul-item-svg" src="../img/01.svg" alt="" />
|
|
||||||
</li>
|
|
||||||
<li class="scenario-app-ul-item mb-32 about-animate-box" style="--delay: 0.1s">
|
|
||||||
<i class="scenario-app-icon-bg mb-24">
|
|
||||||
<img class="scenario-app-icon" src="../img/about_icon8.svg" alt="Cloud Security" />
|
|
||||||
</i>
|
|
||||||
<h5 class="txt-5002025 scenario-app-h5 mb-16">
|
|
||||||
Cloud Security
|
|
||||||
</h5>
|
|
||||||
<h6 class="txt-4001624 scenario-app-h6">
|
|
||||||
We provide safe and reliable
|
|
||||||
high-proof cloud servers to solve
|
|
||||||
the primary network security risks
|
|
||||||
faced by servers, alleviate the risk
|
|
||||||
of business interruption due to
|
|
||||||
flooding attacks, and meet the needs
|
|
||||||
of regular security operations.
|
|
||||||
</h6>
|
|
||||||
<img class="scenario-app-ul-item-svg" src="../img/02.svg" alt="" />
|
|
||||||
</li>
|
|
||||||
<li class="scenario-app-ul-item about-animate-box" style="--delay: 0.3s">
|
|
||||||
<i class="scenario-app-ul-item-icon-num"></i>
|
|
||||||
<i class="scenario-app-icon-bg mb-24">
|
|
||||||
<img class="scenario-app-icon" src="../img/about_icon9.svg" alt="Data Security" />
|
|
||||||
</i>
|
|
||||||
<h5 class="txt-5002025 scenario-app-h5 mb-16">
|
|
||||||
Data Security
|
|
||||||
</h5>
|
|
||||||
<h6 class="txt-4001624 scenario-app-h6">
|
|
||||||
Database audit and data leakage
|
|
||||||
protection system can protect
|
|
||||||
sensitive data and documents,
|
|
||||||
identify data and monitor
|
|
||||||
operations, and block data theft by
|
|
||||||
internal and external personnel
|
|
||||||
through the network, e-mail and
|
|
||||||
other channels.
|
|
||||||
</h6>
|
|
||||||
<img class="scenario-app-ul-item-svg" src="../img/03.svg" alt="" />
|
|
||||||
</li>
|
|
||||||
<li class="scenario-app-ul-item about-animate-box" style="--delay: 0.4s">
|
|
||||||
<i class="scenario-app-ul-item-icon-num"></i>
|
|
||||||
<i class="scenario-app-icon-bg mb-24">
|
|
||||||
<img class="scenario-app-icon" src="../img/about_icon10.svg" alt="Intranet Security" />
|
|
||||||
</i>
|
|
||||||
<h5 class="txt-5002025 scenario-app-h5 mb-16">
|
|
||||||
Intranet Security
|
|
||||||
</h5>
|
|
||||||
<h6 class="txt-4001624 scenario-app-h6">
|
|
||||||
Web application firewall and web
|
|
||||||
anti-tampering system provide
|
|
||||||
overall security protection for the
|
|
||||||
application system, effectively
|
|
||||||
blocking malicious behaviors such as
|
|
||||||
web tampering and attacks.
|
|
||||||
</h6>
|
|
||||||
<img class="scenario-app-ul-item-svg" src="../img/04.svg" alt="" />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</article>
|
|
||||||
<article class="footer-t">
|
|
||||||
<div class="footer-t-con">
|
|
||||||
<div class="footer-t-layout">
|
|
||||||
<div class="footer-t-l">
|
|
||||||
<h1 class="footer-t-h1 mb-56">
|
|
||||||
We'd love to hear from you
|
|
||||||
</h1>
|
|
||||||
<h6 class="footer-t-h6 mb-56">
|
|
||||||
Have questions about pricing, plans or
|
|
||||||
products? Please fill out the form and
|
|
||||||
we will contact you.
|
|
||||||
</h6>
|
|
||||||
<div class="footer-t-contact mb-24">
|
|
||||||
<img class="footer-t-contact-icon mr-12" src="../img/about_icon1.svg"
|
|
||||||
alt="Contact telephone number,0771-3164099" />
|
|
||||||
<h6 class="footer-t-contact-h6">
|
|
||||||
0771-3164099
|
|
||||||
</h6>
|
|
||||||
</div>
|
|
||||||
<div class="footer-t-contact">
|
|
||||||
<img class="footer-t-contact-icon mr-12" src="../img/about_icon2.svg"
|
|
||||||
alt="E-mail,service@hitosea.com" />
|
|
||||||
<h6 class="footer-t-contact-h6">
|
|
||||||
service@hitosea.com
|
|
||||||
</h6>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<form class="from">
|
|
||||||
<ul class="from-ul">
|
|
||||||
<li class="from-ul-item mb-16">
|
|
||||||
<i class="from-ul-tags mb-8">Name</i>
|
|
||||||
<input id="username" class="input" type="text" placeholder="Please enter a nickname" />
|
|
||||||
</li>
|
|
||||||
<li class="from-ul-item mb-16">
|
|
||||||
<i class="from-ul-tags mb-8">Email</i>
|
|
||||||
<input id="email" class="input" type="text" placeholder="Please enter your email address" />
|
|
||||||
</li>
|
|
||||||
<li class="from-ul-item mb-16" id="desc_wrap">
|
|
||||||
<i class="from-ul-tags mb-8">Message</i>
|
|
||||||
<textarea id="desc" class="textarea" cols="3" rows="8" placeholder="Optional"
|
|
||||||
oninput="limitCharacters(255)"></textarea>
|
|
||||||
<p id="characterCount">0/255</p>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<span class="from-submit">
|
|
||||||
<button class="btn btn-primary" id="loadingWrap" type="button" onclick="sendFormRequest()">
|
|
||||||
<img id="submitLoading" alt="" src="../img/loading.png" />Submit
|
|
||||||
</button>
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</article>
|
|
||||||
</section>
|
|
||||||
</main>
|
|
||||||
<!-- 页脚区域 -->
|
|
||||||
<footer>
|
|
||||||
<div class="footer-con">
|
|
||||||
<div class="footer-layout">
|
|
||||||
<div class="footer-l">
|
|
||||||
<a href="../en/index.html" class="logo">
|
|
||||||
<img id="logo" src="../img/light/logo.svg" alt="DooTask,Logo" />
|
|
||||||
<i class="dootask txt-7002027">DooTask</i>
|
|
||||||
</a>
|
|
||||||
<i class="txt txt-4001624">Helps teams move projects forward efficiently
|
|
||||||
and makes work easier.</i>
|
|
||||||
</div>
|
|
||||||
<div class="footer-r">
|
|
||||||
<ul class="footer-r-ul">
|
|
||||||
<li class="footer-r-item">
|
|
||||||
<ol class="footer-r-ol">
|
|
||||||
<li class="footer-ol-item txt-5001624 mb-24">
|
|
||||||
Links
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/product.html">Product</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/solutions.html">Solutions</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/price.html">Pricing</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item">
|
|
||||||
<a class="txt-4001624 txt" href="../en/solutions.html">About Us</a>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li class="footer-r-item">
|
|
||||||
<ol class="footer-r-ol">
|
|
||||||
<li class="footer-ol-item txt-5001624 mb-24">
|
|
||||||
Support
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/download.html">Download Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/help.html">Help Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/privacy.html" target="_blank">Privacy
|
|
||||||
Policy</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item">
|
|
||||||
<a class="txt-4001624 txt" href="../../docs/index.html" target="_blank">API
|
|
||||||
document</a>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li class="footer-r-item">
|
|
||||||
<ol class="footer-r-ol">
|
|
||||||
<li class="footer-ol-item txt-5001624 mb-24">
|
|
||||||
Community
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item">
|
|
||||||
<div class="footer-ol-item mb-16">
|
|
||||||
<i class="txt-4001624 txt" onclick="openInNewTab('https://github.com/kuaifan/dootask')">Github</i>
|
|
||||||
</div>
|
|
||||||
<div class="footer-ol-item mb-16">
|
|
||||||
<i class="txt-4001624 txt" onclick="openInNewTab('https://gitee.com/aipaw/dootask')">Gitee</i>
|
|
||||||
</div>
|
|
||||||
<div class="footer-ol-item" id="qq_group">
|
|
||||||
<i class="txt-4001624 txt">QQ group</i>
|
|
||||||
<div class="group_code">
|
|
||||||
<img class="code-svg" id="home_code" src="../img/light/home_code.svg" alt="Group:546574618" />
|
|
||||||
<i class="group_num">Group:546574618</i>
|
|
||||||
<i class="lower_triangle"></i>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="txt-4001624 filings footer_copyright">
|
|
||||||
<span>
|
|
||||||
Copyright © 2022-2023 DooTask. All rights reserved.
|
|
||||||
</span>
|
|
||||||
<div class="footer_beian" style="display: flex">
|
|
||||||
<img src="../img/beian.png" alt="" /><span style="padding-left: 3px">桂公网安备
|
|
||||||
45010802000393号</span>
|
|
||||||
</div>
|
|
||||||
<a class="footer_beian_a" href="http://beian.miit.gov.cn">桂ICP备2021003642号-5</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
<!-- 侧边导航 -->
|
|
||||||
<div id="nav_wrap"></div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
<script src="//cdn.bootcdn.net/ajax/libs/axios/1.3.6/axios.js"></script>
|
|
||||||
<script src="../js/common.js"></script>
|
|
||||||
<script>
|
|
||||||
/* 数字滚动动画 */
|
|
||||||
const companyYearEl = document.querySelector(".company-year");
|
|
||||||
const companyAreaEl = document.querySelector(".company-area");
|
|
||||||
const companySizeEl = document.querySelector(".company-size");
|
|
||||||
let yearTimerId;
|
|
||||||
let areaTimerId;
|
|
||||||
let sizeTimerId;
|
|
||||||
let curYearNumber = 999;
|
|
||||||
let curAreaNumber = 0;
|
|
||||||
let curSizeNumber = 0;
|
|
||||||
function updateYearNumber() {
|
|
||||||
const increment = Math.ceil((2020 - curYearNumber) / 50); // 使用缓动函数计算增量
|
|
||||||
curYearNumber += increment; // 更新当前数字
|
|
||||||
if (curYearNumber >= 2020) {
|
|
||||||
// 数字已经达到目标值
|
|
||||||
clearInterval(yearTimerId); // 停止定时器
|
|
||||||
curYearNumber = 2020; // 将当前数字设置为目标值
|
|
||||||
}
|
|
||||||
companyYearEl.innerText = curYearNumber.toString(); // 更新数字显示
|
|
||||||
}
|
|
||||||
function updateAreaNumber() {
|
|
||||||
curAreaNumber += 0.05; // 更新当前数字
|
|
||||||
if (curAreaNumber >= 10) {
|
|
||||||
// 数字已经达到目标值
|
|
||||||
clearInterval(areaTimerId); // 停止定时器
|
|
||||||
curAreaNumber = 10; // 将当前数字设置为目标值
|
|
||||||
}
|
|
||||||
companyAreaEl.innerText = Number(
|
|
||||||
curAreaNumber.toFixed(1)
|
|
||||||
).toString(); // 更新数字显示
|
|
||||||
}
|
|
||||||
function updateSizeNumber() {
|
|
||||||
curSizeNumber += 0.5; // 更新当前数字
|
|
||||||
if (curSizeNumber >= 99) {
|
|
||||||
// 数字已经达到目标值
|
|
||||||
clearInterval(sizeTimerId); // 停止定时器
|
|
||||||
curSizeNumber = 99; // 将当前数字设置为目标值
|
|
||||||
}
|
|
||||||
companySizeEl.innerText = curSizeNumber.toString(); // 更新数字显示
|
|
||||||
}
|
|
||||||
yearTimerId = setInterval(updateYearNumber, 1);
|
|
||||||
areaTimerId = setInterval(updateAreaNumber, 1);
|
|
||||||
sizeTimerId = setInterval(updateSizeNumber, 1);
|
|
||||||
|
|
||||||
/* 滑动到可视区域执行动画 */
|
|
||||||
const boxes = document.querySelectorAll(".about-animate-box");
|
|
||||||
let timerId = null;
|
|
||||||
const animateBoxes = () => {
|
|
||||||
boxes.forEach((box) => {
|
|
||||||
const boxTop = box.getBoundingClientRect().top;
|
|
||||||
const boxBottom = box.getBoundingClientRect().bottom;
|
|
||||||
if (boxTop < window.innerHeight && boxBottom > 0) {
|
|
||||||
box.classList.add("animate");
|
|
||||||
timerId = setTimeout(() => {
|
|
||||||
box.classList.remove("about-animate-box");
|
|
||||||
timerId = null;
|
|
||||||
}, 1300);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
/* 限制表单textarea字符数 */
|
|
||||||
function limitCharacters(maxCharacters) {
|
|
||||||
const textarea = document.getElementById("desc");
|
|
||||||
let text = textarea.value;
|
|
||||||
if (text.length > maxCharacters) {
|
|
||||||
textarea.value = text.slice(0, maxCharacters); // 截断文本
|
|
||||||
text = textarea.value;
|
|
||||||
}
|
|
||||||
document.getElementById(
|
|
||||||
"characterCount"
|
|
||||||
).textContent = `${text.length}/${maxCharacters}`;
|
|
||||||
}
|
|
||||||
/* 显示/隐藏提示弹框 */
|
|
||||||
function showBox(text) {
|
|
||||||
const box = document.querySelector(".BulletBox");
|
|
||||||
box.style.display = "block";
|
|
||||||
box.innerHTML = text;
|
|
||||||
setTimeout(() => {
|
|
||||||
box.style.display = "none";
|
|
||||||
}, 1000);
|
|
||||||
}
|
|
||||||
/* 表单发送请求 */
|
|
||||||
function sendFormRequest() {
|
|
||||||
const username = document.getElementById("username").value;
|
|
||||||
const form = document.querySelector(".from");
|
|
||||||
const email = document.getElementById("email").value;
|
|
||||||
const desc = document.getElementById("desc").value;
|
|
||||||
const pattern =
|
|
||||||
/^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
|
|
||||||
if (!username && !email) {
|
|
||||||
return showBox(
|
|
||||||
"Nickname cannot be empty! Email cannot be empty!"
|
|
||||||
);
|
|
||||||
} else if (!username) {
|
|
||||||
return showBox("Nickname cannot be empty!");
|
|
||||||
} else if (!email) {
|
|
||||||
return showBox("Email cannot be empty!");
|
|
||||||
} else if (email) {
|
|
||||||
if (!pattern.test(email)) {
|
|
||||||
return showBox("Email input error!");
|
|
||||||
} else {
|
|
||||||
const url = "https://t.hitosea.com/api/dialog/msg/sendtext";
|
|
||||||
const headers = {
|
|
||||||
version: "0.22.0",
|
|
||||||
token: "YIG8ANC8q2SAXWxKu7L4Nf5VLWDxBixpIl_OSDnaVTug7P_DVHq--HV_7QKl2rNYlmCs-xsQuj0NAfktdsbyxNqCU9efF2ggFOQCYoE7l-np9ltT-LOGj3LGU422lVRC",
|
|
||||||
"content-type": "application/json",
|
|
||||||
};
|
|
||||||
const data = {
|
|
||||||
dialog_id: 10466,
|
|
||||||
text: `[nickName]:${username}\n[email]:${email}\n[message]:${desc}
|
|
||||||
`,
|
|
||||||
silence: "no",
|
|
||||||
};
|
|
||||||
document.getElementById("submitLoading").style.display =
|
|
||||||
"block";
|
|
||||||
axios
|
|
||||||
.post(url, data, { headers })
|
|
||||||
.then((response) => {
|
|
||||||
form.reset();
|
|
||||||
document.getElementById(
|
|
||||||
"submitLoading"
|
|
||||||
).style.display = "none";
|
|
||||||
limitCharacters(255);
|
|
||||||
showBox("Submitted successfully!");
|
|
||||||
})
|
|
||||||
.catch((error) => {
|
|
||||||
form.reset();
|
|
||||||
document.getElementById(
|
|
||||||
"submitLoading"
|
|
||||||
).style.display = "none";
|
|
||||||
limitCharacters(255);
|
|
||||||
showBox(error.message);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
window.addEventListener("scroll", animateBoxes);
|
|
||||||
animateBoxes();
|
|
||||||
document.addEventListener("DOMContentLoaded", function () {
|
|
||||||
fetch("./sideNav.html")
|
|
||||||
.then((response) => response.text())
|
|
||||||
.then((data) => {
|
|
||||||
document.getElementById("nav_wrap").innerHTML = data;
|
|
||||||
// 回到顶部
|
|
||||||
const back_top_button =
|
|
||||||
document.getElementById("back_to_top");
|
|
||||||
window.addEventListener("scroll", () => {
|
|
||||||
if (
|
|
||||||
document.body.scrollTop > 20 ||
|
|
||||||
document.documentElement.scrollTop > 20
|
|
||||||
) {
|
|
||||||
back_top_button.style.display = "block";
|
|
||||||
} else {
|
|
||||||
back_top_button.style.display = "none";
|
|
||||||
}
|
|
||||||
});
|
|
||||||
back_top_button.addEventListener("click", () => {
|
|
||||||
window.scrollTo({
|
|
||||||
top: 0,
|
|
||||||
behavior: "smooth",
|
|
||||||
});
|
|
||||||
});
|
|
||||||
// 检查页面加载时的滚动位置以决定是否显示回到顶部按钮
|
|
||||||
if (document.documentElement.scrollTop > 20) {
|
|
||||||
back_top_button.style.display = "block"; // 显示回到顶部按钮
|
|
||||||
}
|
|
||||||
let toolbarPhone = document.getElementById(
|
|
||||||
"side_toolbar_item_phone"
|
|
||||||
);
|
|
||||||
let tooltipPhone = document.getElementById(
|
|
||||||
"toolbar_tooltip_phone"
|
|
||||||
);
|
|
||||||
let toolbarWhtasapp = document.getElementById(
|
|
||||||
"side_toolbar_item_whtasapp"
|
|
||||||
);
|
|
||||||
let tooltipWhtasapp = document.getElementById(
|
|
||||||
"toolbar_tooltip_whtasapp"
|
|
||||||
);
|
|
||||||
let toolbarQrcode = document.getElementById(
|
|
||||||
"side_toolbar_item_qrcode"
|
|
||||||
);
|
|
||||||
let tooltipQrcode = document.getElementById(
|
|
||||||
"toolbar_tooltip_qrcode"
|
|
||||||
);
|
|
||||||
|
|
||||||
function toggleTooltip(dom) {
|
|
||||||
if (dom.style.display === "block") {
|
|
||||||
dom.style.display = "none";
|
|
||||||
} else {
|
|
||||||
dom.style.display = "block";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (toolbarPhone) {
|
|
||||||
toolbarPhone.addEventListener("click", () => {
|
|
||||||
event.stopPropagation();
|
|
||||||
// 谷歌分析事件追踪
|
|
||||||
if (gtag) {
|
|
||||||
gtag("event", "click", {
|
|
||||||
event_category: "button",
|
|
||||||
event_label: "right_side_toolbar_phone",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
toggleTooltip(tooltipPhone);
|
|
||||||
tooltipWhtasapp.style.display = "none";
|
|
||||||
tooltipQrcode.style.display = "none";
|
|
||||||
if (
|
|
||||||
/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(
|
|
||||||
navigator.userAgent
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
window.location.href = "tel:0771-3164099";
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (toolbarWhtasapp) {
|
|
||||||
toolbarWhtasapp.addEventListener("click", () => {
|
|
||||||
event.stopPropagation();
|
|
||||||
// 谷歌分析事件追踪
|
|
||||||
if (gtag) {
|
|
||||||
gtag("event", "click", {
|
|
||||||
event_category: "button",
|
|
||||||
event_label: "right_side_toolbar_Whtasapp",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
toggleTooltip(tooltipWhtasapp);
|
|
||||||
tooltipPhone.style.display = "none";
|
|
||||||
tooltipQrcode.style.display = "none";
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (toolbarQrcode) {
|
|
||||||
toolbarQrcode.addEventListener("click", () => {
|
|
||||||
event.stopPropagation();
|
|
||||||
// 谷歌分析事件追踪
|
|
||||||
if (gtag) {
|
|
||||||
gtag("event", "click", {
|
|
||||||
event_category: "button",
|
|
||||||
event_label: "right_side_toolbar_WeChat",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
toggleTooltip(tooltipQrcode);
|
|
||||||
tooltipPhone.style.display = "none";
|
|
||||||
tooltipWhtasapp.style.display = "none";
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script src="../js/ad.js"></script>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
@ -1,911 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8" />
|
|
||||||
<title>
|
|
||||||
DooTask - The most popular open source project collaboration tool
|
|
||||||
</title>
|
|
||||||
<meta name="google" value="notranslate" />
|
|
||||||
<meta name="description"
|
|
||||||
content="Lightweight open source online project task management tool to help teams efficiently advance their projects and make work easier." />
|
|
||||||
<meta name="keywords" content="China DooTask Task management Lightweight Hitosea Teamwork" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
||||||
<link rel="shortcut icon" href="../img/favicon.ico" />
|
|
||||||
<link rel="stylesheet" type="text/css" href="../css/common.css" />
|
|
||||||
<link rel="stylesheet" type="text/css" href="../css/rem.css" />
|
|
||||||
<link rel="stylesheet" type="text/css" href="../css/home.css" />
|
|
||||||
<link rel="stylesheet" type="text/css" href="../css/ad.css" />
|
|
||||||
<link rel="stylesheet" href="../css/animate.min.css" />
|
|
||||||
<!-- Google tag (gtag.js) -->
|
|
||||||
<script async src="//www.googletagmanager.com/gtag/js?id=AW-16660800396"></script>
|
|
||||||
<script async src="//www.googletagmanager.com/gtag/js?id=G-PE77P6491J"></script>
|
|
||||||
<script src="../js/googleAds.js"></script>
|
|
||||||
<script src="../js/googleAnalyze.js"></script>
|
|
||||||
|
|
||||||
<script src="../js/qs.min.js"></script>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<div class="ad-dialog">
|
|
||||||
<div class="ad-dialog-backdrop"></div>
|
|
||||||
<div class="ad-dialog-wrapper">
|
|
||||||
<div id="ad-dialog-header" class="ad-dialog-header">
|
|
||||||
<div id="ad-dialog-header-img" class="ad-dialog-header-img"></div>
|
|
||||||
</div>
|
|
||||||
<div id="ad-dialog-content" class="ad-dialog-content">
|
|
||||||
Please scan the QR code to add our WeChat customer service
|
|
||||||
representative for purchase
|
|
||||||
</div>
|
|
||||||
<div class="ad-dialog-footer">
|
|
||||||
<button id="ad-dialog-footer-btn" class="ad-dialog-footer-btn">
|
|
||||||
Got it
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="layout" class="ad-wrapper">
|
|
||||||
<!-- 同意cookie弹框 -->
|
|
||||||
<div id="cookieConsent">
|
|
||||||
<div>
|
|
||||||
We use first party cookies to improve your browsing
|
|
||||||
experience on our website, to analyze our website traffic
|
|
||||||
and to understand where our visitors are coming from. If you
|
|
||||||
choose to opt-out, only strictly necessary cookies will be
|
|
||||||
used.<a href="../en/cookie.html" id="cookie_a" target="_blank">Our cookie policy</a>
|
|
||||||
</div>
|
|
||||||
<div id="buttonBox">
|
|
||||||
<button id="rejectButton" class="btn btn-primary">
|
|
||||||
I decline
|
|
||||||
</button>
|
|
||||||
<button id="agreeButton" class="btn btn-primary">
|
|
||||||
Allow cookies
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- 页头区域 -->
|
|
||||||
<header id="ad-banner" class="head">
|
|
||||||
<div class="nav">
|
|
||||||
<div class="nav-layout">
|
|
||||||
<a href="../en/index.html" class="logo">
|
|
||||||
<img id="logo" src="../img/light/logo.svg" alt="DooTask,Logo" />
|
|
||||||
<i class="dootask txt-7002027">DooTask</i>
|
|
||||||
</a>
|
|
||||||
<ul class="nav-ul">
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<a class="txt-4001620 txt nav-product" href="../en/product.html">Product</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<a class="txt-4001620 txt nav-solutions" href="../en/solutions.html">Solutions</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<i class="txt-4001620 txt nav-support" id="support-txt" onclick="showMenuPopHandle()">
|
|
||||||
Support
|
|
||||||
<img src="../img/vector.svg" alt="Support" class="nav-vector" id="drop-down-svg" />
|
|
||||||
</i>
|
|
||||||
<ol class="submenu-pop" id="submenu-pop">
|
|
||||||
<li class="submenu-pop-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001418 txt-sub" href="../en/download.html">Download Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="submenu-pop-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001418 txt-sub" href="../en/help.html">Help Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="submenu-pop-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001418 txt-sub" href="../en/privacy.html" target="_blank">Privacy Policy</a>
|
|
||||||
</li>
|
|
||||||
<li class="submenu-pop-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001418 txt-sub" href="../../docs/index.html" target="_blank">API document</a>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<a class="txt-4001620 txt nav-price" href="../en/price.html">Pricing</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<a class="txt-4001620 txt nav-about" href="../en/about.html">About Us</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<div class="nav-r">
|
|
||||||
<div class="lang" id="lang-img">
|
|
||||||
<img src="../img/lang-select.svg" alt="Language switch" onclick="shouLangPopHandle()" />
|
|
||||||
<ul class="lang-pop" id="lang-pop">
|
|
||||||
<li class="lang-pop-item" onclick="changeLanguage('zh')">
|
|
||||||
<i class="lang-txt">简体中文</i>
|
|
||||||
</li>
|
|
||||||
<li class="lang-pop-item" onclick="changeLanguage('en')">
|
|
||||||
<i class="lang-txt">English</i>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<i class="nav-r-icon theme_dark" onclick="setTheme('light')">
|
|
||||||
<img src="../img/light.svg" alt="Brighter theme" />
|
|
||||||
</i>
|
|
||||||
<i class="nav-r-icon theme_light" onclick="setTheme('dark')">
|
|
||||||
<img src="../img/drak.svg" alt="Dark theme" />
|
|
||||||
</i>
|
|
||||||
<a href="https://github.com/kuaifan/dootask" target="_blank">
|
|
||||||
<i class="nav-r-icon">
|
|
||||||
<img src="../img/github.svg" alt="github" />
|
|
||||||
</i>
|
|
||||||
</a>
|
|
||||||
<i class="line-1"></i>
|
|
||||||
<span class="get-started">
|
|
||||||
<a href="../../manage/dashboard">
|
|
||||||
<button class="btn btn-primary">
|
|
||||||
Try Now
|
|
||||||
</button>
|
|
||||||
</a>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div class="menuBtn">
|
|
||||||
<img id="menuBtn" src="../img/menu.svg" alt="Menu" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="topics">
|
|
||||||
<div class="topics-con">
|
|
||||||
<div class="topics-layout">
|
|
||||||
<div class="topics-tit mb-32">
|
|
||||||
<span class="txt-6007290 topics-h1-green">
|
|
||||||
<span id="ad-banner-title-part1">DooTask</span>
|
|
||||||
<span id="ad-banner-title-underline">
|
|
||||||
<svg class="arcs ad" width="303" height="47" viewBox="0 0 303 47" fill="none"
|
|
||||||
xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path id="arc" fill-rule="evenodd" clip-rule="evenodd"
|
|
||||||
d="M80.7308 27.6815C67.7286 31.9281 52.7004 36.1573 38.2511 37.2015C25.8945 38.1065 13.9833 36.7142 4.20939 30.762C2.82903 29.9266 1.1147 30.501 0.357722 32.0499C-0.0101685 32.7819 -0.0965865 33.582 0.10908 34.3518C0.314747 35.1217 0.803546 35.8278 1.51545 36.3835C12.1576 42.8752 25.1376 44.5634 38.6073 43.5192C53.3238 42.4401 68.6192 38.1935 81.8885 33.8773C83.6989 37.8717 87.4059 41.1683 92.2413 43.0841C100.857 46.7911 112.635 46.7389 125.036 44.6504C143.048 41.7788 162.395 34.4691 174.841 29.3175C175.353 29.1086 176.11 28.778 177.067 28.3429C177.357 29.0564 177.668 29.7352 178.024 30.4313C181.075 36.3661 186.485 41.187 191.984 42.8926C226.872 53.7876 267.682 40.7345 300.788 30.1181C301.651 29.7251 302.32 29.1168 302.688 28.3908C303.055 27.6648 303.1 26.8633 302.814 26.1151C302.391 24.3747 300.833 23.4349 299.319 23.9048C266.969 34.295 227.384 47.3133 193.476 36.7316C189.29 35.4437 185.238 31.7366 182.923 27.229C182.655 26.7243 182.433 26.2196 182.21 25.6975C187.266 23.0647 191.627 19.6969 195.056 15.7772C196.586 14.0321 197.496 12.0005 197.691 9.89049C197.887 7.78043 197.362 5.66764 196.17 3.76837C193.943 0.409393 190.581 0.113524 187.041 1.87133C183.305 4.06681 180.259 6.90026 178.136 10.1556C175.877 13.9037 174.947 18.0569 175.442 22.1818C174.329 22.704 173.438 23.1042 172.881 23.3305C160.703 28.3429 141.712 35.5133 124.19 38.4024C112.858 40.3168 102.104 40.5779 94.2228 37.1841C91.376 36.0727 89.0418 34.2967 87.5436 32.1021L94.4009 29.7526C98.7201 28.2732 107.759 25.8193 114.171 21.4335C116.839 19.7188 118.973 17.5523 120.412 15.098C121.85 12.6436 122.556 9.96562 122.476 7.26658C122.554 6.03434 122.211 4.80805 121.484 3.71325C120.756 2.61846 119.669 1.69448 118.335 1.03594C114.594 -0.704466 108.138 0.148332 105.733 0.722665C98.4529 2.46307 88.7235 9.66834 83.9145 17.7786C82.0105 20.8782 80.9276 24.2466 80.7308 27.6815ZM86.7198 25.68L92.6865 23.6438C96.7163 22.2515 105.154 20.0585 111.166 15.9686C112.881 14.9958 114.287 13.7263 115.271 12.2591C116.256 10.7919 116.794 9.16669 116.843 7.51024C116.843 7.21437 116.576 7.12735 116.353 7.02292C115.993 6.83692 115.593 6.70146 115.173 6.62263C112.42 6.17995 109.567 6.29984 106.891 6.97071C100.791 8.43265 92.642 14.5241 88.6122 21.329C87.7647 22.7162 87.1295 24.1766 86.7198 25.68ZM181.075 19.2406C183.881 17.6547 186.45 15.8274 188.733 13.7931C189.864 12.7944 190.795 11.6678 191.494 10.4515C191.774 10.0044 191.919 9.51331 191.919 9.01569C191.919 8.51807 191.774 8.027 191.494 7.57985C191.411 7.43237 191.257 7.3166 191.065 7.25789C190.873 7.19917 190.659 7.2023 190.47 7.26658C190.026 7.35576 189.605 7.50286 189.223 7.70168C186.481 9.31936 184.243 11.402 182.678 13.7931C181.692 15.5093 181.147 17.3602 181.075 19.2406Z"
|
|
||||||
fill="url(#paint0_linear_1346_204)" opacity="0.8" />
|
|
||||||
<defs>
|
|
||||||
<linearGradient id="paint0_linear_1346_204" x1="22.5372" y1="-10.882" x2="116.024" y2="144.196"
|
|
||||||
gradientUnits="userSpaceOnUse">
|
|
||||||
<stop stop-color="#FF7155" />
|
|
||||||
<stop offset="0.497468" stop-color="#EF3E56" />
|
|
||||||
<stop offset="1" stop-color="#EE61D4" />
|
|
||||||
</linearGradient>
|
|
||||||
</defs>
|
|
||||||
</svg>
|
|
||||||
</span>
|
|
||||||
</span>
|
|
||||||
<span class="txt-6007290 topics-h1">
|
|
||||||
<span id="ad-banner-title-part2">,Lightweight</span>
|
|
||||||
<br />
|
|
||||||
<span id="ad-banner-title-part3">Task Management Tool</span>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<h4 class="txt-4001830 topics-h4 mb-32">
|
|
||||||
<span id="ad-banner-description">Empower the team to advance projects
|
|
||||||
efficiently, making work simpler.</span>
|
|
||||||
</h4>
|
|
||||||
<div class="topics-btn flex-cc">
|
|
||||||
<div id="ad-banner-sign-up-button">
|
|
||||||
<a href="./price.html">
|
|
||||||
<button class="btn btn-primary">
|
|
||||||
Sign Up Free
|
|
||||||
</button>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
<div id="ad-banner-self-host-button">
|
|
||||||
<a href="https://github.com/kuaifan/dootask/tree/pro" target="_blank">
|
|
||||||
<button class="btn btn-default">
|
|
||||||
Self Hosting
|
|
||||||
</button>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<!-- 菜单抽屉 -->
|
|
||||||
<div class="drawer">
|
|
||||||
<div class="drawer-t mb-36">
|
|
||||||
<a href="../en/index.html" class="logo">
|
|
||||||
<img id="logo" src="../img/light/logo.svg" alt="DooTaskLogo" />
|
|
||||||
<i class="dootask txt-7002027">DooTask</i>
|
|
||||||
</a>
|
|
||||||
<i class="close-drawer" onclick="closeDraweHandle()">✕</i>
|
|
||||||
</div>
|
|
||||||
<ul class="drawer-ul">
|
|
||||||
<li class="drawer-item-t mb-16">
|
|
||||||
<div class="drawer-item" onclick="closeDraweHandle()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/product.html">Product</a>
|
|
||||||
</div>
|
|
||||||
<div class="drawer-item" onclick="closeDraweHandle()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/solutions.html">Solutions</a>
|
|
||||||
</div>
|
|
||||||
<div class="drawer-item" onclick="expandMenuHandle('support')">
|
|
||||||
<i class="txt-4001620 txt">
|
|
||||||
Support
|
|
||||||
<img src="../img/vector.svg" class="nav-vector" alt="Support" id="drawer-down-support-svg" />
|
|
||||||
</i>
|
|
||||||
</div>
|
|
||||||
<ol class="drawer-active hide" id="support">
|
|
||||||
<li class="drawer-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/download.html">Download Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/help.html">Help Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/privacy.html" target="_blank">Privacy Policy</a>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001620 txt" href="../../docs/index.html" target="_blank">API document</a>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
<div class="drawer-item" onclick="closeDraweHandle()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/price.html">Pricing</a>
|
|
||||||
</div>
|
|
||||||
<div class="drawer-item mb-16" onclick="closeDraweHandle()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/about.html">About Us</a>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item-c">
|
|
||||||
<div class="drawer-item" onclick="expandMenuHandle('theme')">
|
|
||||||
<i class="txt-4001620 txt">
|
|
||||||
Theme
|
|
||||||
<img src="../img/vector.svg" alt="Theme" class="nav-vector" id="drawer-down-theme-svg" />
|
|
||||||
</i>
|
|
||||||
</div>
|
|
||||||
<ol class="drawer-active hide" id="theme">
|
|
||||||
<li class="drawer-item" onclick="setTheme('light')">
|
|
||||||
<i class="txt-4001620 txt">Light</i>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="setTheme('dark')">
|
|
||||||
<i class="txt-4001620 txt">Dark</i>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
<div class="drawer-item" onclick="expandMenuHandle('language')">
|
|
||||||
<i class="txt-4001620 txt">
|
|
||||||
Language
|
|
||||||
<img src="../img/vector.svg" alt="Language" class="nav-vector" id="drawer-down-language-svg" />
|
|
||||||
</i>
|
|
||||||
</div>
|
|
||||||
<ol class="drawer-active hide" id="language">
|
|
||||||
<li class="drawer-item" onclick="changeLanguage('zh')">
|
|
||||||
<i class="txt-4001620 txt">简体中文</i>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="changeLanguage('en')">
|
|
||||||
<i class="txt-4001620 txt">English</i>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item-b">
|
|
||||||
<div class="drawer-item">
|
|
||||||
<a class="txt-4001620 txt" href="../../manage/dashboard">Try Now</a>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<main>
|
|
||||||
<section class="ad-plan">
|
|
||||||
<div class="section-wrapper">
|
|
||||||
<!-- <div class="section-title animate__animated animate__fadeInDown animate__fast animate__delay-1s">
|
|
||||||
<span id="ad-plan-title">
|
|
||||||
September Double Deal Bonanza!
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div class="section-description animate__animated animate__fadeInDown animate__fast animate__delay-1s">
|
|
||||||
<span id="ad-plan-description">
|
|
||||||
Make life easier, make work more efficient.
|
|
||||||
</span>
|
|
||||||
</div> -->
|
|
||||||
<div id="ad-plan-content" class="section-content">
|
|
||||||
<div class="plan-item animate__animated">
|
|
||||||
<div class="plan-item-title">
|
|
||||||
<span>Free</span>
|
|
||||||
</div>
|
|
||||||
<div class="plan-item-price">
|
|
||||||
<span class="plan-item-price-current price">
|
|
||||||
0
|
|
||||||
<span class="plan-item-price-payment">
|
|
||||||
/month
|
|
||||||
</span>
|
|
||||||
</span>
|
|
||||||
<span class="plan-item-price-original">
|
|
||||||
Up to 3 People
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div class="plan-item-button">
|
|
||||||
<a>
|
|
||||||
<button class="btn-primary">
|
|
||||||
Deploy Now
|
|
||||||
</button>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
<div class="plan-item-description">
|
|
||||||
<ul class="plan-item-description-list">
|
|
||||||
<li class="plan-item-description-item">
|
|
||||||
<i class="plan-item-description-item-icon">
|
|
||||||
<img src="../img/ad/checked.svg" alt="undefined" />
|
|
||||||
</i>
|
|
||||||
<span class="plan-item-description-item-content">
|
|
||||||
Support private deployment
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="plan-item-description-item">
|
|
||||||
<i class="plan-item-description-item-icon">
|
|
||||||
<img src="../img/ad/checked.svg" alt="undefined" />
|
|
||||||
</i>
|
|
||||||
<span class="plan-item-description-item-content">
|
|
||||||
Technical Advisory Services
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="plan-item-description-item">
|
|
||||||
<i class="plan-item-description-item-icon">
|
|
||||||
<img src="../img/ad/checked.svg" alt="undefined" />
|
|
||||||
</i>
|
|
||||||
<span class="plan-item-description-item-content">
|
|
||||||
Dedicated operations customer
|
|
||||||
service
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="plan-item-description-item">
|
|
||||||
<i class="plan-item-description-item-icon">
|
|
||||||
<img src="../img/ad/checked.svg" alt="undefined" />
|
|
||||||
</i>
|
|
||||||
<span class="plan-item-description-item-content">
|
|
||||||
12-Hour service response
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="plan-item active animate__animated">
|
|
||||||
<div class="plan-item-tag">Popular</div>
|
|
||||||
<div class="plan-item-title">
|
|
||||||
<span>10-License Pro</span>
|
|
||||||
</div>
|
|
||||||
<div class="plan-item-price">
|
|
||||||
<span class="plan-item-price-current price">
|
|
||||||
¥5,800
|
|
||||||
<span class="plan-item-price-payment">
|
|
||||||
</span>
|
|
||||||
</span>
|
|
||||||
<span class="plan-item-price-original price">
|
|
||||||
¥8,800
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div class="plan-item-button">
|
|
||||||
<a>
|
|
||||||
<button class="btn-primary">
|
|
||||||
Buy Now
|
|
||||||
</button>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
<div class="plan-item-description">
|
|
||||||
<ul class="plan-item-description-list">
|
|
||||||
<li class="plan-item-description-item">
|
|
||||||
<i class="plan-item-description-item-icon">
|
|
||||||
<img src="../img/ad/checked.svg" alt="undefined" />
|
|
||||||
</i>
|
|
||||||
<span class="plan-item-description-item-content">
|
|
||||||
Support private deployment
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="plan-item-description-item">
|
|
||||||
<i class="plan-item-description-item-icon">
|
|
||||||
<img src="../img/ad/checked.svg" alt="undefined" />
|
|
||||||
</i>
|
|
||||||
<span class="plan-item-description-item-content">
|
|
||||||
Technical Advisory Services
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="plan-item-description-item">
|
|
||||||
<i class="plan-item-description-item-icon">
|
|
||||||
<img src="../img/ad/checked.svg" alt="undefined" />
|
|
||||||
</i>
|
|
||||||
<span class="plan-item-description-item-content">
|
|
||||||
Dedicated operations customer
|
|
||||||
service
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="plan-item-description-item">
|
|
||||||
<i class="plan-item-description-item-icon">
|
|
||||||
<img src="../img/ad/checked.svg" alt="undefined" />
|
|
||||||
</i>
|
|
||||||
<span class="plan-item-description-item-content">
|
|
||||||
12-Hour service response
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="plan-item-description-item">
|
|
||||||
<i class="plan-item-description-item-icon">
|
|
||||||
<img src="../img/ad/checked.svg" alt="undefined" />
|
|
||||||
</i>
|
|
||||||
<span class="plan-item-description-item-content">
|
|
||||||
Free 1-Year Technical
|
|
||||||
Maintenance Included
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="plan-item animate__animated">
|
|
||||||
<div class="plan-item-tag">Hot</div>
|
|
||||||
<div class="plan-item-title">
|
|
||||||
<span>Unlimited Pro</span>
|
|
||||||
</div>
|
|
||||||
<div class="plan-item-price">
|
|
||||||
<span class="plan-item-price-current price">
|
|
||||||
¥16,800
|
|
||||||
<span class="plan-item-price-payment">
|
|
||||||
</span>
|
|
||||||
</span>
|
|
||||||
<span class="plan-item-price-original price">
|
|
||||||
¥18,888
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div class="plan-item-button">
|
|
||||||
<a>
|
|
||||||
<button class="btn-primary">
|
|
||||||
Buy Now
|
|
||||||
</button>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
<div class="plan-item-description">
|
|
||||||
<ul class="plan-item-description-list">
|
|
||||||
<li class="plan-item-description-item">
|
|
||||||
<i class="plan-item-description-item-icon">
|
|
||||||
<img src="https://cms.hitosea.com/uploads/plan_checked_ea40b42593.svg" alt="undefined" />
|
|
||||||
</i>
|
|
||||||
<span class="plan-item-description-item-content">
|
|
||||||
Support private deployment
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="plan-item-description-item">
|
|
||||||
<i class="plan-item-description-item-icon">
|
|
||||||
<img src="https://cms.hitosea.com/uploads/plan_checked_ea40b42593.svg" alt="undefined" />
|
|
||||||
</i>
|
|
||||||
<span class="plan-item-description-item-content">
|
|
||||||
Technical Advisory Services
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="plan-item-description-item">
|
|
||||||
<i class="plan-item-description-item-icon">
|
|
||||||
<img src="https://cms.hitosea.com/uploads/plan_checked_ea40b42593.svg" alt="undefined" />
|
|
||||||
</i>
|
|
||||||
<span class="plan-item-description-item-content">
|
|
||||||
Custom logo design
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="plan-item-description-item">
|
|
||||||
<i class="plan-item-description-item-icon">
|
|
||||||
<img src="https://cms.hitosea.com/uploads/plan_checked_ea40b42593.svg" alt="undefined" />
|
|
||||||
</i>
|
|
||||||
<span class="plan-item-description-item-content">
|
|
||||||
Dedicated operations customer
|
|
||||||
service
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="plan-item-description-item">
|
|
||||||
<i class="plan-item-description-item-icon">
|
|
||||||
<img src="https://cms.hitosea.com/uploads/plan_checked_ea40b42593.svg" alt="undefined" />
|
|
||||||
</i>
|
|
||||||
<span class="plan-item-description-item-content">
|
|
||||||
12-Hour service response
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="plan-item-description-item">
|
|
||||||
<i class="plan-item-description-item-icon">
|
|
||||||
<img src="https://cms.hitosea.com/uploads/plan_checked_ea40b42593.svg" alt="undefined" />
|
|
||||||
</i>
|
|
||||||
<span class="plan-item-description-item-content">
|
|
||||||
Free 1-Year Technical
|
|
||||||
Maintenance Included
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
<section class="ad-intro">
|
|
||||||
<div class="section-wrapper">
|
|
||||||
<div class="section-title animate__animated animate__fadeInDown animate__fast animate__delay-1s">
|
|
||||||
<span id="ad-intro-title">
|
|
||||||
Why Choose DooTask?
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div class="section-description animate__animated animate__fadeInDown animate__fast animate__delay-1s">
|
|
||||||
<span id="ad-intro-description"> </span>
|
|
||||||
</div>
|
|
||||||
<div id="ad-intro-content" class="section-content">
|
|
||||||
<div class="ad-intro-item">
|
|
||||||
<div class="ad-intro-item-header">
|
|
||||||
<img src="../img/ad/intro-card-head.png" alt="head" />
|
|
||||||
</div>
|
|
||||||
<div class="ad-intro-item-image">
|
|
||||||
<img src="../img/ad/intro-card-img01.svg" alt="img" />
|
|
||||||
</div>
|
|
||||||
<div class="ad-intro-item-title">
|
|
||||||
<span> Project Management </span>
|
|
||||||
</div>
|
|
||||||
<div class="ad-intro-item-description">
|
|
||||||
<span>Supports various project management
|
|
||||||
methodologies such as Agile, Crystal,
|
|
||||||
Kanban, and more, suitable for managing
|
|
||||||
projects of all sizes and types. Users
|
|
||||||
can utilize DooTask’s project management
|
|
||||||
tools, including task assignment,
|
|
||||||
progress tracking, resource allocation,
|
|
||||||
and more to manage the entire project.
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="ad-intro-item">
|
|
||||||
<div class="ad-intro-item-header">
|
|
||||||
<img src="../img/ad/intro-card-head.png" alt="head" />
|
|
||||||
</div>
|
|
||||||
<div class="ad-intro-item-image">
|
|
||||||
<img src="../img/ad/intro-card-img02.svg" alt="img" />
|
|
||||||
</div>
|
|
||||||
<div class="ad-intro-item-title">
|
|
||||||
<span> Team Collaboration </span>
|
|
||||||
</div>
|
|
||||||
<div class="ad-intro-item-description">
|
|
||||||
<span>DooTask’s rich and practical tools
|
|
||||||
facilitate communication and
|
|
||||||
collaboration among team members,
|
|
||||||
enhancing work efficiency. For instance,
|
|
||||||
team members can use DooTask’s document
|
|
||||||
collaboration tools, online mind maps,
|
|
||||||
flowcharts, and more for collaborative
|
|
||||||
work.
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="ad-intro-item">
|
|
||||||
<div class="ad-intro-item-header">
|
|
||||||
<img src="../img/ad/intro-card-head.png" alt="head" />
|
|
||||||
</div>
|
|
||||||
<div class="ad-intro-item-image">
|
|
||||||
<img src="../img/ad/intro-card-img03.svg" alt="img" />
|
|
||||||
</div>
|
|
||||||
<div class="ad-intro-item-title">
|
|
||||||
<span> Data Security Protection </span>
|
|
||||||
</div>
|
|
||||||
<div class="ad-intro-item-description">
|
|
||||||
<span>DooTask uses asymmetric encryption for
|
|
||||||
messaging to maximize user information
|
|
||||||
security. It also features a powerful
|
|
||||||
permission system to customize access
|
|
||||||
and actions in project management based
|
|
||||||
on user roles and duties.
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="ad-intro-item">
|
|
||||||
<div class="ad-intro-item-header">
|
|
||||||
<img src="../img/ad/intro-card-head.png" alt="head" />
|
|
||||||
</div>
|
|
||||||
<div class="ad-intro-item-image">
|
|
||||||
<img src="../img/ad/intro-card-img04.svg" alt="img" />
|
|
||||||
</div>
|
|
||||||
<div class="ad-intro-item-title">
|
|
||||||
<span> Customizable Freely </span>
|
|
||||||
</div>
|
|
||||||
<div class="ad-intro-item-description">
|
|
||||||
<span>DooTask is a completely open-source
|
|
||||||
tool that users can modify and customize
|
|
||||||
freely, avoiding the additional costs
|
|
||||||
associated with commercial software
|
|
||||||
subscriptions.
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
</main>
|
|
||||||
<!-- 页脚区域 -->
|
|
||||||
<footer class="ad-footer">
|
|
||||||
<div class="footer-con">
|
|
||||||
<div class="footer-layout">
|
|
||||||
<div class="footer-l">
|
|
||||||
<a href="../en/index.html" class="logo">
|
|
||||||
<img id="logo" src="../img/light/logo.svg" alt="DooTask,Logo" />
|
|
||||||
<i class="dootask txt-7002027">DooTask</i>
|
|
||||||
</a>
|
|
||||||
<i class="txt txt-4001624">Helps teams move projects forward efficiently
|
|
||||||
and makes work easier.</i>
|
|
||||||
</div>
|
|
||||||
<div class="footer-r">
|
|
||||||
<ul class="footer-r-ul">
|
|
||||||
<li class="footer-r-item">
|
|
||||||
<ol class="footer-r-ol">
|
|
||||||
<li class="footer-ol-item txt-5001624 mb-24">
|
|
||||||
Links
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/product.html">Product</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/solutions.html">Solutions</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/price.html">Pricing</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item">
|
|
||||||
<a class="txt-4001624 txt" href="../en/solutions.html">About Us</a>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li class="footer-r-item">
|
|
||||||
<ol class="footer-r-ol">
|
|
||||||
<li class="footer-ol-item txt-5001624 mb-24">
|
|
||||||
Support
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/download.html">Download Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/help.html">Help Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/privacy.html" target="_blank">Privacy Policy</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item">
|
|
||||||
<a class="txt-4001624 txt" href="../../docs/index.html" target="_blank">API document</a>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li class="footer-r-item">
|
|
||||||
<ol class="footer-r-ol">
|
|
||||||
<li class="footer-ol-item txt-5001624 mb-24">
|
|
||||||
Community
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item">
|
|
||||||
<div class="footer-ol-item mb-16">
|
|
||||||
<i class="txt-4001624 txt" onclick="openInNewTab('https://github.com/kuaifan/dootask')">Github</i>
|
|
||||||
</div>
|
|
||||||
<div class="footer-ol-item mb-16">
|
|
||||||
<i class="txt-4001624 txt" onclick="openInNewTab('https://gitee.com/aipaw/dootask')">Gitee</i>
|
|
||||||
</div>
|
|
||||||
<div class="footer-ol-item" id="qq_group">
|
|
||||||
<i class="txt-4001624 txt">QQ group</i>
|
|
||||||
<div class="group_code">
|
|
||||||
<img class="code-svg" id="home_code" src="../img/light/home_code.svg" alt="Group:546574618" />
|
|
||||||
<i class="group_num">Group:546574618</i>
|
|
||||||
<i class="lower_triangle"></i>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="txt-4001624 filings footer_copyright">
|
|
||||||
<span>
|
|
||||||
Copyright © 2022-2023 DooTask. All rights reserved.
|
|
||||||
</span>
|
|
||||||
<div class="footer_beian" style="display: flex">
|
|
||||||
<img src="../img/beian.png" alt="" /><span style="padding-left: 3px">桂公网安备 45010802000393号</span>
|
|
||||||
</div>
|
|
||||||
<a class="footer_beian_a" href="http://beian.miit.gov.cn">桂ICP备2021003642号-5</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
<!-- 侧边导航 -->
|
|
||||||
<div id="nav_wrap"></div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
<script src="../js/common.js"></script>
|
|
||||||
<script>
|
|
||||||
// cookie弹框
|
|
||||||
document.addEventListener("DOMContentLoaded", function () {
|
|
||||||
let cookieConsent = document.getElementById("cookieConsent");
|
|
||||||
let cookieA = document.getElementById("cookie_a");
|
|
||||||
let buttonBox = document.getElementById("buttonBox");
|
|
||||||
let rejectButton = document.getElementById("rejectButton");
|
|
||||||
let agreeButton = document.getElementById("agreeButton");
|
|
||||||
// 检查localStorage中的同意状态
|
|
||||||
let hasConsented = sessionStorage.getItem("cookieConsent");
|
|
||||||
if (!hasConsented) {
|
|
||||||
cookieConsent.style.display = "block";
|
|
||||||
cookieConsent.style.maxWidth = "24em";
|
|
||||||
cookieConsent.style.height = "auto";
|
|
||||||
cookieConsent.style.flexDirection = "column";
|
|
||||||
cookieConsent.style.backgroundColor = "rgb(249,250,251)";
|
|
||||||
cookieConsent.style.color = "rgb(30,30,30)";
|
|
||||||
cookieConsent.style.padding = "1.2em";
|
|
||||||
cookieConsent.style.borderRadius = "5px";
|
|
||||||
cookieConsent.style.bottom = "1em";
|
|
||||||
cookieConsent.style.right = "1em";
|
|
||||||
cookieConsent.style.position = "fixed";
|
|
||||||
cookieConsent.style.overflow = "hidden";
|
|
||||||
cookieConsent.style.boxSizing = "border-box";
|
|
||||||
cookieConsent.style.fontFamily =
|
|
||||||
"Helvetica,Calibri,Arial,sans-serif";
|
|
||||||
cookieConsent.style.zIndex = "9999";
|
|
||||||
cookieConsent.style.textAlign = "left";
|
|
||||||
cookieConsent.style.fontSize = "16px";
|
|
||||||
cookieConsent.style.lineHeight = "1.5em";
|
|
||||||
cookieConsent.style.boxShadow = "0 4px 12px rgba(0,0,0,.15)";
|
|
||||||
|
|
||||||
cookieA.style.padding = "0.2em";
|
|
||||||
cookieA.style.display = "inline-block";
|
|
||||||
cookieA.style.color = "rgb(30,30,30)";
|
|
||||||
cookieA.style.textDecoration = "underline";
|
|
||||||
|
|
||||||
buttonBox.style.textAlign = "right";
|
|
||||||
buttonBox.style.flex = "1 0 auto";
|
|
||||||
buttonBox.style.alignItems = "center";
|
|
||||||
buttonBox.style.alignContent = "space-between";
|
|
||||||
buttonBox.style.flexDirection = "row";
|
|
||||||
buttonBox.style.display = "flex";
|
|
||||||
buttonBox.style.fontSize = "16px";
|
|
||||||
buttonBox.style.margin = "1em 0 0";
|
|
||||||
|
|
||||||
agreeButton.style.position = "static";
|
|
||||||
agreeButton.style.display = "block";
|
|
||||||
agreeButton.style.padding = "0.7em 0.4em";
|
|
||||||
agreeButton.style.fontSize = ".9em";
|
|
||||||
agreeButton.style.fontWeight = "700";
|
|
||||||
agreeButton.style.textAlign = "center";
|
|
||||||
agreeButton.style.width = "100%";
|
|
||||||
agreeButton.style.borderRadius = "5px";
|
|
||||||
agreeButton.style.marginLeft = "0.5em";
|
|
||||||
|
|
||||||
rejectButton.style.backgroundColor = "transparent";
|
|
||||||
rejectButton.style.borderColor = "transparent";
|
|
||||||
rejectButton.style.color = "rgb(30,30,30)";
|
|
||||||
rejectButton.style.display = "block";
|
|
||||||
rejectButton.style.padding = "0.7em 0.4em";
|
|
||||||
rejectButton.style.fontSize = ".9em";
|
|
||||||
rejectButton.style.fontWeight = "700";
|
|
||||||
}
|
|
||||||
agreeButton.addEventListener("click", handleAgreeButtonClick);
|
|
||||||
rejectButton.addEventListener("click", handleRejectButtonClick);
|
|
||||||
function hideCookieConsent() {
|
|
||||||
cookieConsent.style.display = "none";
|
|
||||||
}
|
|
||||||
function handleAgreeButtonClick() {
|
|
||||||
// 存储同意状态到localStorage
|
|
||||||
sessionStorage.setItem("cookieConsent", "true");
|
|
||||||
hideCookieConsent();
|
|
||||||
}
|
|
||||||
function handleRejectButtonClick() {
|
|
||||||
// 存储拒绝状态到localStorage
|
|
||||||
sessionStorage.setItem("cookieConsent", "false");
|
|
||||||
hideCookieConsent();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
document.addEventListener("DOMContentLoaded", function () {
|
|
||||||
fetch("./sideNav.html")
|
|
||||||
.then((response) => response.text())
|
|
||||||
.then((data) => {
|
|
||||||
document.getElementById("nav_wrap").innerHTML = data;
|
|
||||||
// 回到顶部
|
|
||||||
const back_top_button =
|
|
||||||
document.getElementById("back_to_top");
|
|
||||||
let throttleTimer;
|
|
||||||
const throttle = (callback, time) => {
|
|
||||||
if (throttleTimer) return;
|
|
||||||
throttleTimer = true;
|
|
||||||
setTimeout(() => {
|
|
||||||
callback();
|
|
||||||
throttleTimer = false;
|
|
||||||
}, time);
|
|
||||||
};
|
|
||||||
|
|
||||||
window.addEventListener("scroll", () => {
|
|
||||||
throttle(() => {
|
|
||||||
if (
|
|
||||||
document.body.scrollTop > 20 ||
|
|
||||||
document.documentElement.scrollTop > 20
|
|
||||||
) {
|
|
||||||
back_top_button.style.display = "block";
|
|
||||||
} else {
|
|
||||||
back_top_button.style.display = "none";
|
|
||||||
}
|
|
||||||
}, 200);
|
|
||||||
});
|
|
||||||
back_top_button.addEventListener("click", () => {
|
|
||||||
window.scrollTo({
|
|
||||||
top: 0,
|
|
||||||
behavior: "smooth",
|
|
||||||
});
|
|
||||||
});
|
|
||||||
// 检查页面加载时的滚动位置以决定是否显示回到顶部按钮
|
|
||||||
if (document.documentElement.scrollTop > 20) {
|
|
||||||
back_top_button.style.display = "block"; // 显示回到顶部按钮
|
|
||||||
}
|
|
||||||
let toolbarPhone = document.getElementById(
|
|
||||||
"side_toolbar_item_phone"
|
|
||||||
);
|
|
||||||
let tooltipPhone = document.getElementById(
|
|
||||||
"toolbar_tooltip_phone"
|
|
||||||
);
|
|
||||||
let toolbarWhtasapp = document.getElementById(
|
|
||||||
"side_toolbar_item_whtasapp"
|
|
||||||
);
|
|
||||||
let tooltipWhtasapp = document.getElementById(
|
|
||||||
"toolbar_tooltip_whtasapp"
|
|
||||||
);
|
|
||||||
let toolbarQrcode = document.getElementById(
|
|
||||||
"side_toolbar_item_qrcode"
|
|
||||||
);
|
|
||||||
let tooltipQrcode = document.getElementById(
|
|
||||||
"toolbar_tooltip_qrcode"
|
|
||||||
);
|
|
||||||
|
|
||||||
function toggleTooltip(dom) {
|
|
||||||
if (dom.style.display === "block") {
|
|
||||||
dom.style.display = "none";
|
|
||||||
} else {
|
|
||||||
dom.style.display = "block";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (toolbarPhone) {
|
|
||||||
toolbarPhone.addEventListener("click", () => {
|
|
||||||
event.stopPropagation();
|
|
||||||
// 谷歌分析事件追踪
|
|
||||||
if (gtag) {
|
|
||||||
gtag("event", "click", {
|
|
||||||
event_category: "button",
|
|
||||||
event_label: "right_side_toolbar_phone",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
toggleTooltip(tooltipPhone);
|
|
||||||
tooltipWhtasapp.style.display = "none";
|
|
||||||
tooltipQrcode.style.display = "none";
|
|
||||||
if (
|
|
||||||
/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(
|
|
||||||
navigator.userAgent
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
window.location.href = "tel:0771-3164099";
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (toolbarWhtasapp) {
|
|
||||||
toolbarWhtasapp.addEventListener("click", () => {
|
|
||||||
event.stopPropagation();
|
|
||||||
// 谷歌分析事件追踪
|
|
||||||
if (gtag) {
|
|
||||||
gtag("event", "click", {
|
|
||||||
event_category: "button",
|
|
||||||
event_label: "right_side_toolbar_Whtasapp",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
toggleTooltip(tooltipWhtasapp);
|
|
||||||
tooltipPhone.style.display = "none";
|
|
||||||
tooltipQrcode.style.display = "none";
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (toolbarQrcode) {
|
|
||||||
toolbarQrcode.addEventListener("click", () => {
|
|
||||||
event.stopPropagation();
|
|
||||||
// 谷歌分析事件追踪
|
|
||||||
if (gtag) {
|
|
||||||
gtag("event", "click", {
|
|
||||||
event_category: "button",
|
|
||||||
event_label: "right_side_toolbar_WeChat",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
toggleTooltip(tooltipQrcode);
|
|
||||||
tooltipPhone.style.display = "none";
|
|
||||||
tooltipWhtasapp.style.display = "none";
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script src="../js/ad.js"></script>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
@ -1,44 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<title>Cookie Policy - DooTask</title>
|
|
||||||
<meta name="google" value="notranslate">
|
|
||||||
<meta name="description" content="DooTask是一款轻量级的开源在线项目任务管理工具,提供各类文档协作工具、在线思维导图、在线流程图、项目管理、任务分发、即时IM,文件管理等工具。助力团队高效推进项目,让工作更简单。">
|
|
||||||
<meta name="keywords" content="中国 DooTask 开源在线项目 任务管理工具 任务管理 轻量级 海豚有海 团队协作">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<link rel="shortcut icon" href="../img/favicon.ico">
|
|
||||||
<link rel="stylesheet" href="../css/privacy.css">
|
|
||||||
<!-- Google tag (gtag.js) -->
|
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-16660800396"></script>
|
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PE77P6491J"></script>
|
|
||||||
<script src="../js/googleAds.js"></script>
|
|
||||||
<script src="../js/googleAnalyze.js"></script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<style>
|
|
||||||
body {
|
|
||||||
font-family: Arial, sans-serif;
|
|
||||||
margin: 20px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<div id="markdown-content"></div>
|
|
||||||
|
|
||||||
<script src="../js/markdown-it.min.js"></script>
|
|
||||||
<script>
|
|
||||||
// 创建 markdown-it 实例
|
|
||||||
const md = new window.markdownit();
|
|
||||||
|
|
||||||
// 获取 Markdown 文件内容并渲染为 HTML
|
|
||||||
fetch('./cookie.md')
|
|
||||||
.then(response => response.text())
|
|
||||||
.then(markdownText => {
|
|
||||||
const htmlText = md.render(markdownText);
|
|
||||||
document.getElementById('markdown-content').innerHTML = htmlText;
|
|
||||||
})
|
|
||||||
.catch(error => {
|
|
||||||
console.error('Error:', error);
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@ -1,80 +0,0 @@
|
|||||||
# Cookies Policy
|
|
||||||
|
|
||||||
Last updated: August 10, 2023
|
|
||||||
|
|
||||||
This Cookies Policy explains what Cookies are and how We use them. You should read this policy so You can understand what type of cookies We use, or the information We collect using Cookies and how that information is used. This Cookies Policy has been created with the help of the [Cookies Policy Generator](https://www.termsfeed.com/cookies-policy-generator/).
|
|
||||||
|
|
||||||
Cookies do not typically contain any information that personally identifies a user, but personal information that we store about You may be linked to the information stored in and obtained from Cookies. For further information on how We use, store and keep your personal data secure, see our Privacy Policy.
|
|
||||||
|
|
||||||
We do not store sensitive personal information, such as mailing addresses, account passwords, etc. in the Cookies We use.
|
|
||||||
|
|
||||||
# Interpretation and Definitions
|
|
||||||
|
|
||||||
## Interpretation
|
|
||||||
|
|
||||||
The words of which the initial letter is capitalized have meanings defined under the following conditions. The following definitions shall have the same meaning regardless of whether they appear in singular or in plural.
|
|
||||||
|
|
||||||
## Definitions
|
|
||||||
|
|
||||||
For the purposes of this Cookies Policy:
|
|
||||||
|
|
||||||
- __Company__ (referred to as either "the Company", "We", "Us" or "Our" in this Cookies Policy) refers to Guangxi Hitosea Information Technology Co, No. 1411, 14/F, Building 1, Wuxiang Hangyang City, Liangqing District, Nanning City, Guangxi Zhuang Autonomous Region, China.
|
|
||||||
- __Cookies__ means small files that are placed on Your computer, mobile device or any other device by a website, containing details of your browsing history on that website among its many uses.
|
|
||||||
- __Website__ refers to DooTask, accessible from [ https://www.dootask.com/]( https://www.dootask.com/)
|
|
||||||
- __You__ means the individual accessing or using the Website, or a company, or any legal entity on behalf of which such individual is accessing or using the Website, as applicable.
|
|
||||||
|
|
||||||
# The use of the Cookies
|
|
||||||
|
|
||||||
## Type of Cookies We Use
|
|
||||||
|
|
||||||
Cookies can be "Persistent" or "Session" Cookies. Persistent Cookies remain on your personal computer or mobile device when You go offline, while Session Cookies are deleted as soon as You close your web browser.
|
|
||||||
|
|
||||||
We use both session and persistent Cookies for the purposes set out below:
|
|
||||||
|
|
||||||
- __Necessary / Essential Cookies__
|
|
||||||
|
|
||||||
Type: Session Cookies
|
|
||||||
|
|
||||||
Administered by: Us
|
|
||||||
|
|
||||||
Purpose: These Cookies are essential to provide You with services available through the Website and to enable You to use some of its features. They help to authenticate users and prevent fraudulent use of user accounts. Without these Cookies, the services that You have asked for cannot be provided, and We only use these Cookies to provide You with those services.
|
|
||||||
|
|
||||||
- __Functionality Cookies__
|
|
||||||
|
|
||||||
Type: Persistent Cookies
|
|
||||||
|
|
||||||
Administered by: Us
|
|
||||||
|
|
||||||
Purpose: These Cookies allow us to remember choices You make when You use the Website, such as remembering your login details or language preference. The purpose of these Cookies is to provide You with a more personal experience and to avoid You having to re-enter your preferences every time You use the Website.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Your Choices Regarding Cookies
|
|
||||||
|
|
||||||
If You prefer to avoid the use of Cookies on the Website, first You must disable the use of Cookies in your browser and then delete the Cookies saved in your browser associated with this website. You may use this option for preventing the use of Cookies at any time.
|
|
||||||
|
|
||||||
If You do not accept Our Cookies, You may experience some inconvenience in your use of the Website and some features may not function properly.
|
|
||||||
|
|
||||||
If You'd like to delete Cookies or instruct your web browser to delete or refuse Cookies, please visit the help pages of your web browser.
|
|
||||||
|
|
||||||
- For the Chrome web browser, please visit this page from Google: [https://support.google.com/accounts/answer/32050](https://support.google.com/accounts/answer/32050)
|
|
||||||
|
|
||||||
- For the Internet Explorer web browser, please visit this page from Microsoft: [http://support.microsoft.com/kb/278835](http://support.microsoft.com/kb/278835)
|
|
||||||
|
|
||||||
- For the Firefox web browser, please visit this page from Mozilla: [https://support.mozilla.org/en-US/kb/delete-cookies-remove-info-websites-stored](https://support.mozilla.org/en-US/kb/delete-cookies-remove-info-websites-stored)
|
|
||||||
|
|
||||||
- For the Safari web browser, please visit this page from Apple: [https://support.apple.com/guide/safari/manage-cookies-and-website-data-sfri11471/mac](https://support.apple.com/guide/safari/manage-cookies-and-website-data-sfri11471/mac)
|
|
||||||
|
|
||||||
For any other web browser, please visit your web browser's official web pages.
|
|
||||||
|
|
||||||
## More Information about Cookies
|
|
||||||
|
|
||||||
You can learn more about cookies here: [All About Cookies by TermsFeed](https://www.termsfeed.com/blog/cookies/).
|
|
||||||
|
|
||||||
## Contact Us
|
|
||||||
|
|
||||||
If you have any questions about this Cookies Policy, You can contact us:
|
|
||||||
|
|
||||||
|
|
||||||
- By email: service@hitosea.com
|
|
||||||
@ -1,655 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8" />
|
|
||||||
<title>Download Center - DooTask</title>
|
|
||||||
<meta name="google" value="notranslate" />
|
|
||||||
<meta name="description"
|
|
||||||
content="Lightweight open source online project task management tool to help teams efficiently advance their projects and make work easier." />
|
|
||||||
<meta name="keywords" content="China DooTask Task management Lightweight Hitosea Teamwork" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
||||||
<link rel="shortcut icon" href="../img/favicon.ico" />
|
|
||||||
<link rel="stylesheet" href="../css/common.css" />
|
|
||||||
<link rel="stylesheet" type="text/css" href="../css/rem.css" />
|
|
||||||
<link rel="stylesheet" href="../css/download.css" />
|
|
||||||
<!-- Google tag (gtag.js) -->
|
|
||||||
<script async src="//www.googletagmanager.com/gtag/js?id=AW-16660800396"></script>
|
|
||||||
<script async src="//www.googletagmanager.com/gtag/js?id=G-PE77P6491J"></script>
|
|
||||||
<script src="../js/googleAds.js"></script>
|
|
||||||
<script src="../js/googleAnalyze.js"></script>
|
|
||||||
|
|
||||||
<script src="../js/qs.min.js"></script>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<div class="BulletBox"></div>
|
|
||||||
<div id="layout">
|
|
||||||
<!-- 页头区域 -->
|
|
||||||
<header class="head dow">
|
|
||||||
<div class="nav">
|
|
||||||
<div class="nav-layout">
|
|
||||||
<a href="../en/index.html" class="logo">
|
|
||||||
<img id="logo" src="../img/light/logo.svg" alt="DooTask,Logo" />
|
|
||||||
<i class="dootask txt-7002027">DooTask</i>
|
|
||||||
</a>
|
|
||||||
<ul class="nav-ul">
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<a class="txt-4001620 txt nav-product" href="../en/product.html">Product</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<a class="txt-4001620 txt nav-solutions" href="../en/solutions.html">Solutions</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<i class="txt-4001620 txt nav-support" id="support-txt" onclick="showMenuPopHandle()">
|
|
||||||
Support
|
|
||||||
<img src="../img/vector.svg" alt="Support" class="nav-vector" id="drop-down-svg" />
|
|
||||||
</i>
|
|
||||||
<ol class="submenu-pop" id="submenu-pop">
|
|
||||||
<li class="submenu-pop-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001418 txt-sub" href="../en/download.html">Download Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="submenu-pop-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001418 txt-sub" href="../en/help.html">Help Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="submenu-pop-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001418 txt-sub" href="../en/privacy.html" target="_blank">Privacy
|
|
||||||
Policy</a>
|
|
||||||
</li>
|
|
||||||
<li class="submenu-pop-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001418 txt-sub" href="../../docs/index.html" target="_blank">API
|
|
||||||
document</a>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<a class="txt-4001620 txt nav-price" href="../en/price.html">Pricing</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<a class="txt-4001620 txt nav-about" href="../en/about.html">About Us</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<div class="nav-r">
|
|
||||||
<div class="lang" id="lang-img">
|
|
||||||
<img src="../img/lang-select.svg" alt="Language switch" onclick="shouLangPopHandle()" />
|
|
||||||
<ul class="lang-pop" id="lang-pop">
|
|
||||||
<li class="lang-pop-item" onclick="changeLanguage('zh')">
|
|
||||||
<i class="lang-txt">简体中文</i>
|
|
||||||
</li>
|
|
||||||
<li class="lang-pop-item" onclick="changeLanguage('en')">
|
|
||||||
<i class="lang-txt">English</i>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<i class="nav-r-icon theme_dark" onclick="setTheme('light')">
|
|
||||||
<img src="../img/light.svg" alt="Brighter themes" />
|
|
||||||
</i>
|
|
||||||
<i class="nav-r-icon theme_light" onclick="setTheme('dark')">
|
|
||||||
<img src="../img/drak.svg" alt="Dark theme" />
|
|
||||||
</i>
|
|
||||||
<a href="https://github.com/kuaifan/dootask" target="_blank">
|
|
||||||
<i class="nav-r-icon">
|
|
||||||
<img src="../img/github.svg" alt="github" />
|
|
||||||
</i>
|
|
||||||
</a>
|
|
||||||
<i class="line-1"></i>
|
|
||||||
<span class="get-started">
|
|
||||||
<a href="../../manage/dashboard">
|
|
||||||
<button class="btn btn-primary">
|
|
||||||
Try Now
|
|
||||||
</button>
|
|
||||||
</a>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div class="menuBtn">
|
|
||||||
<img id="menuBtn" src="../img/menu.svg" alt="Menu" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="topics">
|
|
||||||
<div class="topics-con">
|
|
||||||
<div class="topics-layout">
|
|
||||||
<div class="topics-tit mb-32 topics-tit-en">
|
|
||||||
<span class="txt-6005670 topics-h1">Download DooTask client</span>
|
|
||||||
</div>
|
|
||||||
<h4 class="txt-4001830 topics-h4 mb-64 topics-h4-en">
|
|
||||||
Also supports iOS, Android, macOS, Windows
|
|
||||||
versions
|
|
||||||
</h4>
|
|
||||||
<ul class="download-ul">
|
|
||||||
<li class="download-ul-item dow-animate-box" style="--delay: 0s" onmouseover="handleMouseover(0)"
|
|
||||||
onmouseout="handleMouseout(0)">
|
|
||||||
<a class="normal" href="https://apps.apple.com/cn/app/dootask/id1624855111" target="_blank" id="ios">
|
|
||||||
<img class="icon mb-8" src="../img/dow_ios.svg" alt="ios" />
|
|
||||||
<i class="txt-4001624 txt">ios</i>
|
|
||||||
</a>
|
|
||||||
<a class="hover" href="https://apps.apple.com/cn/app/dootask/id1624855111" target="_blank">
|
|
||||||
<img class="qr-code mb-8" src="../img/ios_code.png" alt="Scan download,ios" />
|
|
||||||
<i class="txt-4001624 txt"> Download</i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li class="download-ul-item dow-animate-box" style="--delay: 0.1s" onmouseover="handleMouseover(1)"
|
|
||||||
onmouseout="handleMouseout(1)">
|
|
||||||
<a class="normal" href="https://www.dootask.com/desktop/publish/latest?platform=android" target="_blank"
|
|
||||||
id="Android">
|
|
||||||
<img class="icon mb-8" src="../img/dow_android.svg" alt="Android" />
|
|
||||||
<i class="txt-4001624 txt">Android</i>
|
|
||||||
</a>
|
|
||||||
<a class="hover radius" id="winx64Link"
|
|
||||||
href="https://www.dootask.com/desktop/publish/latest?platform=android" target="_blank">
|
|
||||||
<img class="icon mb-8" src="../img/dow_icon.svg" alt="Windows,download" />
|
|
||||||
<i class="txt-4001624 txt">Download</i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li class="download-ul-item dow-animate-box" style="--delay: 0.2s" onmouseover="handleMouseover(2)"
|
|
||||||
onmouseout="handleMouseout(2)">
|
|
||||||
<div class="normal">
|
|
||||||
<img class="icon mb-8" src="../img/dow_mac.svg" alt="macOS" />
|
|
||||||
<i class="txt-4001624 txt">macOS</i>
|
|
||||||
</div>
|
|
||||||
<div class="hover radius">
|
|
||||||
<button class="btn btn-green mb-12 btn-padding" style="width: 70%">
|
|
||||||
<a class="chips-txt txt-4001418" id="arm64Link"
|
|
||||||
href="https://www.dootask.com/desktop/publish/latest?platform=mac&arch=arm64"
|
|
||||||
target="_blank">Apple Chips</a>
|
|
||||||
</button>
|
|
||||||
<button class="btn btn-green btn-padding" style="width: 70%">
|
|
||||||
<a class="chips-txt txt-4001418" id="x64Link"
|
|
||||||
href="https://www.dootask.com/desktop/publish/latest?platform=mac&arch=x64" target="_blank">Intel
|
|
||||||
Chips</a>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
<li class="download-ul-item dow-animate-box" style="--delay: 0.3s" onmouseover="handleMouseover(3)"
|
|
||||||
onmouseout="handleMouseout(3)">
|
|
||||||
<div class="normal">
|
|
||||||
<img class="icon mb-8" src="../img/dow_window.svg" alt="Windows" />
|
|
||||||
<i class="txt-4001624 txt">Windows</i>
|
|
||||||
</div>
|
|
||||||
<a class="hover radius" id="winx64Link"
|
|
||||||
href="https://www.dootask.com/desktop/publish/latest?platform=win&arch=x64" target="_blank">
|
|
||||||
<img class="icon mb-8" src="../img/dow_icon.svg" alt="Windows,download" />
|
|
||||||
<i class="txt-4001624 txt">Download</i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<a class="download-other-btn dow-animate-box" style="--delay: 0.5s"
|
|
||||||
href="https://www.dootask.com/desktop/publish/latest" target="_blank"><span>Other
|
|
||||||
Versions</span></a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<!-- 菜单抽屉 -->
|
|
||||||
<div class="drawer">
|
|
||||||
<div class="drawer-t mb-36">
|
|
||||||
<a href="../en/index.html" class="logo">
|
|
||||||
<img id="logo" src="../img/light/logo.svg" alt="DooTaskLogo" />
|
|
||||||
<i class="dootask txt-7002027">DooTask</i>
|
|
||||||
</a>
|
|
||||||
<i class="close-drawer" onclick="closeDraweHandle()">✕</i>
|
|
||||||
</div>
|
|
||||||
<ul class="drawer-ul">
|
|
||||||
<li class="drawer-item-t mb-16">
|
|
||||||
<div class="drawer-item" onclick="closeDraweHandle()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/product.html">Product</a>
|
|
||||||
</div>
|
|
||||||
<div class="drawer-item" onclick="closeDraweHandle()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/solutions.html">Solutions</a>
|
|
||||||
</div>
|
|
||||||
<div class="drawer-item" onclick="expandMenuHandle('support')">
|
|
||||||
<i class="txt-4001620 txt">
|
|
||||||
Support
|
|
||||||
<img src="../img/vector.svg" class="nav-vector" alt="Support" id="drawer-down-support-svg" />
|
|
||||||
</i>
|
|
||||||
</div>
|
|
||||||
<ol class="drawer-active hide" id="support">
|
|
||||||
<li class="drawer-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/download.html">Download Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/help.html">Help Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/privacy.html" target="_blank">Privacy Policy</a>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001620 txt" href="../../docs/index.html" target="_blank">API document</a>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
<div class="drawer-item" onclick="closeDraweHandle()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/price.html">Pricing</a>
|
|
||||||
</div>
|
|
||||||
<div class="drawer-item mb-16" onclick="closeDraweHandle()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/about.html">About Us</a>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item-c">
|
|
||||||
<div class="drawer-item" onclick="expandMenuHandle('theme')">
|
|
||||||
<i class="txt-4001620 txt">
|
|
||||||
Theme
|
|
||||||
<img src="../img/vector.svg" alt="Theme" class="nav-vector" id="drawer-down-theme-svg" />
|
|
||||||
</i>
|
|
||||||
</div>
|
|
||||||
<ol class="drawer-active hide">
|
|
||||||
<li class="drawer-item" onclick="setTheme('light')">
|
|
||||||
<i class="txt-4001620 txt">Light</i>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="setTheme('dark')">
|
|
||||||
<i class="txt-4001620 txt">Dark</i>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
<div class="drawer-item" onclick="expandMenuHandle('language')">
|
|
||||||
<i class="txt-4001620 txt">
|
|
||||||
Language
|
|
||||||
<img src="../img/vector.svg" alt="Language" class="nav-vector" id="drawer-down-language-svg" />
|
|
||||||
</i>
|
|
||||||
</div>
|
|
||||||
<ol class="drawer-active hide" id="language">
|
|
||||||
<li class="drawer-item" onclick="changeLanguage('zh')">
|
|
||||||
<i class="txt-4001620 txt">简体中文</i>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="changeLanguage('en')">
|
|
||||||
<i class="txt-4001620 txt">English</i>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item-b">
|
|
||||||
<div class="drawer-item">
|
|
||||||
<a class="txt-4001620 txt" href="../../manage/dashboard">Try Now</a>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<!-- 内容区域 -->
|
|
||||||
<main>
|
|
||||||
<!-- 主要区域划分 -->
|
|
||||||
<section>
|
|
||||||
<article class="update">
|
|
||||||
<div class="update-bg-svg">
|
|
||||||
<div class="update-con">
|
|
||||||
<div class="update-layout">
|
|
||||||
<div class="update-l">
|
|
||||||
<h1 class="txt-4003645 update-h1 mb-36">
|
|
||||||
Update Log
|
|
||||||
</h1>
|
|
||||||
<ul class="update-ul">
|
|
||||||
<li id="releases"></li>
|
|
||||||
<li>
|
|
||||||
<a class="more-item" href="../en/log.html">
|
|
||||||
<h5 class="txt-4001624 more">
|
|
||||||
More Logs
|
|
||||||
</h5>
|
|
||||||
<img class="icon" src="../img/dow_arrow.svg" alt="More Logs" />
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="update-r">
|
|
||||||
<img class="update-r-svg" id="dow_pic1" src="../img/light/zh_dow_pic1.png" alt="Download Centre" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</article>
|
|
||||||
</section>
|
|
||||||
</main>
|
|
||||||
<!-- 页脚区域 -->
|
|
||||||
<footer>
|
|
||||||
<div class="footer-con">
|
|
||||||
<div class="footer-layout">
|
|
||||||
<div class="footer-l">
|
|
||||||
<a href="../en/index.html" class="logo">
|
|
||||||
<img id="logo" src="../img/light/logo.svg" alt="DooTask,Logo" />
|
|
||||||
<i class="dootask txt-7002027">DooTask</i>
|
|
||||||
</a>
|
|
||||||
<i class="txt txt-4001624">Helps teams move projects forward efficiently
|
|
||||||
and makes work easier.</i>
|
|
||||||
</div>
|
|
||||||
<div class="footer-r">
|
|
||||||
<ul class="footer-r-ul">
|
|
||||||
<li class="footer-r-item">
|
|
||||||
<ol class="footer-r-ol">
|
|
||||||
<li class="footer-ol-item txt-5001624 mb-24">
|
|
||||||
Links
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/product.html">Product</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/solutions.html">Solutions</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/price.html">Pricing</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item">
|
|
||||||
<a class="txt-4001624 txt" href="../en/solutions.html">About Us</a>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li class="footer-r-item">
|
|
||||||
<ol class="footer-r-ol">
|
|
||||||
<li class="footer-ol-item txt-5001624 mb-24">
|
|
||||||
Support
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/download.html">Download Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/help.html">Help Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001620 txt" href="../en/privacy.html" target="_blank">Privacy
|
|
||||||
Policy</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item">
|
|
||||||
<a class="txt-4001624 txt" href="../../docs/index.html" target="_blank">API
|
|
||||||
document</a>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li class="footer-r-item">
|
|
||||||
<ol class="footer-r-ol">
|
|
||||||
<li class="footer-ol-item txt-5001624 mb-24">
|
|
||||||
Community
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item">
|
|
||||||
<div class="footer-ol-item mb-16">
|
|
||||||
<i class="txt-4001624 txt" onclick="openInNewTab('https://github.com/kuaifan/dootask')">Github</i>
|
|
||||||
</div>
|
|
||||||
<div class="footer-ol-item mb-16">
|
|
||||||
<i class="txt-4001624 txt" onclick="openInNewTab('https://gitee.com/aipaw/dootask')">Gitee</i>
|
|
||||||
</div>
|
|
||||||
<div class="footer-ol-item" id="qq_group">
|
|
||||||
<i class="txt-4001624 txt">QQ group</i>
|
|
||||||
<div class="group_code">
|
|
||||||
<img class="code-svg" id="home_code" src="../img/light/home_code.svg" alt="Group:546574618" />
|
|
||||||
<i class="group_num">Group:546574618</i>
|
|
||||||
<i class="lower_triangle"></i>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="txt-4001624 filings footer_copyright">
|
|
||||||
<span>
|
|
||||||
Copyright © 2022-2023 DooTask. All rights reserved.
|
|
||||||
</span>
|
|
||||||
<div class="footer_beian" style="display: flex">
|
|
||||||
<img src="../img/beian.png" alt="" /><span style="padding-left: 3px">桂公网安备
|
|
||||||
45010802000393号</span>
|
|
||||||
</div>
|
|
||||||
<a class="footer_beian_a" href="http://beian.miit.gov.cn">桂ICP备2021003642号-5</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
<!-- 侧边导航 -->
|
|
||||||
<div id="nav_wrap"></div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
<script src="../js/common.js"></script>
|
|
||||||
<script src="//cdn.bootcdn.net/ajax/libs/axios/1.3.6/axios.js"></script>
|
|
||||||
<script>
|
|
||||||
const isMobile = "ontouchstart" in window;
|
|
||||||
const androidDOM = document.getElementById("Android");
|
|
||||||
const iosDOM = document.getElementById("ios");
|
|
||||||
// 判断是否为ios
|
|
||||||
const isIos = /iPad|iPhone|iPod/.test(window.navigator.userAgent);
|
|
||||||
// 判断是否为安卓
|
|
||||||
const isAndroid = /Android/.test(window.navigator.userAgent);
|
|
||||||
// 判断是否为windows
|
|
||||||
const isWindows = /Win64/.test(window.navigator.userAgent);
|
|
||||||
/* 下载应用的hover处理函数 */
|
|
||||||
const download = document.querySelector(".download-ul");
|
|
||||||
const downloadItems = download.querySelectorAll(".download-ul-item");
|
|
||||||
const handleMouseover = (val) => {
|
|
||||||
if (isIos || isAndroid) {
|
|
||||||
return;
|
|
||||||
} else {
|
|
||||||
downloadItems[val].children[0].style.display = "none";
|
|
||||||
downloadItems[val].children[1].style.display = "flex";
|
|
||||||
}
|
|
||||||
};
|
|
||||||
const handleMouseout = (val) => {
|
|
||||||
if (isIos || isAndroid) {
|
|
||||||
return;
|
|
||||||
} else {
|
|
||||||
downloadItems[val].children[0].style.display = "flex";
|
|
||||||
downloadItems[val].children[1].style.display = "none";
|
|
||||||
}
|
|
||||||
};
|
|
||||||
/* 对于ios与Android pc端点击时a链接直接跳转 移动端点击时需要阻止a链接直接跳转 */
|
|
||||||
androidDOM.addEventListener("click", function (e) {
|
|
||||||
if (isMobile) {
|
|
||||||
e.preventDefault();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
iosDOM.addEventListener("click", function (e) {
|
|
||||||
if (isMobile) {
|
|
||||||
e.preventDefault();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
// 对于不同类型的移动端进行处理
|
|
||||||
function movieHandle(flag = true) {
|
|
||||||
if (flag) {
|
|
||||||
downloadItems.forEach((item, index) => {
|
|
||||||
item.addEventListener("touchstart", function () {
|
|
||||||
if (index == 2 || index == 3) {
|
|
||||||
return showBox("Not supported on current device");
|
|
||||||
}
|
|
||||||
if (index == 0) {
|
|
||||||
if (isIos) {
|
|
||||||
window.location.href = item.children[0].href;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
return showBox("Not supported on current device");
|
|
||||||
}
|
|
||||||
if (index == 1) {
|
|
||||||
if (isAndroid) {
|
|
||||||
window.location.href = item.children[0].href;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
return showBox("Not supported on current device");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// 移动端
|
|
||||||
/* 显示/隐藏提示弹框 */
|
|
||||||
function showBox(text) {
|
|
||||||
const box = document.querySelector(".BulletBox");
|
|
||||||
box.style.display = "block";
|
|
||||||
box.innerHTML = text;
|
|
||||||
setTimeout(() => {
|
|
||||||
box.style.display = "none";
|
|
||||||
}, 1000);
|
|
||||||
}
|
|
||||||
// 是否是移动端
|
|
||||||
if (isMobile) {
|
|
||||||
if (isAndroid || isIos) {
|
|
||||||
movieHandle();
|
|
||||||
} else if (isWindows) {
|
|
||||||
movieHandle(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
const localStorageHandle = (val) => {
|
|
||||||
localStorage.setItem("update_log_num", val);
|
|
||||||
window.location.href = "../en/log.html";
|
|
||||||
};
|
|
||||||
const getItem = (key) => {
|
|
||||||
var record = JSON.parse(localStorage.getItem(key));
|
|
||||||
if (!record) return null;
|
|
||||||
if (new Date().getTime() > record.expired) {
|
|
||||||
localStorage.removeItem(key);
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
return record.value;
|
|
||||||
};
|
|
||||||
/* 滑动到可视区域执行动画 */
|
|
||||||
const boxes = document.querySelectorAll(".dow-animate-box");
|
|
||||||
const animateBoxes = () => {
|
|
||||||
boxes.forEach((box) => {
|
|
||||||
const boxTop = box.getBoundingClientRect().top;
|
|
||||||
const boxBottom = box.getBoundingClientRect().bottom;
|
|
||||||
if (boxTop < window.innerHeight && boxBottom > 0) {
|
|
||||||
box.classList.add("animate");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
window.addEventListener("scroll", animateBoxes);
|
|
||||||
animateBoxes();
|
|
||||||
|
|
||||||
// 获取日志
|
|
||||||
const logsItem = getItem("logs_dowmload_en");
|
|
||||||
const updates = document.getElementById("releases");
|
|
||||||
if (!logsItem) {
|
|
||||||
const url = "../../api/system/get/updatelog";
|
|
||||||
axios
|
|
||||||
.get(url)
|
|
||||||
.then((res) => {
|
|
||||||
const changelog = res.data.data.updateLog;
|
|
||||||
const regex = /## \[(.*?)\]\n([\s\S]*?)(?=\n\n## \[|$)/g;
|
|
||||||
let match;
|
|
||||||
const Versions = [];
|
|
||||||
while ((match = regex.exec(changelog)) !== null) {
|
|
||||||
Versions.push(match[1]);
|
|
||||||
}
|
|
||||||
const releases = Versions.slice(0, 5)
|
|
||||||
.map((item, index) => {
|
|
||||||
return `
|
|
||||||
<li class="update-item" onclick="localStorageHandle(${index + 1})">
|
|
||||||
<h5 class="txt-4001624 update-h5">DooTask ${item} update</h5>
|
|
||||||
</li>
|
|
||||||
`;
|
|
||||||
})
|
|
||||||
.join("");
|
|
||||||
let record = {
|
|
||||||
value: releases,
|
|
||||||
expired: new Date().getTime() + 30 * 60 * 1000,
|
|
||||||
};
|
|
||||||
localStorage.setItem(
|
|
||||||
"logs_dowmload_en",
|
|
||||||
JSON.stringify(record)
|
|
||||||
);
|
|
||||||
updates.innerHTML = releases;
|
|
||||||
})
|
|
||||||
.catch((err) => { });
|
|
||||||
} else {
|
|
||||||
updates.innerHTML = logsItem;
|
|
||||||
}
|
|
||||||
document.addEventListener("DOMContentLoaded", function () {
|
|
||||||
fetch("./sideNav.html")
|
|
||||||
.then((response) => response.text())
|
|
||||||
.then((data) => {
|
|
||||||
document.getElementById("nav_wrap").innerHTML = data;
|
|
||||||
// 回到顶部
|
|
||||||
const back_top_button =
|
|
||||||
document.getElementById("back_to_top");
|
|
||||||
window.addEventListener("scroll", () => {
|
|
||||||
if (
|
|
||||||
document.body.scrollTop > 20 ||
|
|
||||||
document.documentElement.scrollTop > 20
|
|
||||||
) {
|
|
||||||
back_top_button.style.display = "block";
|
|
||||||
} else {
|
|
||||||
back_top_button.style.display = "none";
|
|
||||||
}
|
|
||||||
});
|
|
||||||
back_top_button.addEventListener("click", () => {
|
|
||||||
window.scrollTo({
|
|
||||||
top: 0,
|
|
||||||
behavior: "smooth",
|
|
||||||
});
|
|
||||||
});
|
|
||||||
// 检查页面加载时的滚动位置以决定是否显示回到顶部按钮
|
|
||||||
if (document.documentElement.scrollTop > 20) {
|
|
||||||
back_top_button.style.display = "block"; // 显示回到顶部按钮
|
|
||||||
}
|
|
||||||
let toolbarPhone = document.getElementById(
|
|
||||||
"side_toolbar_item_phone"
|
|
||||||
);
|
|
||||||
let tooltipPhone = document.getElementById(
|
|
||||||
"toolbar_tooltip_phone"
|
|
||||||
);
|
|
||||||
let toolbarWhtasapp = document.getElementById(
|
|
||||||
"side_toolbar_item_whtasapp"
|
|
||||||
);
|
|
||||||
let tooltipWhtasapp = document.getElementById(
|
|
||||||
"toolbar_tooltip_whtasapp"
|
|
||||||
);
|
|
||||||
let toolbarQrcode = document.getElementById(
|
|
||||||
"side_toolbar_item_qrcode"
|
|
||||||
);
|
|
||||||
let tooltipQrcode = document.getElementById(
|
|
||||||
"toolbar_tooltip_qrcode"
|
|
||||||
);
|
|
||||||
|
|
||||||
function toggleTooltip(dom) {
|
|
||||||
if (dom.style.display === "block") {
|
|
||||||
dom.style.display = "none";
|
|
||||||
} else {
|
|
||||||
dom.style.display = "block";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (toolbarPhone) {
|
|
||||||
toolbarPhone.addEventListener("click", () => {
|
|
||||||
event.stopPropagation();
|
|
||||||
// 谷歌分析事件追踪
|
|
||||||
if (gtag) {
|
|
||||||
gtag("event", "click", {
|
|
||||||
event_category: "button",
|
|
||||||
event_label: "right_side_toolbar_phone",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
toggleTooltip(tooltipPhone);
|
|
||||||
tooltipWhtasapp.style.display = "none";
|
|
||||||
tooltipQrcode.style.display = "none";
|
|
||||||
if (
|
|
||||||
/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(
|
|
||||||
navigator.userAgent
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
window.location.href = "tel:0771-3164099";
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (toolbarWhtasapp) {
|
|
||||||
toolbarWhtasapp.addEventListener("click", () => {
|
|
||||||
event.stopPropagation();
|
|
||||||
// 谷歌分析事件追踪
|
|
||||||
if (gtag) {
|
|
||||||
gtag("event", "click", {
|
|
||||||
event_category: "button",
|
|
||||||
event_label: "right_side_toolbar_Whtasapp",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
toggleTooltip(tooltipWhtasapp);
|
|
||||||
tooltipPhone.style.display = "none";
|
|
||||||
tooltipQrcode.style.display = "none";
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (toolbarQrcode) {
|
|
||||||
toolbarQrcode.addEventListener("click", () => {
|
|
||||||
event.stopPropagation();
|
|
||||||
// 谷歌分析事件追踪
|
|
||||||
if (gtag) {
|
|
||||||
gtag("event", "click", {
|
|
||||||
event_category: "button",
|
|
||||||
event_label: "right_side_toolbar_WeChat",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
toggleTooltip(tooltipQrcode);
|
|
||||||
tooltipPhone.style.display = "none";
|
|
||||||
tooltipWhtasapp.style.display = "none";
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script src="../js/ad.js"></script>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
@ -1,702 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8" />
|
|
||||||
<title>Logs - DooTask</title>
|
|
||||||
<meta name="google" value="notranslate" />
|
|
||||||
<meta name="description"
|
|
||||||
content="Lightweight open source online project task management tool to help teams efficiently advance their projects and make work easier." />
|
|
||||||
<meta name="keywords" content="China DooTask Task management Lightweight Hitosea Teamwork" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
||||||
<link rel="shortcut icon" href="../img/favicon.ico" />
|
|
||||||
<link rel="stylesheet" href="../css/common.css" />
|
|
||||||
<link rel="stylesheet" type="text/css" href="../css/rem.css" />
|
|
||||||
<link rel="stylesheet" href="../css/log.css" />
|
|
||||||
<!-- Google tag (gtag.js) -->
|
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-16660800396"></script>
|
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PE77P6491J"></script>
|
|
||||||
<script src="../js/googleAds.js"></script>
|
|
||||||
<script src="../js/googleAnalyze.js"></script>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<div id="layout">
|
|
||||||
<!-- 页头区域 -->
|
|
||||||
<header>
|
|
||||||
<div class="nav">
|
|
||||||
<div class="nav-layout">
|
|
||||||
<a href="../en/index.html" class="logo">
|
|
||||||
<img id="logo" src="../img/light/logo.svg" alt="DooTask,Logo" />
|
|
||||||
<i class="dootask txt-7002027">DooTask</i>
|
|
||||||
</a>
|
|
||||||
<ul class="nav-ul">
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<a class="txt-4001620 txt nav-product" href="../en/product.html">Product</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<a class="txt-4001620 txt nav-solutions" href="../en/solutions.html">Solutions</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<i class="txt-4001620 txt nav-support" id="support-txt" onclick="showMenuPopHandle()">
|
|
||||||
Support
|
|
||||||
<img src="../img/vector.svg" alt="Support" class="nav-vector" id="drop-down-svg" />
|
|
||||||
</i>
|
|
||||||
<ol class="submenu-pop" id="submenu-pop">
|
|
||||||
<li class="submenu-pop-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001418 txt-sub" href="../en/download.html">Download Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="submenu-pop-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001418 txt-sub" href="../en/help.html">Help Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="submenu-pop-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001418 txt-sub" href="../en/privacy.html" target="_blank">Privacy
|
|
||||||
Policy</a>
|
|
||||||
</li>
|
|
||||||
<li class="submenu-pop-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001418 txt-sub" href="../../docs/index.html" target="_blank">API
|
|
||||||
document</a>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<a class="txt-4001620 txt nav-price" href="../en/price.html">Pricing</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<a class="txt-4001620 txt nav-about" href="../en/about.html">About Us</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<div class="nav-r">
|
|
||||||
<div class="lang" id="lang-img">
|
|
||||||
<img src="../img/lang-select.svg" alt="Language switch" onclick="shouLangPopHandle()" />
|
|
||||||
<ul class="lang-pop" id="lang-pop">
|
|
||||||
<li class="lang-pop-item" onclick="changeLanguage('zh')">
|
|
||||||
<i class="lang-txt">简体中文</i>
|
|
||||||
</li>
|
|
||||||
<li class="lang-pop-item" onclick="changeLanguage('en')">
|
|
||||||
<i class="lang-txt">English</i>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<i class="nav-r-icon theme_dark" onclick="setTheme('light')">
|
|
||||||
<img src="../img/light.svg" alt="Light theme" />
|
|
||||||
</i>
|
|
||||||
<i class="nav-r-icon theme_light" onclick="setTheme('dark')">
|
|
||||||
<img src="../img/drak.svg" alt="Dark theme" />
|
|
||||||
</i>
|
|
||||||
<a href="https://github.com/kuaifan/dootask" target="_blank">
|
|
||||||
<i class="nav-r-icon">
|
|
||||||
<img src="../img/github.svg" alt="github" />
|
|
||||||
</i>
|
|
||||||
</a>
|
|
||||||
<i class="line-1"></i>
|
|
||||||
<span class="get-started">
|
|
||||||
<a href="../../manage/dashboard">
|
|
||||||
<button class="btn btn-primary">
|
|
||||||
Try Now
|
|
||||||
</button>
|
|
||||||
</a>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div class="menuBtn">
|
|
||||||
<img id="menuBtn" src="../img/menu.svg" alt="Menu" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<!-- logs抽屉 -->
|
|
||||||
<div class="logs-drawer">
|
|
||||||
<div class="drawer-t mb-36">
|
|
||||||
<a href="../en/index.html" class="logo">
|
|
||||||
<img id="logo" src="../img/light/logo.svg" alt="DooTask,Logo" />
|
|
||||||
<i class="dootask txt-7002027">DooTask</i>
|
|
||||||
</a>
|
|
||||||
<i class="close-drawer" onclick="closeLogsDraweHandle()">✕</i>
|
|
||||||
</div>
|
|
||||||
<h5 class="logs-h5 mb-16">Logs</h5>
|
|
||||||
<ul class="logs-l-ul logs-l-768"></ul>
|
|
||||||
</div>
|
|
||||||
<!-- 菜单抽屉 -->
|
|
||||||
<div class="drawer">
|
|
||||||
<div class="drawer-t mb-36">
|
|
||||||
<a href="../en/index.html" class="logo">
|
|
||||||
<img id="logo" src="../img/light/logo.svg" alt="DooTaskLogo" />
|
|
||||||
<i class="dootask txt-7002027">DooTask</i>
|
|
||||||
</a>
|
|
||||||
<i class="close-drawer" onclick="closeDraweHandle()">✕</i>
|
|
||||||
</div>
|
|
||||||
<ul class="drawer-ul">
|
|
||||||
<li class="drawer-item-t mb-16">
|
|
||||||
<div class="drawer-item" onclick="closeDraweHandle()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/product.html">Product</a>
|
|
||||||
</div>
|
|
||||||
<div class="drawer-item" onclick="closeDraweHandle()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/solutions.html">Solutions</a>
|
|
||||||
</div>
|
|
||||||
<div class="drawer-item" onclick="expandMenuHandle('support')">
|
|
||||||
<i class="txt-4001620 txt">
|
|
||||||
Support
|
|
||||||
<img src="../img/vector.svg" class="nav-vector" alt="Support" id="drawer-down-support-svg" />
|
|
||||||
</i>
|
|
||||||
</div>
|
|
||||||
<ol class="drawer-active hide" id="support">
|
|
||||||
<li class="drawer-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/download.html">Download Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/help.html">Help Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/privacy.html" target="_blank">Privacy Policy</a>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001620 txt" href="../../docs/index.html" target="_blank">API document</a>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
<div class="drawer-item" onclick="closeDraweHandle()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/price.html">Pricing</a>
|
|
||||||
</div>
|
|
||||||
<div class="drawer-item mb-16" onclick="closeDraweHandle()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/about.html">About Us</a>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item-c">
|
|
||||||
<div class="drawer-item" onclick="expandMenuHandle('theme')">
|
|
||||||
<i class="txt-4001620 txt">
|
|
||||||
Theme
|
|
||||||
<img src="../img/vector.svg" alt="Theme" class="nav-vector" id="drawer-down-theme-svg" />
|
|
||||||
</i>
|
|
||||||
</div>
|
|
||||||
<ol class="drawer-active hide" id="theme">
|
|
||||||
<li class="drawer-item" onclick="setTheme('light')">
|
|
||||||
<i class="txt-4001620 txt">Light</i>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="setTheme('dark')">
|
|
||||||
<i class="txt-4001620 txt">Dark</i>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
<div class="drawer-item" onclick="expandMenuHandle('language')">
|
|
||||||
<i class="txt-4001620 txt">
|
|
||||||
Language
|
|
||||||
<img src="../img/vector.svg" alt="Language" class="nav-vector" id="drawer-down-language-svg" />
|
|
||||||
</i>
|
|
||||||
</div>
|
|
||||||
<ol class="drawer-active hide" id="language">
|
|
||||||
<li class="drawer-item" onclick="changeLanguage('zh')">
|
|
||||||
<i class="txt-4001620 txt">简体中文</i>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="changeLanguage('en')">
|
|
||||||
<i class="txt-4001620 txt">English</i>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item-b">
|
|
||||||
<div class="drawer-item">
|
|
||||||
<a class="txt-4001620 txt" href="../../manage/dashboard">Try Now</a>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<!-- 内容区域 -->
|
|
||||||
<main>
|
|
||||||
<!-- 主要区域划分 -->
|
|
||||||
<section>
|
|
||||||
<article class="logs">
|
|
||||||
<div class="logs-con">
|
|
||||||
<div class="logs-t-768" id="menuBtn-logs">
|
|
||||||
<img class="logs-t-prev" src="../img/prev.svg" alt="Logs" />
|
|
||||||
<i class="logs-t-tit">Logs</i>
|
|
||||||
</div>
|
|
||||||
<div class="logs-layout">
|
|
||||||
<div class="logs-l logs-sticky">
|
|
||||||
<h5 class="logs-h5 mb-16">Logs</h5>
|
|
||||||
<ul class="logs-l-ul logs-l-1920" id="help-l-ul"></ul>
|
|
||||||
</div>
|
|
||||||
<div class="logs-r" id="google_translate_element">
|
|
||||||
<h1 class="txt-6003645 logs-h1 mb-36">
|
|
||||||
DooTask Update Log
|
|
||||||
</h1>
|
|
||||||
<ul class="logs-r-ul"></ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</article>
|
|
||||||
</section>
|
|
||||||
</main>
|
|
||||||
<!-- 页脚区域 -->
|
|
||||||
<footer>
|
|
||||||
<div class="footer-con">
|
|
||||||
<div class="footer-layout">
|
|
||||||
<div class="footer-l">
|
|
||||||
<a href="../en/index.html" class="logo">
|
|
||||||
<img id="logo" src="../img/light/logo.svg" alt="DooTask,Logo" />
|
|
||||||
<i class="dootask txt-7002027">DooTask</i>
|
|
||||||
</a>
|
|
||||||
<i class="txt txt-4001624">Helps teams move projects forward efficiently
|
|
||||||
and makes work easier.</i>
|
|
||||||
</div>
|
|
||||||
<div class="footer-r">
|
|
||||||
<ul class="footer-r-ul">
|
|
||||||
<li class="footer-r-item">
|
|
||||||
<ol class="footer-r-ol">
|
|
||||||
<li class="footer-ol-item txt-5001624 mb-24">
|
|
||||||
Links
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/product.html">Product</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/solutions.html">Solutions</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/price.html">Pricing</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item">
|
|
||||||
<a class="txt-4001624 txt" href="../en/solutions.html">About Us</a>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li class="footer-r-item">
|
|
||||||
<ol class="footer-r-ol">
|
|
||||||
<li class="footer-ol-item txt-5001624 mb-24">
|
|
||||||
Support
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/download.html">Download Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/help.html">Help Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/privacy.html" target="_blank">Privacy
|
|
||||||
Policy</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item">
|
|
||||||
<a class="txt-4001624 txt" href="../../docs/index.html" target="_blank">API
|
|
||||||
document</a>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li class="footer-r-item">
|
|
||||||
<ol class="footer-r-ol">
|
|
||||||
<li class="footer-ol-item txt-5001624 mb-24">
|
|
||||||
Community
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item">
|
|
||||||
<div class="footer-ol-item mb-16">
|
|
||||||
<i class="txt-4001624 txt" onclick="openInNewTab('https://github.com/kuaifan/dootask')">Github</i>
|
|
||||||
</div>
|
|
||||||
<div class="footer-ol-item mb-16">
|
|
||||||
<i class="txt-4001624 txt" onclick="openInNewTab('https://gitee.com/aipaw/dootask')">Gitee</i>
|
|
||||||
</div>
|
|
||||||
<div class="footer-ol-item" id="qq_group">
|
|
||||||
<i class="txt-4001624 txt">QQ group</i>
|
|
||||||
<div class="group_code">
|
|
||||||
<img class="code-svg" id="home_code" src="../img/light/home_code.svg" alt="Group:546574618" />
|
|
||||||
<i class="group_num">Group:546574618</i>
|
|
||||||
<i class="lower_triangle"></i>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="txt-4001624 filings footer_copyright">
|
|
||||||
<span>
|
|
||||||
Copyright © 2022-2023 DooTask. All rights reserved.
|
|
||||||
</span>
|
|
||||||
<div class="footer_beian" style="display: flex">
|
|
||||||
<img src="../img/beian.png" alt="" /><span style="padding-left: 3px">桂公网安备
|
|
||||||
45010802000393号</span>
|
|
||||||
</div>
|
|
||||||
<a class="footer_beian_a" href="http://beian.miit.gov.cn">桂ICP备2021003642号-5</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
<!-- 侧边导航 -->
|
|
||||||
<div id="nav_wrap"></div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
<script src="../js/common.js"></script>
|
|
||||||
<script src="../js/markdown-it.min.js"></script>
|
|
||||||
<script src="../js/axios.js"></script>
|
|
||||||
<script>
|
|
||||||
const getItem = (key) => {
|
|
||||||
var record = JSON.parse(localStorage.getItem(key));
|
|
||||||
if (!record) return null;
|
|
||||||
if (new Date().getTime() > record.expired) {
|
|
||||||
localStorage.removeItem(key);
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
return record.value;
|
|
||||||
};
|
|
||||||
function getUpdatesFromHtml(html, li) {
|
|
||||||
html.map((item) => {
|
|
||||||
const liItem = document.createElement("li");
|
|
||||||
liItem.className = "txt-4001624 r-ol-item mb-12 pl-26";
|
|
||||||
liItem.innerHTML = `
|
|
||||||
<i class="dots"></i>${item};
|
|
||||||
`;
|
|
||||||
const ol = li.querySelector(".logs-r-ol");
|
|
||||||
ol.appendChild(liItem);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
const logsDrawer = document.querySelector(".logs-drawer");
|
|
||||||
const closeLogsDraweHandle = () => {
|
|
||||||
logsDrawer.classList.remove("open-logs-drawer");
|
|
||||||
};
|
|
||||||
function domHandle(html) {
|
|
||||||
const changelog = document.querySelector(".logs-r-ul");
|
|
||||||
const rlog = document.querySelector(".logs-l-1920");
|
|
||||||
const rlog2 = document.querySelector(".logs-l-768");
|
|
||||||
const versions = html.match(/<h2>(.*?)<\/h2>/g).slice(0, 15);
|
|
||||||
const versionsNumbers = versions.map(
|
|
||||||
(str) => str.split("<h2>[")[1].split("]</h2>")[0]
|
|
||||||
);
|
|
||||||
for (let i = 0; i < versionsNumbers.length; i++) {
|
|
||||||
const updatesHtml = html
|
|
||||||
.split(versionsNumbers[i])[1]
|
|
||||||
.split("<h2>")[0]
|
|
||||||
.match(/<li>(.*?)<\/li>/g);
|
|
||||||
const updatesHtmlText = updatesHtml.map(
|
|
||||||
(str) => str.split("<li>")[1].split("</li>")[0]
|
|
||||||
);
|
|
||||||
const rLi = document.createElement("li");
|
|
||||||
rLi.className = `l-ul-item ${i == 0 ? "active" : ""}`;
|
|
||||||
rLi.setAttribute("data-id", `section-${i + 1}`);
|
|
||||||
rLi.innerHTML = `
|
|
||||||
<a class="txt-4001620 txt log-a">v${versionsNumbers[i]} update</a>
|
|
||||||
`;
|
|
||||||
const rLi2 = document.createElement("li");
|
|
||||||
rLi2.className = `l-ul-item`;
|
|
||||||
rLi2.setAttribute("data-id", `section-${i + 1}`);
|
|
||||||
rLi2.addEventListener("click", function () {
|
|
||||||
const logsDrawer = document.querySelector(".logs-drawer");
|
|
||||||
logsDrawer.classList.remove("open-logs-drawer");
|
|
||||||
});
|
|
||||||
rLi2.innerHTML = `
|
|
||||||
<a class="txt-4001620 txt">v${versionsNumbers[i]} update</a>
|
|
||||||
`;
|
|
||||||
rlog.appendChild(rLi);
|
|
||||||
rlog2.appendChild(rLi2);
|
|
||||||
|
|
||||||
const li = document.createElement("li");
|
|
||||||
li.className = "r-ul-item mb-36";
|
|
||||||
li.innerHTML = `
|
|
||||||
<ol class="logs-r-ol">
|
|
||||||
<li class="txt-4001624 r-ol-item mb-24" id="section-${i + 1
|
|
||||||
}"><h4 class="logs-h4">v${versionsNumbers[i]} update</h4></li>
|
|
||||||
</ol>
|
|
||||||
`;
|
|
||||||
changelog.appendChild(li);
|
|
||||||
getUpdatesFromHtml(updatesHtmlText, li);
|
|
||||||
// translateAllText()
|
|
||||||
}
|
|
||||||
let updateLogNum = localStorage.getItem("update_log_num");
|
|
||||||
/* logs点击激活函数 */
|
|
||||||
let isThrottled = false;
|
|
||||||
let timerId;
|
|
||||||
const logs_tabs = document.querySelector(".logs-l-1920");
|
|
||||||
const logs_tabItems = logs_tabs.querySelectorAll(".l-ul-item");
|
|
||||||
const contentContainer = document.querySelector(".logs-r");
|
|
||||||
const contentContainer_Items =
|
|
||||||
contentContainer.querySelectorAll(".r-ul-item");
|
|
||||||
const sections = Array.from(document.querySelectorAll("h4"));
|
|
||||||
logs_tabs.addEventListener("click", function (event) {
|
|
||||||
const clickedItem = event.target.closest(".l-ul-item");
|
|
||||||
clearTimeout(timerId);
|
|
||||||
if (clickedItem && !clickedItem.classList.contains("active")) {
|
|
||||||
// 切换激活状态
|
|
||||||
for (let value of logs_tabItems) {
|
|
||||||
value.classList.toggle("active", value === clickedItem);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
const handleScroll = () => {
|
|
||||||
if (!isThrottled) {
|
|
||||||
isThrottled = true;
|
|
||||||
// 在下一个滴答钟时重置isThrottled标志位
|
|
||||||
timerId = setTimeout(() => {
|
|
||||||
isThrottled = false;
|
|
||||||
}, 0);
|
|
||||||
// 处理滚动事件
|
|
||||||
const currentScrollPosition = contentContainer.scrollTop;
|
|
||||||
// 获取当前滚动位置并遍历所有标题元素
|
|
||||||
sections.map((item, index) => {
|
|
||||||
const section = sections[index];
|
|
||||||
if (
|
|
||||||
section.offsetParent.offsetTop <=
|
|
||||||
currentScrollPosition
|
|
||||||
) {
|
|
||||||
// 将对应的菜单项设置为激活状态
|
|
||||||
const activeMenuItem = logs_tabItems[index];
|
|
||||||
if (activeMenuItem) {
|
|
||||||
Array.from(logs_tabItems).forEach((titem) =>
|
|
||||||
titem.classList.remove("active")
|
|
||||||
);
|
|
||||||
activeMenuItem.classList.add("active");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
contentContainer.addEventListener("scroll", handleScroll);
|
|
||||||
/* 当屏幕宽度低于768px时显示logs的抽屉的相关操作逻辑 */
|
|
||||||
const logsMenuBtn = document.getElementById("menuBtn-logs");
|
|
||||||
const logsDrawer = document.querySelector(".logs-drawer");
|
|
||||||
logsMenuBtn.addEventListener("click", () => {
|
|
||||||
logsDrawer.classList.add("open-logs-drawer");
|
|
||||||
});
|
|
||||||
/* 从下载页跳转过来执行的函数 */
|
|
||||||
const handleMou = () => {
|
|
||||||
const clickedItem = logs_tabItems[updateLogNum - 1];
|
|
||||||
if (clickedItem && !clickedItem.classList.contains("active")) {
|
|
||||||
// 切换激活状态
|
|
||||||
for (let value of logs_tabItems) {
|
|
||||||
value.classList.toggle("active", value === clickedItem);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
window.history.scrollRestoration = "manual";
|
|
||||||
const topSection = changelog.querySelector(
|
|
||||||
`#section-${updateLogNum}`
|
|
||||||
);
|
|
||||||
if (topSection) {
|
|
||||||
const offset = 90; // 上偏移量(可以根据需要进行调整)
|
|
||||||
const targetPosition =
|
|
||||||
topSection.getBoundingClientRect().top + window.scrollY; // 目标位置相对于视口的位置
|
|
||||||
// 滚动到目标位置,并考虑上偏移量
|
|
||||||
window.scrollTo({
|
|
||||||
top: targetPosition - offset,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
handleMou();
|
|
||||||
localStorage.removeItem("update_log_num");
|
|
||||||
}
|
|
||||||
const logs = getItem("logs");
|
|
||||||
if (!logs) {
|
|
||||||
const url = "../../api/system/get/updatelog";
|
|
||||||
axios
|
|
||||||
.get(url)
|
|
||||||
.then((res) => {
|
|
||||||
const changelog = res.data.data.updateLog;
|
|
||||||
const md = new markdownit();
|
|
||||||
const html = md.render(changelog);
|
|
||||||
let record = {
|
|
||||||
value: html,
|
|
||||||
expired: new Date().getTime() + 30 * 60 * 1000,
|
|
||||||
};
|
|
||||||
localStorage.setItem("logs", JSON.stringify(record));
|
|
||||||
domHandle(html);
|
|
||||||
logsHandler();
|
|
||||||
})
|
|
||||||
.catch((err) => {
|
|
||||||
console.log(err, "err");
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
domHandle(logs);
|
|
||||||
logsHandler();
|
|
||||||
}
|
|
||||||
let tabItems1 = document.querySelectorAll(".l-ul-item");
|
|
||||||
function rm() {
|
|
||||||
tabItems1.forEach((link1) => {
|
|
||||||
link1.classList.remove("active");
|
|
||||||
});
|
|
||||||
}
|
|
||||||
function logsHandler() {
|
|
||||||
let tabItems = document.querySelectorAll(".l-ul-item");
|
|
||||||
function rm() {
|
|
||||||
tabItems.forEach((link1) => {
|
|
||||||
link1.classList.remove("active");
|
|
||||||
});
|
|
||||||
}
|
|
||||||
tabItems.forEach((item) => {
|
|
||||||
item.addEventListener("click", function (event) {
|
|
||||||
event.preventDefault();
|
|
||||||
const id = event.currentTarget.getAttribute("data-id");
|
|
||||||
const content = document.getElementById(`${id}`);
|
|
||||||
if (content) {
|
|
||||||
const offset = 90; // 上偏移量(可以根据需要进行调整)
|
|
||||||
const targetPosition =
|
|
||||||
content.getBoundingClientRect().top +
|
|
||||||
window.scrollY; // 目标位置相对于视口的位置
|
|
||||||
// 滚动到目标位置,并考虑上偏移量
|
|
||||||
window.scrollTo({
|
|
||||||
top: targetPosition - offset,
|
|
||||||
behavior: "smooth",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
function getAllDataIds(parentId) {
|
|
||||||
let parentElement = document.getElementById(parentId);
|
|
||||||
if (parentElement) {
|
|
||||||
let elementsWithDataId =
|
|
||||||
parentElement.querySelectorAll("[data-id]");
|
|
||||||
let dataIds = [];
|
|
||||||
for (let i = 0; i < elementsWithDataId.length; i++) {
|
|
||||||
let dataId = elementsWithDataId[i].getAttribute("data-id");
|
|
||||||
dataIds.push(dataId);
|
|
||||||
}
|
|
||||||
return dataIds;
|
|
||||||
}
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
let allDataIds = getAllDataIds("help-l-ul");
|
|
||||||
let arrOffsetTop = [];
|
|
||||||
allDataIds.map((item) => {
|
|
||||||
let id = document.getElementById(`${item}`);
|
|
||||||
arrOffsetTop.push(id.offsetTop);
|
|
||||||
});
|
|
||||||
// 监听页面滚动事件
|
|
||||||
window.addEventListener("scroll", scrollHandler);
|
|
||||||
function scrollHandler() {
|
|
||||||
for (let i = 0; i < arrOffsetTop.length; i++) {
|
|
||||||
if (window.scrollY <= arrOffsetTop[0]) {
|
|
||||||
rm();
|
|
||||||
let elementsWithDataId = document.querySelectorAll(
|
|
||||||
"[data-id='" + `section-${1}` + "']"
|
|
||||||
);
|
|
||||||
elementsWithDataId[1]?.classList?.add("active");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (
|
|
||||||
arrOffsetTop[i] > window.scrollY ||
|
|
||||||
window.scrollY <= arrOffsetTop[0]
|
|
||||||
) {
|
|
||||||
rm();
|
|
||||||
let elementsWithDataId = document.querySelectorAll(
|
|
||||||
"[data-id='" + `section-${i}` + "']"
|
|
||||||
);
|
|
||||||
elementsWithDataId[1]?.classList?.add("active");
|
|
||||||
//滚动设置
|
|
||||||
const liHight = elementsWithDataId[1]?.offsetTop;
|
|
||||||
const pHihtt = elementsWithDataId[1]?.offsetHeight;
|
|
||||||
const ulElement = document.getElementById("help-l-ul"); // 替换为你的 <div> 元素的 id
|
|
||||||
const scrollHeight = ulElement.scrollTop;
|
|
||||||
const ulHeight = ulElement.offsetHeight;
|
|
||||||
if (liHight > scrollHeight + ulHeight) {
|
|
||||||
ulElement.scrollTop += pHihtt + pHihtt;
|
|
||||||
}
|
|
||||||
if (liHight - scrollHeight <= 40) {
|
|
||||||
ulElement.scrollTop -= pHihtt;
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
document.addEventListener("DOMContentLoaded", function () {
|
|
||||||
fetch("./sideNav.html")
|
|
||||||
.then((response) => response.text())
|
|
||||||
.then((data) => {
|
|
||||||
document.getElementById("nav_wrap").innerHTML = data;
|
|
||||||
// 回到顶部
|
|
||||||
const back_top_button =
|
|
||||||
document.getElementById("back_to_top");
|
|
||||||
window.addEventListener("scroll", () => {
|
|
||||||
if (
|
|
||||||
document.body.scrollTop > 20 ||
|
|
||||||
document.documentElement.scrollTop > 20
|
|
||||||
) {
|
|
||||||
back_top_button.style.display = "block";
|
|
||||||
} else {
|
|
||||||
back_top_button.style.display = "none";
|
|
||||||
}
|
|
||||||
});
|
|
||||||
back_top_button.addEventListener("click", () => {
|
|
||||||
window.scrollTo({
|
|
||||||
top: 0,
|
|
||||||
behavior: "smooth",
|
|
||||||
});
|
|
||||||
});
|
|
||||||
// 检查页面加载时的滚动位置以决定是否显示回到顶部按钮
|
|
||||||
if (document.documentElement.scrollTop > 20) {
|
|
||||||
back_top_button.style.display = "block"; // 显示回到顶部按钮
|
|
||||||
}
|
|
||||||
let toolbarPhone = document.getElementById(
|
|
||||||
"side_toolbar_item_phone"
|
|
||||||
);
|
|
||||||
let tooltipPhone = document.getElementById(
|
|
||||||
"toolbar_tooltip_phone"
|
|
||||||
);
|
|
||||||
let toolbarWhtasapp = document.getElementById(
|
|
||||||
"side_toolbar_item_whtasapp"
|
|
||||||
);
|
|
||||||
let tooltipWhtasapp = document.getElementById(
|
|
||||||
"toolbar_tooltip_whtasapp"
|
|
||||||
);
|
|
||||||
let toolbarQrcode = document.getElementById(
|
|
||||||
"side_toolbar_item_qrcode"
|
|
||||||
);
|
|
||||||
let tooltipQrcode = document.getElementById(
|
|
||||||
"toolbar_tooltip_qrcode"
|
|
||||||
);
|
|
||||||
|
|
||||||
function toggleTooltip(dom) {
|
|
||||||
if (dom.style.display === "block") {
|
|
||||||
dom.style.display = "none";
|
|
||||||
} else {
|
|
||||||
dom.style.display = "block";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (toolbarPhone) {
|
|
||||||
toolbarPhone.addEventListener("click", () => {
|
|
||||||
event.stopPropagation();
|
|
||||||
// 谷歌分析事件追踪
|
|
||||||
if (gtag) {
|
|
||||||
gtag("event", "click", {
|
|
||||||
event_category: "button",
|
|
||||||
event_label: "right_side_toolbar_phone",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
toggleTooltip(tooltipPhone);
|
|
||||||
tooltipWhtasapp.style.display = "none";
|
|
||||||
tooltipQrcode.style.display = "none";
|
|
||||||
if (
|
|
||||||
/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(
|
|
||||||
navigator.userAgent
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
window.location.href = "tel:0771-3164099";
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (toolbarWhtasapp) {
|
|
||||||
toolbarWhtasapp.addEventListener("click", () => {
|
|
||||||
event.stopPropagation();
|
|
||||||
// 谷歌分析事件追踪
|
|
||||||
if (gtag) {
|
|
||||||
gtag("event", "click", {
|
|
||||||
event_category: "button",
|
|
||||||
event_label: "right_side_toolbar_Whtasapp",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
toggleTooltip(tooltipWhtasapp);
|
|
||||||
tooltipPhone.style.display = "none";
|
|
||||||
tooltipQrcode.style.display = "none";
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (toolbarQrcode) {
|
|
||||||
toolbarQrcode.addEventListener("click", () => {
|
|
||||||
event.stopPropagation();
|
|
||||||
// 谷歌分析事件追踪
|
|
||||||
if (gtag) {
|
|
||||||
gtag("event", "click", {
|
|
||||||
event_category: "button",
|
|
||||||
event_label: "right_side_toolbar_WeChat",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
toggleTooltip(tooltipQrcode);
|
|
||||||
tooltipPhone.style.display = "none";
|
|
||||||
tooltipWhtasapp.style.display = "none";
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script src="../js/ad.js"></script>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
@ -1,44 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<title>Privacy - DooTask</title>
|
|
||||||
<meta name="google" value="notranslate">
|
|
||||||
<meta name="description" content="DooTask是一款轻量级的开源在线项目任务管理工具,提供各类文档协作工具、在线思维导图、在线流程图、项目管理、任务分发、即时IM,文件管理等工具。助力团队高效推进项目,让工作更简单。">
|
|
||||||
<meta name="keywords" content="中国 DooTask 开源在线项目 任务管理工具 任务管理 轻量级 海豚有海 团队协作">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<link rel="shortcut icon" href="../img/favicon.ico">
|
|
||||||
<link rel="stylesheet" href="../css/privacy.css">
|
|
||||||
<!-- Google tag (gtag.js) -->
|
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-16660800396"></script>
|
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PE77P6491J"></script>
|
|
||||||
<script src="../js/googleAds.js"></script>
|
|
||||||
<script src="../js/googleAnalyze.js"></script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<style>
|
|
||||||
body {
|
|
||||||
font-family: Arial, sans-serif;
|
|
||||||
margin: 20px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<div id="markdown-content"></div>
|
|
||||||
|
|
||||||
<script src="../js/markdown-it.min.js"></script>
|
|
||||||
<script>
|
|
||||||
// 创建 markdown-it 实例
|
|
||||||
const md = new window.markdownit();
|
|
||||||
|
|
||||||
// 获取 Markdown 文件内容并渲染为 HTML
|
|
||||||
fetch('./privacy.md')
|
|
||||||
.then(response => response.text())
|
|
||||||
.then(markdownText => {
|
|
||||||
const htmlText = md.render(markdownText);
|
|
||||||
document.getElementById('markdown-content').innerHTML = htmlText;
|
|
||||||
})
|
|
||||||
.catch(error => {
|
|
||||||
console.error('Error:', error);
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@ -1,242 +0,0 @@
|
|||||||
# Privacy Policy
|
|
||||||
|
|
||||||
Last updated: July 21, 2023
|
|
||||||
|
|
||||||
This Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your information when You use the Service and tells You about Your privacy rights and how the law protects You.
|
|
||||||
|
|
||||||
We use Your Personal data to provide and improve the Service. By using the Service, You agree to the collection and use of information in accordance with this Privacy Policy. This Privacy Policy has been created with the help of the [Privacy Policy Generator](https://www.termsfeed.com/privacy-policy-generator/).
|
|
||||||
|
|
||||||
# Interpretation and Definitions
|
|
||||||
|
|
||||||
## Interpretation
|
|
||||||
|
|
||||||
The words of which the initial letter is capitalized have meanings defined under the following conditions. The following definitions shall have the same meaning regardless of whether they appear in singular or in plural.
|
|
||||||
|
|
||||||
## Definitions
|
|
||||||
|
|
||||||
For the purposes of this Privacy Policy:
|
|
||||||
|
|
||||||
- Account: means a unique account created for You to access our Service or parts of our Service.
|
|
||||||
- Affiliate: means an entity that controls, is controlled by or is under common control with a party, where "control" means ownership of 50% or more of the shares, equity interest or other securities entitled to vote for election of directors or other managing authority.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- Company: (referred to as either "the Company", "We", "Us" or "Our" in this Agreement) refers to Guangxi Hitosea Information Technology Co., No. 1411, 14/F, Building 1, Wuxiang Hangyang City, Liangqing District, Nanning City, Guangxi Zhuang Autonomous Region, China.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- __Cookies__ are small files that are placed on Your computer, mobile device or any other device by a website, containing the details of Your browsing history on that website among its many uses.
|
|
||||||
|
|
||||||
- __Country__ refers to: China
|
|
||||||
|
|
||||||
- __Device__ means any device that can access the Service such as a computer, a cellphone or a digital tablet.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- __Personal Data__ is any information that relates to an identified or identifiable individual.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- __Service__ refers to the Website.
|
|
||||||
|
|
||||||
- __Service Provider__ means any natural or legal person who processes the data on behalf of the Company. It refers to third-party companies or individuals employed by the Company to facilitate the Service, to provide the Service on behalf of the Company, to perform services related to the Service or to assist the Company in analyzing how the Service is used.
|
|
||||||
|
|
||||||
|
|
||||||
- __Usage Data__ refers to data collected automatically, either generated by the use of the Service or from the Service infrastructure itself (for example, the duration of a page visit).
|
|
||||||
|
|
||||||
|
|
||||||
- __Website__ refers to DooTask, accessible from [https://www.dootask.com/](https://www.dootask.com/)
|
|
||||||
|
|
||||||
- __You__ means the individual accessing or using the Service, or the company, or other legal entity on behalf of which such individual is accessing or using the Service, as applicable.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Collecting and Using Your Personal Data
|
|
||||||
|
|
||||||
## Types of Data Collected
|
|
||||||
|
|
||||||
### Personal Data
|
|
||||||
|
|
||||||
While using Our Service, We may ask You to provide Us with certain personally identifiable information that can be used to contact or identify You. Personally identifiable information may include, but is not limited to:
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- Phone number
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- Usage Data
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Usage Data
|
|
||||||
|
|
||||||
Usage Data is collected automatically when using the Service.
|
|
||||||
|
|
||||||
Usage Data may include information such as Your Device's Internet Protocol address (e.g. IP address), browser type, browser version, the pages of our Service that You visit, the time and date of Your visit, the time spent on those pages, unique device identifiers and other diagnostic data.
|
|
||||||
|
|
||||||
When You access the Service by or through a mobile device, We may collect certain information automatically, including, but not limited to, the type of mobile device You use, Your mobile device unique ID, the IP address of Your mobile device, Your mobile operating system, the type of mobile Internet browser You use, unique device identifiers and other diagnostic data.
|
|
||||||
|
|
||||||
We may also collect information that Your browser sends whenever You visit our Service or when You access the Service by or through a mobile device.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Tracking Technologies and Cookies
|
|
||||||
|
|
||||||
We use Cookies and similar tracking technologies to track the activity on Our Service and store certain information. Tracking technologies used are beacons, tags, and scripts to collect and track information and to improve and analyze Our Service. The technologies We use may include:
|
|
||||||
|
|
||||||
- __Cookies or Browser Cookies.__ A cookie is a small file placed on Your Device. You can instruct Your browser to refuse all Cookies or to indicate when a Cookie is being sent. However, if You do not accept Cookies, You may not be able to use some parts of our Service. Unless you have adjusted Your browser setting so that it will refuse Cookies, our Service may use Cookies.
|
|
||||||
- __Web Beacons.__ Certain sections of our Service and our emails may contain small electronic files known as web beacons (also referred to as clear gifs, pixel tags, and single-pixel gifs) that permit the Company, for example, to count users who have visited those pages or opened an email and for other related website statistics (for example, recording the popularity of a certain section and verifying system and server integrity).
|
|
||||||
|
|
||||||
Cookies can be "Persistent" or "Session" Cookies. Persistent Cookies remain on Your personal computer or mobile device when You go offline, while Session Cookies are deleted as soon as You close Your web browser. You can learn more about cookies on [TermsFeed website](https://www.termsfeed.com/blog/cookies/#What_Are_Cookies) article.
|
|
||||||
|
|
||||||
We use both Session and Persistent Cookies for the purposes set out below:
|
|
||||||
|
|
||||||
- __Necessary / Essential Cookies__
|
|
||||||
|
|
||||||
Type: Session Cookies
|
|
||||||
|
|
||||||
Administered by: Us
|
|
||||||
|
|
||||||
Purpose: These Cookies are essential to provide You with services available through the Website and to enable You to use some of its features. They help to authenticate users and prevent fraudulent use of user accounts. Without these Cookies, the services that You have asked for cannot be provided, and We only use these Cookies to provide You with those services.
|
|
||||||
- __Cookies Policy / Notice Acceptance Cookies__
|
|
||||||
|
|
||||||
Type: Persistent Cookies
|
|
||||||
|
|
||||||
Administered by: Us
|
|
||||||
|
|
||||||
Purpose: These Cookies identify if users have accepted the use of cookies on the Website.
|
|
||||||
- __Functionality Cookies__
|
|
||||||
|
|
||||||
Type: Persistent Cookies
|
|
||||||
|
|
||||||
Administered by: Us
|
|
||||||
|
|
||||||
Purpose: These Cookies allow us to remember choices You make when You use the Website, such as remembering your login details or language preference. The purpose of these Cookies is to provide You with a more personal experience and to avoid You having to re-enter your preferences every time You use the Website.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
For more information about the cookies we use and your choices regarding cookies, please visit our Cookies Policy or the Cookies section of our Privacy Policy.
|
|
||||||
|
|
||||||
|
|
||||||
## Use of Your Personal Data
|
|
||||||
|
|
||||||
The Company may use Personal Data for the following purposes:
|
|
||||||
|
|
||||||
- __To provide and maintain our Service__, including to monitor the usage of our Service.
|
|
||||||
- __To manage Your Account:__ to manage Your registration as a user of the Service. The Personal Data You provide can give You access to different functionalities of the Service that are available to You as a registered user.
|
|
||||||
- __For the performance of a contract:__ the development, compliance and undertaking of the purchase contract for the products, items or services You have purchased or of any other contract with Us through the Service.
|
|
||||||
- __To contact You:__ To contact You by email, telephone calls, SMS, or other equivalent forms of electronic communication, such as a mobile application's push notifications regarding updates or informative communications related to the functionalities, products or contracted services, including the security updates, when necessary or reasonable for their implementation.
|
|
||||||
- __To provide You__ with news, special offers and general information about other goods, services and events which we offer that are similar to those that you have already purchased or enquired about unless You have opted not to receive such information.
|
|
||||||
- __To manage Your requests:__ To attend and manage Your requests to Us.
|
|
||||||
|
|
||||||
- __For business transfers:__ We may use Your information to evaluate or conduct a merger, divestiture, restructuring, reorganization, dissolution, or other sale or transfer of some or all of Our assets, whether as a going concern or as part of bankruptcy, liquidation, or similar proceeding, in which Personal Data held by Us about our Service users is among the assets transferred.
|
|
||||||
- __For other purposes__: We may use Your information for other purposes, such as data analysis, identifying usage trends, determining the effectiveness of our promotional campaigns and to evaluate and improve our Service, products, services, marketing and your experience.
|
|
||||||
|
|
||||||
We may share Your personal information in the following situations:
|
|
||||||
|
|
||||||
- __With Service Providers:__ We may share Your personal information with Service Providers to monitor and analyze the use of our Service, to contact You.
|
|
||||||
- __For business transfers:__ We may share or transfer Your personal information in connection with, or during negotiations of, any merger, sale of Company assets, financing, or acquisition of all or a portion of Our business to another company.
|
|
||||||
- __With Affiliates:__ We may share Your information with Our affiliates, in which case we will require those affiliates to honor this Privacy Policy. Affiliates include Our parent company and any other subsidiaries, joint venture partners or other companies that We control or that are under common control with Us.
|
|
||||||
- __With business partners:__ We may share Your information with Our business partners to offer You certain products, services or promotions.
|
|
||||||
- __With other users:__ when You share personal information or otherwise interact in the public areas with other users, such information may be viewed by all users and may be publicly distributed outside.
|
|
||||||
- __With Your consent__: We may disclose Your personal information for any other purpose with Your consent.
|
|
||||||
|
|
||||||
## Retention of Your Personal Data
|
|
||||||
|
|
||||||
The Company will retain Your Personal Data only for as long as is necessary for the purposes set out in this Privacy Policy. We will retain and use Your Personal Data to the extent necessary to comply with our legal obligations (for example, if we are required to retain your data to comply with applicable laws), resolve disputes, and enforce our legal agreements and policies.
|
|
||||||
|
|
||||||
The Company will also retain Usage Data for internal analysis purposes. Usage Data is generally retained for a shorter period of time, except when this data is used to strengthen the security or to improve the functionality of Our Service, or We are legally obligated to retain this data for longer time periods.
|
|
||||||
|
|
||||||
## Transfer of Your Personal Data
|
|
||||||
|
|
||||||
Your information, including Personal Data, is processed at the Company's operating offices and in any other places where the parties involved in the processing are located. It means that this information may be transferred to — and maintained on — computers located outside of Your state, province, country or other governmental jurisdiction where the data protection laws may differ than those from Your jurisdiction.
|
|
||||||
|
|
||||||
Your consent to this Privacy Policy followed by Your submission of such information represents Your agreement to that transfer.
|
|
||||||
|
|
||||||
The Company will take all steps reasonably necessary to ensure that Your data is treated securely and in accordance with this Privacy Policy and no transfer of Your Personal Data will take place to an organization or a country unless there are adequate controls in place including the security of Your data and other personal information.
|
|
||||||
|
|
||||||
## Delete Your Personal Data
|
|
||||||
|
|
||||||
You have the right to delete or request that We assist in deleting the Personal Data that We have collected about You.
|
|
||||||
|
|
||||||
Our Service may give You the ability to delete certain information about You from within the Service.
|
|
||||||
|
|
||||||
You may update, amend, or delete Your information at any time by signing in to Your Account, if you have one, and visiting the account settings section that allows you to manage Your personal information. You may also contact Us to request access to, correct, or delete any personal information that You have provided to Us.
|
|
||||||
|
|
||||||
Please note, however, that We may need to retain certain information when we have a legal obligation or lawful basis to do so.
|
|
||||||
|
|
||||||
## Disclosure of Your Personal Data
|
|
||||||
|
|
||||||
### Business Transactions
|
|
||||||
|
|
||||||
If the Company is involved in a merger, acquisition or asset sale, Your Personal Data may be transferred. We will provide notice before Your Personal Data is transferred and becomes subject to a different Privacy Policy.
|
|
||||||
|
|
||||||
### Law enforcement
|
|
||||||
|
|
||||||
Under certain circumstances, the Company may be required to disclose Your Personal Data if required to do so by law or in response to valid requests by public authorities (e.g. a court or a government agency).
|
|
||||||
|
|
||||||
### Other legal requirements
|
|
||||||
|
|
||||||
The Company may disclose Your Personal Data in the good faith belief that such action is necessary to:
|
|
||||||
|
|
||||||
- Comply with a legal obligation
|
|
||||||
- Protect and defend the rights or property of the Company
|
|
||||||
- Prevent or investigate possible wrongdoing in connection with the Service
|
|
||||||
- Protect the personal safety of Users of the Service or the public
|
|
||||||
- Protect against legal liability
|
|
||||||
|
|
||||||
## Security of Your Personal Data
|
|
||||||
|
|
||||||
The security of Your Personal Data is important to Us, but remember that no method of transmission over the Internet, or method of electronic storage is 100% secure. While We strive to use commercially acceptable means to protect Your Personal Data, We cannot guarantee its absolute security.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Children's Privacy
|
|
||||||
|
|
||||||
Our Service does not address anyone under the age of 13. We do not knowingly collect personally identifiable information from anyone under the age of 13. If You are a parent or guardian and You are aware that Your child has provided Us with Personal Data, please contact Us. If We become aware that We have collected Personal Data from anyone under the age of 13 without verification of parental consent, We take steps to remove that information from Our servers.
|
|
||||||
|
|
||||||
If We need to rely on consent as a legal basis for processing Your information and Your country requires consent from a parent, We may require Your parent's consent before We collect and use that information.
|
|
||||||
|
|
||||||
|
|
||||||
# Links to Other Websites
|
|
||||||
|
|
||||||
Our Service may contain links to other websites that are not operated by Us. If You click on a third party link, You will be directed to that third party's site. We strongly advise You to review the Privacy Policy of every site You visit.
|
|
||||||
|
|
||||||
We have no control over and assume no responsibility for the content, privacy policies or practices of any third party sites or services.
|
|
||||||
|
|
||||||
# Changes to this Privacy Policy
|
|
||||||
|
|
||||||
We may update Our Privacy Policy from time to time. We will notify You of any changes by posting the new Privacy Policy on this page.
|
|
||||||
|
|
||||||
We will let You know via email and/or a prominent notice on Our Service, prior to the change becoming effective and update the "Last updated" date at the top of this Privacy Policy.
|
|
||||||
|
|
||||||
You are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.
|
|
||||||
|
|
||||||
# Contact Us
|
|
||||||
|
|
||||||
If you have any questions about this Privacy Policy, You can contact us:
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- By phone number: 0771-3164099
|
|
||||||
@ -1,58 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<title>Solutions - DooTask</title>
|
|
||||||
<meta name="google" value="notranslate">
|
|
||||||
<meta name="description" content="Lightweight open source online project task management tool to help teams efficiently advance their projects and make work easier.">
|
|
||||||
<meta name="keywords" content="China DooTask Task management Lightweight Hitosea Teamwork">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<link rel="shortcut icon" href="../img/favicon.ico">
|
|
||||||
<link rel="stylesheet" type="text/css" href="../css/side_nav.css">
|
|
||||||
<link rel="stylesheet" type="text/css" href="../css/rem.css">
|
|
||||||
<!-- <script src="../js/sideNav.js"></script> -->
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<nav class="side_nav">
|
|
||||||
<ul class="side_toolbars">
|
|
||||||
<li class="side_toolbar_item" id="side_toolbar_item_phone">
|
|
||||||
<i class="toolbar_font font_phone"></i>
|
|
||||||
<div class="toolbar_tooltip" id="toolbar_tooltip_phone">
|
|
||||||
Phone:0771-3164099
|
|
||||||
<div class="tooltip_arrow"></div>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
<li class="side_toolbar_item" id="side_toolbar_item_whtasapp">
|
|
||||||
<i class="toolbar_font font_whatsapp">
|
|
||||||
<svg t="1714295618588" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5948" id="mx_n_1714295618589" width="24" height="24"><path d="M540.444444 56.888889c61.383111 0 120.32 12.117333 176.64 36.266667 56.035556 24.064 104.476444 56.433778 145.123556 97.080888 40.675556 40.647111 73.016889 89.088 97.080889 145.123556A443.648 443.648 0 0 1 995.555556 512c0 61.383111-12.117333 120.32-36.266667 176.64-24.064 56.035556-56.433778 104.476444-97.080889 145.123556-40.647111 40.675556-89.088 73.016889-145.123556 97.080888A443.648 443.648 0 0 1 540.444444 967.111111c-77.511111 0-150.072889-18.574222-217.258666-55.552l-11.804445-6.741333-9.415111-5.688889-151.694222 48.298667a28.472889 28.472889 0 0 1-36.977778-30.094223l0.568889-3.128889 0.853333-3.015111 49.009778-144.64-5.290666-7.907555A440.149333 440.149333 0 0 1 86.016 537.6l-0.540444-13.368889L85.333333 512c0-61.383111 12.117333-120.32 36.266667-176.64 24.064-56.035556 56.433778-104.476444 97.080889-145.123556 40.647111-40.675556 89.088-73.016889 145.123555-97.080888A443.648 443.648 0 0 1 540.444444 56.888889z m0 56.888889c-53.674667 0-104.988444 10.524444-154.225777 31.658666-49.493333 21.248-91.875556 49.578667-127.317334 85.020445-35.441778 35.441778-63.772444 77.824-85.020444 127.317333A386.759111 386.759111 0 0 0 142.222222 512c0 85.902222 25.258667 163.413333 76.088889 233.301333a28.444444 28.444444 0 0 1 4.835556 22.528l-0.910223 3.328-35.612444 104.988445 110.791111-35.242667a28.444444 28.444444 0 0 1 17.749333 0.170667l3.356445 1.365333 3.157333 1.820445C388.636444 888.32 461.368889 910.222222 540.444444 910.222222c53.674667 0 104.988444-10.524444 154.225778-31.658666 49.493333-21.248 91.875556-49.578667 127.317334-85.020445 35.441778-35.441778 63.772444-77.824 85.020444-127.317333A386.759111 386.759111 0 0 0 938.666667 512c0-53.674667-10.524444-104.988444-31.658667-154.225778-21.248-49.493333-49.578667-91.875556-85.020444-127.317333-35.441778-35.441778-77.824-63.772444-127.317334-85.020445A386.759111 386.759111 0 0 0 540.444444 113.777778z m-141.312 184.888889c1.706667 0 4.067556 0.170667 7.054223 0.483555l3.214222 0.369778c3.413333 0.426667 6.314667 0.711111 8.675555 0.796444l2.190223 0.056889c7.224889 0 12.288 1.251556 15.132444 3.697778 2.389333 2.076444 4.835556 6.058667 7.338667 11.946667l10.154666 26.453333 17.237334 46.990222c4.835556 13.767111 7.281778 21.589333 7.281778 23.495111 0 7.196444-5.319111 16.782222-15.985778 28.757334l-3.726222 4.096c-13.141333 13.909333-19.712 22.755556-19.712 26.567111 0 2.673778 0.938667 5.518222 2.844444 8.561778 12.942222 27.818667 32.369778 53.930667 58.311111 78.307555 19.171556 18.176 44.373333 35.555556 75.633778 52.195556l10.638222 5.518222c4.551111 2.645333 8.760889 3.982222 12.572445 3.982222 5.233778 0 14.307556-7.765333 27.221333-23.267555l3.612444-4.437334c14.876444-18.488889 24.775111-27.704889 29.724445-27.704889 4.636444 0 21.248 7.367111 49.834666 22.101334l17.237334 9.016889c24.860444 13.198222 38.115556 21.304889 39.793778 24.291555 0.768 1.905778 1.137778 4.778667 1.137777 8.590222 0 12.572444-3.242667 27.022222-9.728 43.406223-6.087111 14.876444-19.626667 27.335111-40.561777 37.432889-20.963556 10.097778-40.391111 15.160889-58.282667 15.160888-21.703111 0-57.912889-11.804444-108.572445-35.441777a326.115556 326.115556 0 0 1-97.137777-67.413334c-27.420444-27.818667-55.637333-63.061333-84.565334-105.728-27.448889-40.760889-40.96-77.710222-40.590222-110.848v-4.551111c1.137778-34.702222 15.246222-64.796444 42.296889-90.311111 9.130667-8.391111 19.057778-12.572444 29.724444-12.572444z" p-id="5949"></path></svg>
|
|
||||||
</i>
|
|
||||||
<div class="toolbar_tooltip" id="toolbar_tooltip_whtasapp">
|
|
||||||
<div class="toolbar_whtasapp"></div>
|
|
||||||
<span class="toolbar_qrcode_text">
|
|
||||||
WhatsApp
|
|
||||||
</span>
|
|
||||||
<div class="tooltip_arrow"></div>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
<li class="side_toolbar_item" id="side_toolbar_item_qrcode">
|
|
||||||
<i class="toolbar_font font_qrcode"></i>
|
|
||||||
<div class="toolbar_tooltip" id="toolbar_tooltip_qrcode">
|
|
||||||
<div class="toolbar_qrcode"></div>
|
|
||||||
<span class="toolbar_qrcode_text">
|
|
||||||
WeChat
|
|
||||||
</span>
|
|
||||||
<div class="tooltip_arrow"></div>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<div class="side_to_top" id="back_to_top">
|
|
||||||
<div class="side_to_top_wrapper">
|
|
||||||
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="M4 12.2531C3.58579 12.2531 3.25 11.9173 3.25 11.5031C3.25 11.0889 3.58579 10.7531 4 10.7531L12 10.7531C12.4142 10.7531 12.75 11.0889 12.75 11.5031C12.75 11.9173 12.4142 12.2531 12 12.2531H4Z"></path>
|
|
||||||
<path d="M10.803 4.13636C11.0959 3.84346 11.5708 3.84346 11.8637 4.13636C12.1566 4.42925 12.1566 4.90412 11.8637 5.19702L8.53037 8.53035C8.38972 8.671 8.19895 8.75002 8.00004 8.75002C7.80113 8.75002 7.61036 8.671 7.46971 8.53035L4.13638 5.19702C3.84348 4.90412 3.84348 4.42925 4.13638 4.13636C4.42927 3.84346 4.90414 3.84346 5.19704 4.13636L8.00004 6.93936L10.803 4.13636Z"></path>
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@ -1,608 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8" />
|
|
||||||
<title>Solutions - DooTask</title>
|
|
||||||
<meta name="google" value="notranslate" />
|
|
||||||
<meta name="description"
|
|
||||||
content="Lightweight open source online project task management tool to help teams efficiently advance their projects and make work easier." />
|
|
||||||
<meta name="keywords" content="China DooTask Task management Lightweight Hitosea Teamwork" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
||||||
<link rel="shortcut icon" href="../img/favicon.ico" />
|
|
||||||
<link rel="stylesheet" href="../css/common.css" />
|
|
||||||
<link rel="stylesheet" type="text/css" href="../css/rem.css" />
|
|
||||||
<link rel="stylesheet" href="../css/solution.css" />
|
|
||||||
<!-- Google tag (gtag.js) -->
|
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-16660800396"></script>
|
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PE77P6491J"></script>
|
|
||||||
<script src="../js/googleAds.js"></script>
|
|
||||||
<script src="../js/googleAnalyze.js"></script>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<div id="layout">
|
|
||||||
<!-- 页头区域 -->
|
|
||||||
<header class="head solutions">
|
|
||||||
<div class="nav">
|
|
||||||
<div class="nav-layout">
|
|
||||||
<a href="../en/index.html" class="logo">
|
|
||||||
<img id="logo" src="../img/light/logo.svg" alt="DooTask,Logo" />
|
|
||||||
<i class="dootask txt-7002027">DooTask</i>
|
|
||||||
</a>
|
|
||||||
<ul class="nav-ul">
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<a class="txt-4001620 txt nav-product" href="../en/product.html">Product</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<a class="txt-4001620 txt nav-solutions" href="../en/solutions.html">Solutions</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<i class="txt-4001620 txt nav-support" id="support-txt" onclick="showMenuPopHandle()">
|
|
||||||
Support
|
|
||||||
<img src="../img/vector.svg" alt="Support" class="nav-vector" id="drop-down-svg" />
|
|
||||||
</i>
|
|
||||||
<ol class="submenu-pop" id="submenu-pop">
|
|
||||||
<li class="submenu-pop-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001418 txt-sub" href="../en/download.html">Download Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="submenu-pop-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001418 txt-sub" href="../en/help.html">Help Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="submenu-pop-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001418 txt-sub" href="../en/privacy.html" target="_blank">Privacy
|
|
||||||
Policy</a>
|
|
||||||
</li>
|
|
||||||
<li class="submenu-pop-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001418 txt-sub" href="../../docs/index.html" target="_blank">API
|
|
||||||
document</a>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<a class="txt-4001620 txt nav-price" href="../en/price.html">Pricing</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-item">
|
|
||||||
<a class="txt-4001620 txt nav-about" href="../en/about.html">About Us</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<div class="nav-r">
|
|
||||||
<div class="lang" id="lang-img">
|
|
||||||
<img src="../img/lang-select.svg" alt="Language switch" onclick="shouLangPopHandle()" />
|
|
||||||
<ul class="lang-pop" id="lang-pop">
|
|
||||||
<li class="lang-pop-item" onclick="changeLanguage('zh')">
|
|
||||||
<i class="lang-txt">简体中文</i>
|
|
||||||
</li>
|
|
||||||
<li class="lang-pop-item" onclick="changeLanguage('en')">
|
|
||||||
<i class="lang-txt">English</i>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<i class="nav-r-icon theme_dark" onclick="setTheme('light')">
|
|
||||||
<img src="../img/light.svg" alt="Light theme" />
|
|
||||||
</i>
|
|
||||||
<i class="nav-r-icon theme_light" onclick="setTheme('dark')">
|
|
||||||
<img src="../img/drak.svg" alt="Dark theme" />
|
|
||||||
</i>
|
|
||||||
<a href="https://github.com/kuaifan/dootask" target="_blank">
|
|
||||||
<i class="nav-r-icon">
|
|
||||||
<img src="../img/github.svg" alt="github" />
|
|
||||||
</i>
|
|
||||||
</a>
|
|
||||||
<i class="line-1"></i>
|
|
||||||
<span class="get-started">
|
|
||||||
<a href="../../manage/dashboard">
|
|
||||||
<button class="btn btn-primary">
|
|
||||||
Try Now
|
|
||||||
</button>
|
|
||||||
</a>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div class="menuBtn">
|
|
||||||
<img id="menuBtn" src="../img/menu.svg" alt="Menu" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="topics">
|
|
||||||
<div class="topics-con">
|
|
||||||
<div class="topics-layout">
|
|
||||||
<div class="topics-tit mb-32 topics-tit-en">
|
|
||||||
<span class="txt-6007290 topics-h1">Helping you collaborate better</span>
|
|
||||||
</div>
|
|
||||||
<h4 class="txt-4001830 topics-h4 mb-32 topics-h4-en">
|
|
||||||
DooTask offers a range of solutions based on
|
|
||||||
different scenarios so that you can quickly
|
|
||||||
start collaborating with your team or department
|
|
||||||
</h4>
|
|
||||||
<div class="flex-cc topics-btn">
|
|
||||||
<span class="mr-24 get-started">
|
|
||||||
<a href="./price.html">
|
|
||||||
<button class="btn btn-primary mr-20">
|
|
||||||
Get Started
|
|
||||||
</button>
|
|
||||||
</a>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<!-- 菜单抽屉 -->
|
|
||||||
<div class="drawer">
|
|
||||||
<div class="drawer-t mb-36">
|
|
||||||
<a href="../en/index.html" class="logo">
|
|
||||||
<img id="logo" src="../img/light/logo.svg" alt="DooTaskLogo" />
|
|
||||||
<i class="dootask txt-7002027">DooTask</i>
|
|
||||||
</a>
|
|
||||||
<i class="close-drawer" onclick="closeDraweHandle()">✕</i>
|
|
||||||
</div>
|
|
||||||
<ul class="drawer-ul">
|
|
||||||
<li class="drawer-item-t mb-16">
|
|
||||||
<div class="drawer-item" onclick="closeDraweHandle()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/product.html">Product</a>
|
|
||||||
</div>
|
|
||||||
<div class="drawer-item" onclick="closeDraweHandle()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/solutions.html">Solutions</a>
|
|
||||||
</div>
|
|
||||||
<div class="drawer-item" onclick="expandMenuHandle('support')">
|
|
||||||
<i class="txt-4001620 txt">
|
|
||||||
Support
|
|
||||||
<img src="../img/vector.svg" class="nav-vector" alt="Support" id="drawer-down-support-svg" />
|
|
||||||
</i>
|
|
||||||
</div>
|
|
||||||
<ol class="drawer-active hide" id="support">
|
|
||||||
<li class="drawer-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/download.html">Download Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/help.html">Help Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/privacy.html" target="_blank">Privacy Policy</a>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="changeMenu()">
|
|
||||||
<a class="txt-4001620 txt" href="../../docs/index.html" target="_blank">API document</a>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
<div class="drawer-item" onclick="closeDraweHandle()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/price.html">Pricing</a>
|
|
||||||
</div>
|
|
||||||
<div class="drawer-item mb-16" onclick="closeDraweHandle()">
|
|
||||||
<a class="txt-4001620 txt" href="../en/about.html">About Us</a>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item-c">
|
|
||||||
<div class="drawer-item" onclick="expandMenuHandle('theme')">
|
|
||||||
<i class="txt-4001620 txt">
|
|
||||||
Theme
|
|
||||||
<img src="../img/vector.svg" alt="Theme" class="nav-vector" id="drawer-down-theme-svg" />
|
|
||||||
</i>
|
|
||||||
</div>
|
|
||||||
<ol class="drawer-active hide" id="theme">
|
|
||||||
<li class="drawer-item" onclick="setTheme('light')">
|
|
||||||
<i class="txt-4001620 txt">Light</i>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="setTheme('dark')">
|
|
||||||
<i class="txt-4001620 txt">Dark</i>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
<div class="drawer-item" onclick="expandMenuHandle('language')">
|
|
||||||
<i class="txt-4001620 txt">
|
|
||||||
Language
|
|
||||||
<img src="../img/vector.svg" alt="Language" class="nav-vector" id="drawer-down-language-svg" />
|
|
||||||
</i>
|
|
||||||
</div>
|
|
||||||
<ol class="drawer-active hide" id="language">
|
|
||||||
<li class="drawer-item" onclick="changeLanguage('zh')">
|
|
||||||
<i class="txt-4001620 txt">简体中文</i>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item" onclick="changeLanguage('en')">
|
|
||||||
<i class="txt-4001620 txt">English</i>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li class="drawer-item-b">
|
|
||||||
<div class="drawer-item">
|
|
||||||
<a class="txt-4001620 txt" href="../../manage/dashboard">Try Now</a>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<!-- 内容区域 -->
|
|
||||||
<main>
|
|
||||||
<!-- 主要区域划分 -->
|
|
||||||
<section>
|
|
||||||
<article class="app">
|
|
||||||
<div class="bg-style">
|
|
||||||
<div class="app-con">
|
|
||||||
<div class="app-tit">
|
|
||||||
<h1 class="txt-5004455 app-h1 mb-16">
|
|
||||||
Scenario Application
|
|
||||||
</h1>
|
|
||||||
<div style="text-align: center">
|
|
||||||
<h6 class="txt-4001830 app-h5" style="width: 600px">
|
|
||||||
The product supports a variety of
|
|
||||||
application scenarios to help team
|
|
||||||
collaboration
|
|
||||||
</h6>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<ul class="app-ul mt-80">
|
|
||||||
<li class="app-ul-item mb-48">
|
|
||||||
<div class="app-bg-box">
|
|
||||||
<img class="app-bg" id="solution_pic1" src="../img/light/zh_solution_pic1.png"
|
|
||||||
alt="Project Management" />
|
|
||||||
</div>
|
|
||||||
<h4 class="txt-5002025 app-h4 mb-16">
|
|
||||||
Project Management
|
|
||||||
</h4>
|
|
||||||
<h6 class="txt-4001624 app-h6">
|
|
||||||
Support a variety of project
|
|
||||||
management models, such as Agile
|
|
||||||
Development, Crystal Planning,
|
|
||||||
Kanban, etc., for all sizes and
|
|
||||||
types of project management. Users
|
|
||||||
can use the project management tools
|
|
||||||
in DooTask, such as task assignment,
|
|
||||||
progress tracking, resource
|
|
||||||
allocation, etc. to manage the whole
|
|
||||||
project.
|
|
||||||
</h6>
|
|
||||||
</li>
|
|
||||||
<li class="app-ul-item mb-48">
|
|
||||||
<div class="app-bg-box">
|
|
||||||
<img class="app-bg" id="solution_pic2" src="../img/light/zh_solution_pic2.png"
|
|
||||||
alt="Team Collaboration" />
|
|
||||||
</div>
|
|
||||||
<h4 class="txt-5002025 app-h4 mb-16">
|
|
||||||
Team Collaboration
|
|
||||||
</h4>
|
|
||||||
<h6 class="txt-4001624 app-h6">
|
|
||||||
DooTask's rich and useful tools can
|
|
||||||
facilitate communication and
|
|
||||||
collaboration among team members and
|
|
||||||
improve work efficiency. For
|
|
||||||
example, team members can use the
|
|
||||||
document collaboration tools, online
|
|
||||||
mind maps, flowcharts and other
|
|
||||||
tools in DooTask to collaborate.
|
|
||||||
</h6>
|
|
||||||
</li>
|
|
||||||
<li class="app-ul-item">
|
|
||||||
<div class="app-bg-box">
|
|
||||||
<img class="app-bg" id="solution_pic3" src="../img/light/zh_solution_pic3.png"
|
|
||||||
alt="Data Security Protection" />
|
|
||||||
</div>
|
|
||||||
<h4 class="txt-5002025 app-h4 mb-16">
|
|
||||||
Data Security Protection
|
|
||||||
</h4>
|
|
||||||
<h6 class="txt-4001624 app-h6">
|
|
||||||
DooTask uses asymmetric encryption
|
|
||||||
technology in its messaging function
|
|
||||||
to ensure maximum protection of
|
|
||||||
users' information. In addition, it
|
|
||||||
also provides a powerful permission
|
|
||||||
management system that enables
|
|
||||||
flexible setting of permissions and
|
|
||||||
scope of operations for different
|
|
||||||
users in project management
|
|
||||||
according to their roles and
|
|
||||||
responsibilities.
|
|
||||||
</h6>
|
|
||||||
</li>
|
|
||||||
<li class="app-ul-item">
|
|
||||||
<div class="app-bg-box">
|
|
||||||
<img class="app-bg" id="solution_pic4" src="../img/light/solution_pic4.png"
|
|
||||||
alt="Free Customization" />
|
|
||||||
</div>
|
|
||||||
<h4 class="txt-5002025 app-h4 mb-16">
|
|
||||||
Free Customization
|
|
||||||
</h4>
|
|
||||||
<h6 class="txt-4001624 app-h6">
|
|
||||||
DooTask is a completely open source
|
|
||||||
tool that allows users to freely
|
|
||||||
modify and customize it, avoiding
|
|
||||||
the extra costs associated with
|
|
||||||
commercial software subscription
|
|
||||||
fees.
|
|
||||||
</h6>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</article>
|
|
||||||
<article class="team solutions">
|
|
||||||
<div class="team-con">
|
|
||||||
<h1 class="txt-5004455 team-tit">
|
|
||||||
Team Operations
|
|
||||||
</h1>
|
|
||||||
<ul class="team-ul mt-80">
|
|
||||||
<li class="team-ul-item team-ul-item-en solutions-animate-box" style="--delay: 0s">
|
|
||||||
<img class="team-icon mb-24" src="../img/solution_icon1.svg" alt="Corporate Management" />
|
|
||||||
<h4 class="txt-5002025 app-h4 mb-16">
|
|
||||||
Corporate Management
|
|
||||||
</h4>
|
|
||||||
<h6 class="txt-4001624 app-h6">
|
|
||||||
Helping enterprises to their corporate
|
|
||||||
goals, connecting goals, key results and
|
|
||||||
individual work, and jointly promoting
|
|
||||||
strategy implementation and goal
|
|
||||||
achievement;Through co-creation, share
|
|
||||||
the progress, completion status, and
|
|
||||||
schedule of all corporate work, promote
|
|
||||||
information flow, allow all staff to
|
|
||||||
access key information of projects,
|
|
||||||
follow up in time, and promote
|
|
||||||
cross-departmental
|
|
||||||
collaboration.Translated with DeepL
|
|
||||||
</h6>
|
|
||||||
</li>
|
|
||||||
<li class="team-ul-item team-ul-item-en solutions-animate-box" style="--delay: 0.1s">
|
|
||||||
<img class="team-icon mb-24" src="../img/solution_icon2.svg" alt="Product Management" />
|
|
||||||
<h4 class="txt-5002025 app-h4 mb-16">
|
|
||||||
Product Management
|
|
||||||
</h4>
|
|
||||||
<h6 class="txt-4001624 app-h6">
|
|
||||||
Customize the workflow of the product
|
|
||||||
development process, assign tasks to
|
|
||||||
different roles at different stages, and
|
|
||||||
promote the product development process;
|
|
||||||
Uniform archiving of each completed
|
|
||||||
project and task history data, which is
|
|
||||||
convenient to recall or discuss at any
|
|
||||||
time, forming a closed loop of knowledge
|
|
||||||
precipitation to reuse.
|
|
||||||
</h6>
|
|
||||||
</li>
|
|
||||||
<li class="team-ul-item team-ul-item-en solutions-animate-box" style="--delay: 0.2s">
|
|
||||||
<img class="team-icon mb-24" src="../img/solution_icon3.svg" alt="Corporate Management" />
|
|
||||||
<h4 class="txt-5002025 app-h4 mb-16">
|
|
||||||
Corporate Management
|
|
||||||
</h4>
|
|
||||||
<h6 class="txt-4001624 app-h6">
|
|
||||||
Get multi-dimensional corporate data
|
|
||||||
through data visualization statistical
|
|
||||||
reports to get a comprehensive
|
|
||||||
understanding of employee performance
|
|
||||||
and make performance evaluation more
|
|
||||||
objective and fair; use announcements to
|
|
||||||
release notices, arrange company
|
|
||||||
activities, convey corporate decisions,
|
|
||||||
facilitate the shaping of corporate
|
|
||||||
culture, and make employees more
|
|
||||||
engaged.
|
|
||||||
</h6>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</article>
|
|
||||||
</section>
|
|
||||||
</main>
|
|
||||||
<!-- 页脚区域 -->
|
|
||||||
<footer>
|
|
||||||
<div class="footer-con">
|
|
||||||
<div class="footer-layout">
|
|
||||||
<div class="footer-l">
|
|
||||||
<a href="../en/index.html" class="logo">
|
|
||||||
<img id="logo" src="../img/light/logo.svg" alt="DooTask,Logo" />
|
|
||||||
<i class="dootask txt-7002027">DooTask</i>
|
|
||||||
</a>
|
|
||||||
<i class="txt txt-4001624">Helps teams move projects forward efficiently
|
|
||||||
and makes work easier.</i>
|
|
||||||
</div>
|
|
||||||
<div class="footer-r">
|
|
||||||
<ul class="footer-r-ul">
|
|
||||||
<li class="footer-r-item">
|
|
||||||
<ol class="footer-r-ol">
|
|
||||||
<li class="footer-ol-item txt-5001624 mb-24">
|
|
||||||
Links
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/product.html">Product</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/solutions.html">Solutions</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/price.html">Pricing</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item">
|
|
||||||
<a class="txt-4001624 txt" href="../en/solutions.html">About Us</a>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li class="footer-r-item">
|
|
||||||
<ol class="footer-r-ol">
|
|
||||||
<li class="footer-ol-item txt-5001624 mb-24">
|
|
||||||
Support
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/download.html">Download Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/help.html">Help Center</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item mb-16">
|
|
||||||
<a class="txt-4001624 txt" href="../en/privacy.html" target="_blank">Privacy
|
|
||||||
Policy</a>
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item">
|
|
||||||
<a class="txt-4001624 txt" href="../../docs/index.html" target="_blank">API
|
|
||||||
document</a>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li class="footer-r-item">
|
|
||||||
<ol class="footer-r-ol">
|
|
||||||
<li class="footer-ol-item txt-5001624 mb-24">
|
|
||||||
Community
|
|
||||||
</li>
|
|
||||||
<li class="footer-ol-item">
|
|
||||||
<div class="footer-ol-item mb-16">
|
|
||||||
<i class="txt-4001624 txt" onclick="openInNewTab('https://github.com/kuaifan/dootask')">Github</i>
|
|
||||||
</div>
|
|
||||||
<div class="footer-ol-item mb-16">
|
|
||||||
<i class="txt-4001624 txt" onclick="openInNewTab('https://gitee.com/aipaw/dootask')">Gitee</i>
|
|
||||||
</div>
|
|
||||||
<div class="footer-ol-item" id="qq_group">
|
|
||||||
<i class="txt-4001624 txt">QQ group</i>
|
|
||||||
<div class="group_code">
|
|
||||||
<img class="code-svg" id="home_code" src="../img/light/home_code.svg" alt="Group:546574618" />
|
|
||||||
<i class="group_num">Group:546574618</i>
|
|
||||||
<i class="lower_triangle"></i>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="txt-4001624 filings footer_copyright">
|
|
||||||
<span>
|
|
||||||
Copyright © 2022-2023 DooTask. All rights reserved.
|
|
||||||
</span>
|
|
||||||
<div class="footer_beian" style="display: flex">
|
|
||||||
<img src="../img/beian.png" alt="" /><span style="padding-left: 3px">桂公网安备
|
|
||||||
45010802000393号</span>
|
|
||||||
</div>
|
|
||||||
<a class="footer_beian_a" href="http://beian.miit.gov.cn">桂ICP备2021003642号-5</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
<!-- 侧边导航 -->
|
|
||||||
<div id="nav_wrap"></div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
<script src="../js/common.js"></script>
|
|
||||||
<script>
|
|
||||||
/* 滑动到可视区域执行动画 */
|
|
||||||
const boxes = document.querySelectorAll(".solutions-animate-box");
|
|
||||||
let timerId = null;
|
|
||||||
const animateBoxes = () => {
|
|
||||||
boxes.forEach((box) => {
|
|
||||||
const boxTop = box.getBoundingClientRect().top;
|
|
||||||
const boxBottom = box.getBoundingClientRect().bottom;
|
|
||||||
if (boxTop < window.innerHeight && boxBottom > 0) {
|
|
||||||
box.classList.add("animate");
|
|
||||||
timerId = setTimeout(() => {
|
|
||||||
box.classList.remove("solutions-animate-box");
|
|
||||||
timerId = null;
|
|
||||||
}, 1200);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
window.addEventListener("scroll", animateBoxes);
|
|
||||||
animateBoxes();
|
|
||||||
document.addEventListener("DOMContentLoaded", function () {
|
|
||||||
fetch("./sideNav.html")
|
|
||||||
.then((response) => response.text())
|
|
||||||
.then((data) => {
|
|
||||||
document.getElementById("nav_wrap").innerHTML = data;
|
|
||||||
// 回到顶部
|
|
||||||
const back_top_button =
|
|
||||||
document.getElementById("back_to_top");
|
|
||||||
window.addEventListener("scroll", () => {
|
|
||||||
if (
|
|
||||||
document.body.scrollTop > 20 ||
|
|
||||||
document.documentElement.scrollTop > 20
|
|
||||||
) {
|
|
||||||
back_top_button.style.display = "block";
|
|
||||||
} else {
|
|
||||||
back_top_button.style.display = "none";
|
|
||||||
}
|
|
||||||
});
|
|
||||||
back_top_button.addEventListener("click", () => {
|
|
||||||
window.scrollTo({
|
|
||||||
top: 0,
|
|
||||||
behavior: "smooth",
|
|
||||||
});
|
|
||||||
});
|
|
||||||
// 检查页面加载时的滚动位置以决定是否显示回到顶部按钮
|
|
||||||
if (document.documentElement.scrollTop > 20) {
|
|
||||||
back_top_button.style.display = "block"; // 显示回到顶部按钮
|
|
||||||
}
|
|
||||||
let toolbarPhone = document.getElementById(
|
|
||||||
"side_toolbar_item_phone"
|
|
||||||
);
|
|
||||||
let tooltipPhone = document.getElementById(
|
|
||||||
"toolbar_tooltip_phone"
|
|
||||||
);
|
|
||||||
let toolbarWhtasapp = document.getElementById(
|
|
||||||
"side_toolbar_item_whtasapp"
|
|
||||||
);
|
|
||||||
let tooltipWhtasapp = document.getElementById(
|
|
||||||
"toolbar_tooltip_whtasapp"
|
|
||||||
);
|
|
||||||
let toolbarQrcode = document.getElementById(
|
|
||||||
"side_toolbar_item_qrcode"
|
|
||||||
);
|
|
||||||
let tooltipQrcode = document.getElementById(
|
|
||||||
"toolbar_tooltip_qrcode"
|
|
||||||
);
|
|
||||||
|
|
||||||
function toggleTooltip(dom) {
|
|
||||||
if (dom.style.display === "block") {
|
|
||||||
dom.style.display = "none";
|
|
||||||
} else {
|
|
||||||
dom.style.display = "block";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (toolbarPhone) {
|
|
||||||
toolbarPhone.addEventListener("click", () => {
|
|
||||||
event.stopPropagation();
|
|
||||||
// 谷歌分析事件追踪
|
|
||||||
if (gtag) {
|
|
||||||
gtag("event", "click", {
|
|
||||||
event_category: "button",
|
|
||||||
event_label: "right_side_toolbar_phone",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
toggleTooltip(tooltipPhone);
|
|
||||||
tooltipWhtasapp.style.display = "none";
|
|
||||||
tooltipQrcode.style.display = "none";
|
|
||||||
if (
|
|
||||||
/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(
|
|
||||||
navigator.userAgent
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
window.location.href = "tel:0771-3164099";
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (toolbarWhtasapp) {
|
|
||||||
toolbarWhtasapp.addEventListener("click", () => {
|
|
||||||
event.stopPropagation();
|
|
||||||
// 谷歌分析事件追踪
|
|
||||||
if (gtag) {
|
|
||||||
gtag("event", "click", {
|
|
||||||
event_category: "button",
|
|
||||||
event_label: "right_side_toolbar_Whtasapp",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
toggleTooltip(tooltipWhtasapp);
|
|
||||||
tooltipPhone.style.display = "none";
|
|
||||||
tooltipQrcode.style.display = "none";
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (toolbarQrcode) {
|
|
||||||
toolbarQrcode.addEventListener("click", () => {
|
|
||||||
event.stopPropagation();
|
|
||||||
// 谷歌分析事件追踪
|
|
||||||
if (gtag) {
|
|
||||||
gtag("event", "click", {
|
|
||||||
event_category: "button",
|
|
||||||
event_label: "right_side_toolbar_WeChat",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
toggleTooltip(tooltipQrcode);
|
|
||||||
tooltipPhone.style.display = "none";
|
|
||||||
tooltipWhtasapp.style.display = "none";
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script src="../js/ad.js"></script>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
@ -1,3 +0,0 @@
|
|||||||
<svg width="172" height="92" viewBox="0 0 172 92" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path opacity="0.05" d="M47.92 91.6C37.8933 91.6 29.3067 89.3067 22.16 84.72C15.12 80.1333 9.73333 73.5733 6 65.04C2.26667 56.4 0.4 46.0533 0.4 34C0.4 21.9467 2.26667 11.6533 6 3.11999C9.73333 -5.52 15.12 -12.1333 22.16 -16.72C29.3067 -21.3067 37.8933 -23.6 47.92 -23.6C57.9467 -23.6 66.5333 -21.3067 73.68 -16.72C80.8267 -12.1333 86.2667 -5.52 90 3.11999C93.7333 11.6533 95.6 21.9467 95.6 34C95.6 46.0533 93.7333 56.4 90 65.04C86.2667 73.5733 80.8267 80.1333 73.68 84.72C66.5333 89.3067 57.9467 91.6 47.92 91.6ZM47.92 68.56C54.8533 68.56 60.1867 65.5733 63.92 59.6C67.76 53.6267 69.68 45.0933 69.68 34C69.68 22.5867 67.76 13.84 63.92 7.76C60.1867 1.57333 54.8533 -1.52 47.92 -1.52C40.9867 -1.52 35.6 1.57333 31.76 7.76C28.0267 13.84 26.16 22.5867 26.16 34C26.16 45.0933 28.0267 53.6267 31.76 59.6C35.6 65.5733 40.9867 68.56 47.92 68.56ZM135.729 82.16V-8.72001L141.649 4.88L117.649 16.24L113.009 -8.08001L144.849 -23.6H162.449V82.16H135.729ZM115.249 90V66H183.409V90H115.249Z" fill="#959595"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.1 KiB |
@ -1,3 +0,0 @@
|
|||||||
<svg width="172" height="92" viewBox="0 0 172 92" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path opacity="0.05" d="M47.92 91.6C37.8933 91.6 29.3067 89.3067 22.16 84.72C15.12 80.1333 9.73333 73.5733 6 65.04C2.26667 56.4 0.4 46.0533 0.4 34C0.4 21.9467 2.26667 11.6533 6 3.11999C9.73333 -5.52 15.12 -12.1333 22.16 -16.72C29.3067 -21.3067 37.8933 -23.6 47.92 -23.6C57.9467 -23.6 66.5333 -21.3067 73.68 -16.72C80.8267 -12.1333 86.2667 -5.52 90 3.11999C93.7333 11.6533 95.6 21.9467 95.6 34C95.6 46.0533 93.7333 56.4 90 65.04C86.2667 73.5733 80.8267 80.1333 73.68 84.72C66.5333 89.3067 57.9467 91.6 47.92 91.6ZM47.92 68.56C54.8533 68.56 60.1867 65.5733 63.92 59.6C67.76 53.6267 69.68 45.0933 69.68 34C69.68 22.5867 67.76 13.84 63.92 7.76C60.1867 1.57333 54.8533 -1.52 47.92 -1.52C40.9867 -1.52 35.6 1.57333 31.76 7.76C28.0267 13.84 26.16 22.5867 26.16 34C26.16 45.0933 28.0267 53.6267 31.76 59.6C35.6 65.5733 40.9867 68.56 47.92 68.56ZM111.409 90L106.129 76.88L138.769 41.2C140.582 39.1733 142.555 36.88 144.689 34.32C146.822 31.76 148.902 29.1467 150.929 26.48C152.955 23.7067 154.555 21.04 155.729 18.48C157.009 15.92 157.649 13.5733 157.649 11.44C157.649 9.30666 157.169 7.43999 156.209 5.84C155.249 4.24 153.862 3.01333 152.049 2.16C150.235 1.2 147.942 0.719995 145.169 0.719995C142.715 0.719995 140.369 1.36 138.129 2.64C135.889 3.81333 133.755 5.68 131.729 8.23999C129.809 10.8 127.995 13.9467 126.289 17.68L106.129 6.79999C108.369 0.61333 111.515 -4.82667 115.569 -9.52001C119.729 -14.32 124.582 -18 130.129 -20.56C135.675 -23.2267 141.595 -24.56 147.889 -24.56C154.502 -24.4533 160.475 -23.0133 165.809 -20.24C171.142 -17.5733 175.355 -13.7867 178.449 -8.88C181.649 -4.08 183.249 1.57333 183.249 8.08C183.249 10.32 182.982 12.6667 182.449 15.12C181.915 17.5733 181.115 20.1333 180.049 22.8C178.982 25.36 177.542 28.1333 175.729 31.12C174.022 34 171.942 37.04 169.489 40.24C167.035 43.44 164.155 46.8533 160.849 50.48L135.409 78.16L132.209 66H188.209V90H111.409Z" fill="#959595"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.9 KiB |
@ -1,3 +0,0 @@
|
|||||||
<svg width="172" height="92" viewBox="0 0 172 92" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path opacity="0.05" d="M47.92 91.6C37.8933 91.6 29.3067 89.3067 22.16 84.72C15.12 80.1333 9.73333 73.5733 6 65.04C2.26667 56.4 0.4 46.0533 0.4 34C0.4 21.9467 2.26667 11.6533 6 3.11999C9.73333 -5.52 15.12 -12.1333 22.16 -16.72C29.3067 -21.3067 37.8933 -23.6 47.92 -23.6C57.9467 -23.6 66.5333 -21.3067 73.68 -16.72C80.8267 -12.1333 86.2667 -5.52 90 3.11999C93.7333 11.6533 95.6 21.9467 95.6 34C95.6 46.0533 93.7333 56.4 90 65.04C86.2667 73.5733 80.8267 80.1333 73.68 84.72C66.5333 89.3067 57.9467 91.6 47.92 91.6ZM47.92 68.56C54.8533 68.56 60.1867 65.5733 63.92 59.6C67.76 53.6267 69.68 45.0933 69.68 34C69.68 22.5867 67.76 13.84 63.92 7.76C60.1867 1.57333 54.8533 -1.52 47.92 -1.52C40.9867 -1.52 35.6 1.57333 31.76 7.76C28.0267 13.84 26.16 22.5867 26.16 34C26.16 45.0933 28.0267 53.6267 31.76 59.6C35.6 65.5733 40.9867 68.56 47.92 68.56ZM147.889 91.6C138.822 91.6 130.875 89.7333 124.049 86C117.329 82.16 111.195 75.6 105.649 66.32L125.169 53.68C127.515 57.4133 129.915 60.4 132.369 62.64C134.929 64.88 137.542 66.5333 140.209 67.6C142.982 68.56 145.862 69.04 148.849 69.04C151.835 69.04 154.555 68.4 157.009 67.12C159.569 65.7333 161.595 63.8133 163.089 61.36C164.689 58.9067 165.489 56.1333 165.489 53.04C165.489 49.7333 164.795 46.96 163.409 44.72C162.129 42.3733 160.209 40.6133 157.649 39.44C155.195 38.2667 152.209 37.68 148.689 37.68C147.089 37.68 145.382 37.8933 143.569 38.32C141.755 38.64 139.835 39.12 137.809 39.76C135.782 40.4 133.702 41.2533 131.569 42.32L125.649 26.48L152.849 -3.12L160.209 0.879993L113.489 -0.0800037V-22.96H182.289L187.249 -13.04L150.289 26.64L143.889 19.12C144.742 18.6933 146.129 18.32 148.049 18C150.075 17.5733 151.995 17.36 153.809 17.36C158.822 17.36 163.515 18.2667 167.889 20.08C172.262 21.8933 176.155 24.4 179.569 27.6C182.982 30.8 185.649 34.5867 187.569 38.96C189.489 43.2267 190.449 47.8133 190.449 52.72C190.449 60.1867 188.529 66.8533 184.689 72.72C180.955 78.48 175.835 83.0667 169.329 86.48C162.929 89.8933 155.782 91.6 147.889 91.6Z" fill="#959595"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.1 KiB |
@ -1,3 +0,0 @@
|
|||||||
<svg width="172" height="92" viewBox="0 0 172 92" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path opacity="0.05" d="M47.92 91.6C37.8933 91.6 29.3067 89.3067 22.16 84.72C15.12 80.1333 9.73333 73.5733 6 65.04C2.26667 56.4 0.4 46.0533 0.4 34C0.4 21.9467 2.26667 11.6533 6 3.11999C9.73333 -5.52 15.12 -12.1333 22.16 -16.72C29.3067 -21.3067 37.8933 -23.6 47.92 -23.6C57.9467 -23.6 66.5333 -21.3067 73.68 -16.72C80.8267 -12.1333 86.2667 -5.52 90 3.11999C93.7333 11.6533 95.6 21.9467 95.6 34C95.6 46.0533 93.7333 56.4 90 65.04C86.2667 73.5733 80.8267 80.1333 73.68 84.72C66.5333 89.3067 57.9467 91.6 47.92 91.6ZM47.92 68.56C54.8533 68.56 60.1867 65.5733 63.92 59.6C67.76 53.6267 69.68 45.0933 69.68 34C69.68 22.5867 67.76 13.84 63.92 7.76C60.1867 1.57333 54.8533 -1.52 47.92 -1.52C40.9867 -1.52 35.6 1.57333 31.76 7.76C28.0267 13.84 26.16 22.5867 26.16 34C26.16 45.0933 28.0267 53.6267 31.76 59.6C35.6 65.5733 40.9867 68.56 47.92 68.56ZM157.809 90V-0.560007L172.369 -0.240002L131.889 49.36L128.049 44.56H202.289V66.96H115.889L105.009 46L162.129 -22.96H184.049V90H157.809Z" fill="#959595"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.1 KiB |
@ -1,13 +0,0 @@
|
|||||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g clip-path="url(#clip0_97_162)">
|
|
||||||
<path d="M17.6197 10.7501C17.4163 10.7475 17.222 10.6655 17.0781 10.5217C16.9343 10.3779 16.8523 10.1835 16.8497 9.9801C16.7075 9.28938 16.3588 8.65817 15.8497 8.1701C15.3909 7.60883 14.7303 7.24981 14.0097 7.1701C13.8015 7.17142 13.6014 7.08999 13.4532 6.94371C13.305 6.79743 13.2211 6.59829 13.2197 6.3901C13.2184 6.1819 13.2998 5.98171 13.4461 5.83355C13.5924 5.6854 13.7915 5.60142 13.9997 5.6001C14.5772 5.63487 15.1413 5.7877 15.6573 6.04914C16.1733 6.31058 16.6302 6.67508 16.9997 7.1201C17.7857 7.88911 18.2805 8.90699 18.3997 10.0001C18.392 10.2017 18.3064 10.3925 18.1609 10.5323C18.0155 10.6722 17.8215 10.7502 17.6197 10.7501Z" fill="#8BCF70"/>
|
|
||||||
<path d="M21.2305 10.75C21.0263 10.75 20.8304 10.6689 20.686 10.5245C20.5416 10.3801 20.4605 10.1842 20.4605 9.98C20.4592 9.13297 20.291 8.2945 19.9657 7.51245C19.6403 6.7304 19.1641 6.0201 18.5642 5.42209C17.9644 4.82408 17.2526 4.35008 16.4695 4.02715C15.6865 3.70422 14.8475 3.53869 14.0005 3.54C13.7963 3.54 13.6004 3.45888 13.456 3.31447C13.3116 3.17007 13.2305 2.97422 13.2305 2.77C13.2305 2.56578 13.3116 2.36993 13.456 2.22553C13.6004 2.08112 13.7963 2 14.0005 2C16.1222 2 18.157 2.84285 19.6573 4.34315C21.1576 5.84344 22.0005 7.87827 22.0005 10C21.9928 10.1999 21.9086 10.3892 21.7653 10.5288C21.622 10.6684 21.4305 10.7476 21.2305 10.75Z" fill="#8BCF70"/>
|
|
||||||
<path d="M11.0501 15L9.20011 16.8C9.01318 16.9832 8.76187 17.0859 8.50011 17.0859C8.23836 17.0859 7.98704 16.9832 7.80011 16.8L7.47011 16.48C6.45887 15.462 5.5262 14.3689 4.68011 13.21C3.88911 12.151 3.21832 11.0073 2.68011 9.80001C2.23867 8.76946 2.00748 7.66111 2.00011 6.54001C1.99574 5.87959 2.11794 5.22445 2.36011 4.61001C2.61446 3.97474 3.00734 3.40421 3.51011 2.94001C3.77629 2.65213 4.09753 2.4206 4.45481 2.25914C4.8121 2.09768 5.19815 2.00956 5.59011 2.00001C5.87015 1.99894 6.14689 2.06044 6.40011 2.18001C6.67022 2.30227 6.90187 2.49589 7.07011 2.74001L9.39011 6.00001C9.55058 6.21676 9.68485 6.45173 9.79011 6.70001C9.87699 6.89198 9.92459 7.09938 9.93011 7.31001C9.92349 7.55472 9.85094 7.79311 9.72011 8.00001C9.56589 8.26056 9.37756 8.49934 9.16011 8.71001L8.40011 9.50001C8.34742 9.55214 8.30602 9.61455 8.2785 9.68337C8.25097 9.75218 8.2379 9.82593 8.24011 9.90001C8.23039 9.97637 8.23039 10.0537 8.24011 10.13L8.32011 10.33C8.58865 10.7853 8.90006 11.2139 9.25011 11.61C9.70011 12.13 10.1801 12.61 10.7001 13.19L11.0101 13.49C11.1207 13.581 11.2105 13.6947 11.2734 13.8233C11.3363 13.952 11.3708 14.0927 11.3746 14.2359C11.3784 14.3791 11.3514 14.5214 11.2954 14.6532C11.2394 14.785 11.1558 14.9033 11.0501 15Z" fill="#8BCF70"/>
|
|
||||||
<path d="M22.0002 18.3302C21.999 18.62 21.9483 18.9075 21.8502 19.1802C21.8211 19.2619 21.7877 19.342 21.7502 19.4202C21.5738 19.7851 21.3447 20.122 21.0702 20.4202C20.6198 20.9325 20.059 21.3359 19.4302 21.6002C18.8204 21.8474 18.1681 21.9731 17.5102 21.9702C16.3853 21.9495 15.2764 21.7012 14.2502 21.2402C13.0314 20.706 11.8773 20.035 10.8102 19.2402C10.4202 18.9502 10.0302 18.6602 9.66016 18.3502L12.9302 15.0802C13.1639 15.2593 13.4113 15.4198 13.6702 15.5602L13.8502 15.6402C13.9328 15.6554 14.0175 15.6554 14.1002 15.6402C14.1766 15.6419 14.2525 15.6277 14.3231 15.5984C14.3937 15.5691 14.4574 15.5255 14.5102 15.4702L15.2702 14.7202C15.4809 14.4987 15.7236 14.31 15.9902 14.1602C16.2022 14.0244 16.4484 13.9516 16.7002 13.9502C16.91 13.9531 17.1173 13.9973 17.3102 14.0802C17.5564 14.1856 17.7909 14.3163 18.0102 14.4702L21.3202 16.8202C21.5602 16.9773 21.7509 17.1992 21.8702 17.4602C21.9759 17.7374 22.0203 18.0342 22.0002 18.3302Z" fill="#8BCF70"/>
|
|
||||||
</g>
|
|
||||||
<defs>
|
|
||||||
<clipPath id="clip0_97_162">
|
|
||||||
<rect width="24" height="24" fill="white"/>
|
|
||||||
</clipPath>
|
|
||||||
</defs>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 3.7 KiB |
@ -1,4 +0,0 @@
|
|||||||
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="M22.68 25.4737C22.8346 25.4737 22.96 25.5994 22.96 25.7544V27.7193C22.96 27.8743 22.8346 28 22.68 28H5.32C5.16536 28 5.04 27.8743 5.04 27.7193V25.7544C5.04 25.5994 5.16536 25.4737 5.32 25.4737H22.68ZM26.88 0C27.4986 0 28 0.502702 28 1.12281V21.4737C28 22.0938 27.4986 22.5965 26.88 22.5965H1.12C0.501445 22.5965 0 22.0938 0 21.4737V1.12281C0 0.502702 0.501445 0 1.12 0H26.88ZM25.48 2.52632H2.52V20.0702H25.48V2.52632Z" fill="white"/>
|
|
||||||
<path d="M8.1745 12.0116L11.7058 7.01155C11.7504 6.94844 11.819 6.90656 11.8954 6.8958C11.9718 6.88504 12.0492 6.90635 12.1094 6.95471L18.4056 12.0116H22.8214C22.976 12.0116 23.1014 12.1373 23.1014 12.2923V13.6958C23.1014 13.8509 22.976 13.9765 22.8214 13.9765H17.8156C17.7519 13.9765 17.6902 13.9548 17.6405 13.9149L12.2752 9.60562L9.272 13.858C9.21951 13.9323 9.1343 13.9765 9.04345 13.9765H4.97141C4.81677 13.9765 4.69141 13.8508 4.69141 13.6958V12.2923C4.69141 12.1373 4.81677 12.0116 4.97141 12.0116L8.1745 12.0116Z" fill="white"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.1 KiB |
@ -1,10 +0,0 @@
|
|||||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g clip-path="url(#clip0_97_179)">
|
|
||||||
<path d="M17 3.5H7C4 3.5 2 5 2 8.5V15.5C2 19 4 20.5 7 20.5H17C20 20.5 22 19 22 15.5V8.5C22 5 20 3.5 17 3.5ZM17.47 9.59L14.34 12.09C13.6649 12.5963 12.8438 12.87 12 12.87C11.1562 12.87 10.3351 12.5963 9.66 12.09L6.53 9.59C6.377 9.463 6.27907 9.28173 6.2567 9.08415C6.23433 8.88657 6.28927 8.68799 6.41 8.53C6.53553 8.37481 6.71707 8.27523 6.91541 8.25277C7.11375 8.23032 7.31296 8.2868 7.47 8.41L10.59 10.92C11.0017 11.2133 11.4945 11.3709 12 11.3709C12.5055 11.3709 12.9983 11.2133 13.41 10.92L16.53 8.41C16.6865 8.28535 16.8861 8.22796 17.0849 8.25047C17.2836 8.27297 17.4653 8.37352 17.59 8.53C17.7147 8.68648 17.772 8.88606 17.7495 9.08485C17.727 9.28364 17.6265 9.46535 17.47 9.59Z" fill="#8BCF70"/>
|
|
||||||
</g>
|
|
||||||
<defs>
|
|
||||||
<clipPath id="clip0_97_179">
|
|
||||||
<rect width="24" height="24" fill="white"/>
|
|
||||||
</clipPath>
|
|
||||||
</defs>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 947 B |
@ -1,15 +0,0 @@
|
|||||||
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g clip-path="url(#clip0_91_283)">
|
|
||||||
<path d="M32 64C49.6731 64 64 49.6731 64 32C64 14.3269 49.6731 0 32 0C14.3269 0 0 14.3269 0 32C0 49.6731 14.3269 64 32 64Z" fill="#8BCF70"/>
|
|
||||||
<path d="M38.8977 44.5958H25.1024C21.9606 44.5958 19.4043 42.0395 19.4043 38.8977V25.1024C19.4043 21.9606 21.9606 19.4043 25.1024 19.4043H38.8977C42.0395 19.4043 44.5958 21.9606 44.5958 25.1024V38.8977C44.5958 42.0395 42.0395 44.5958 38.8977 44.5958ZM25.1024 21.8035C23.2813 21.8056 21.8056 23.2813 21.8035 25.1024V38.8977C21.8056 40.7188 23.2813 42.1945 25.1024 42.1966H38.8977C40.7188 42.1945 42.1945 40.7188 42.1966 38.8977V25.1024C42.1945 23.2813 40.7188 21.8056 38.8977 21.8035H25.1024Z" fill="white"/>
|
|
||||||
<path d="M26.3241 21.3742C25.6663 21.3742 25.1331 20.8409 25.1331 20.183V17.1911C25.1331 16.5333 25.6663 16 26.3241 16C26.9819 16 27.5152 16.5333 27.5152 17.1911V20.183C27.5152 20.8409 26.9819 21.3742 26.3241 21.3742ZM31.9991 21.3742C31.3413 21.3742 30.808 20.8409 30.808 20.183V17.1911C30.808 16.5333 31.3413 16 31.9991 16C32.6569 16 33.1901 16.5333 33.1901 17.1911V20.183C33.1901 20.8409 32.6569 21.3742 31.9991 21.3742ZM37.674 21.3742C37.0162 21.3742 36.483 20.8409 36.483 20.183V17.1911C36.483 16.5333 37.0162 16 37.674 16C38.3318 16 38.8651 16.5333 38.8651 17.1911V20.183C38.8651 20.8409 38.3318 21.3742 37.674 21.3742ZM26.3241 48C25.6663 48 25.1331 47.4667 25.1331 46.8089V43.817C25.1331 43.1591 25.6663 42.6258 26.3241 42.6258C26.9819 42.6258 27.5152 43.1591 27.5152 43.817V46.8089C27.5152 47.4667 26.9819 48 26.3241 48ZM31.9991 48C31.3413 48 30.808 47.4667 30.808 46.8089V43.817C30.808 43.1591 31.3413 42.6258 31.9991 42.6258C32.6569 42.6258 33.1901 43.1591 33.1901 43.817V46.8089C33.1901 47.4667 32.6569 48 31.9991 48ZM37.674 48C37.0162 48 36.483 47.4667 36.483 46.8089V43.817C36.483 43.1591 37.0162 42.6258 37.674 42.6258C38.3318 42.6258 38.8651 43.1591 38.8651 43.817V46.8089C38.8651 47.4667 38.3318 48 37.674 48ZM46.809 27.5158H43.8153C43.1575 27.5158 42.6243 26.9826 42.6243 26.3247C42.6243 25.6669 43.1575 25.1336 43.8153 25.1336H46.809C47.4668 25.1336 48 25.6669 48 26.3247C48 26.9826 47.4668 27.5158 46.809 27.5158ZM46.809 33.1911H43.8153C43.1575 33.1911 42.6243 32.6578 42.6243 32C42.6243 31.3422 43.1575 30.8089 43.8153 30.8089H46.809C47.4668 30.8089 48 31.3422 48 32C48 32.6578 47.4668 33.1911 46.809 33.1911ZM46.809 38.8664H43.8153C43.1575 38.8664 42.6243 38.3331 42.6243 37.6753C42.6243 37.0174 43.1575 36.4842 43.8153 36.4842H46.809C47.4668 36.4842 48 37.0174 48 37.6753C48 38.3331 47.4668 38.8664 46.809 38.8664ZM20.1828 27.5158H17.191C16.5332 27.5158 16 26.9826 16 26.3247C16 25.6669 16.5332 25.1336 17.191 25.1336H20.1828C20.8406 25.1336 21.3738 25.6669 21.3738 26.3247C21.3738 26.9826 20.8406 27.5158 20.1828 27.5158ZM20.1828 33.1911H17.191C16.5332 33.1911 16 32.6578 16 32C16 31.3422 16.5332 30.8089 17.191 30.8089H20.1828C20.8406 30.8089 21.3738 31.3422 21.3738 32C21.3738 32.6578 20.8406 33.1911 20.1828 33.1911ZM20.1828 38.8664H17.191C16.5332 38.8664 16 38.3331 16 37.6753C16 37.0174 16.5332 36.4842 17.191 36.4842H20.1828C20.8406 36.4842 21.3738 37.0174 21.3738 37.6753C21.3738 38.3331 20.8406 38.8664 20.1828 38.8664Z" fill="white"/>
|
|
||||||
<path d="M24.8506 31.6596C24.8506 32.4116 25.4602 33.0213 26.2123 33.0213C26.9643 33.0213 27.574 32.4116 27.574 31.6596C27.574 30.9075 26.9643 30.2979 26.2123 30.2979C25.4602 30.2979 24.8506 30.9075 24.8506 31.6596Z" fill="white"/>
|
|
||||||
<path d="M30.2979 31.6596C30.2979 32.4116 30.9075 33.0213 31.6596 33.0213C32.4116 33.0213 33.0213 32.4116 33.0213 31.6596C33.0213 30.9075 32.4116 30.2979 31.6596 30.2979C30.9075 30.2979 30.2979 30.9075 30.2979 31.6596Z" fill="white"/>
|
|
||||||
<path d="M36.4258 31.6596C36.4258 32.4116 37.0354 33.0213 37.7875 33.0213C38.5395 33.0213 39.1492 32.4116 39.1492 31.6596C39.1492 30.9075 38.5395 30.2979 37.7875 30.2979C37.0354 30.2979 36.4258 30.9075 36.4258 31.6596Z" fill="white"/>
|
|
||||||
</g>
|
|
||||||
<defs>
|
|
||||||
<clipPath id="clip0_91_283">
|
|
||||||
<rect width="64" height="64" fill="white"/>
|
|
||||||
</clipPath>
|
|
||||||
</defs>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 4.0 KiB |
@ -1,4 +0,0 @@
|
|||||||
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="M32 64C49.6731 64 64 49.6731 64 32C64 14.3269 49.6731 0 32 0C14.3269 0 0 14.3269 0 32C0 49.6731 14.3269 64 32 64Z" fill="#8BCF70"/>
|
|
||||||
<path d="M40.0569 43.9927H23.5838C19.581 44.1679 16.1881 41.1691 16.0076 37.292C15.8254 33.4157 18.9232 30.1304 22.926 29.9543C22.9153 25.2439 26.6834 21.3341 31.5368 21.02C36.3902 20.7069 40.6613 24.0966 41.2969 28.7672C45.3876 29.3776 48.3006 32.9407 47.9752 36.9364C47.6499 40.9329 44.1965 44.0104 40.0569 43.9927ZM24.5455 41.4398H40.0569C41.9405 41.4398 43.6809 40.4667 44.6223 38.8878C45.5639 37.3151 45.5639 35.3555 44.6223 33.7828C43.68 32.203 41.9405 31.2299 40.0569 31.2308C39.7075 31.2308 39.3724 31.0963 39.1253 30.8566C38.8791 30.6203 38.7396 30.2948 38.7386 29.9543C38.7386 26.4302 35.7893 23.573 32.1501 23.573C28.5109 23.573 25.5607 26.4302 25.5607 29.9543V30.2224C28.6763 31.0822 30.8265 33.8359 30.8319 36.9735C30.8319 37.4291 30.5812 37.851 30.1732 38.0793C29.7637 38.3074 29.2645 38.3074 28.8549 38.0793C28.4507 37.8564 28.1991 37.4334 28.1972 36.9735C28.1972 34.5117 26.1393 32.5135 23.5971 32.5064C21.0495 32.5064 18.9846 34.5064 18.9846 36.9735C18.9846 39.4397 21.0495 41.4407 23.5971 41.4407H24.1109C24.2549 41.4168 24.4024 41.4168 24.5464 41.4407L24.5455 41.4398Z" fill="white"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.3 KiB |
@ -1,12 +0,0 @@
|
|||||||
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g clip-path="url(#clip0_91_565)">
|
|
||||||
<path d="M32 64C49.6731 64 64 49.6731 64 32C64 14.3269 49.6731 0 32 0C14.3269 0 0 14.3269 0 32C0 49.6731 14.3269 64 32 64Z" fill="#8BCF70"/>
|
|
||||||
<path d="M42.9892 33.3683C43.0234 33.4074 43.0569 33.4472 43.0894 33.4877C43.5121 34.0145 43.7644 34.6482 43.7644 35.348C43.7644 36.0479 43.512 36.6817 43.0894 37.2084C42.7859 37.5867 42.4062 37.898 41.9588 38.1678C41.2695 38.5834 40.383 38.918 39.3206 39.1889C37.3444 39.6929 34.75 39.9728 32.0004 39.9728C29.2508 39.9728 26.6564 39.6929 24.6801 39.1889C23.6177 38.918 22.7313 38.5834 22.042 38.1678C21.5946 37.898 21.2149 37.5867 20.9114 37.2084C20.494 36.6882 20.2427 36.0637 20.2363 35.3743V35.348H22.3998C22.3998 36.7002 26.6981 37.7964 32.0004 37.7964C37.2496 37.7964 41.5149 36.7221 41.5996 35.3886L41.6009 35.348H42.9891L42.9892 33.3683ZM42.9892 27.3218C43.0234 27.3608 43.0569 27.4006 43.0894 27.4411C43.5121 27.9679 43.7644 28.6016 43.7644 29.3015C43.7644 30.0014 43.512 30.6351 43.0894 31.1618C42.7859 31.5401 42.4062 31.8514 41.9588 32.1212C41.2695 32.5368 40.383 32.8714 39.3206 33.1423C37.3444 33.6464 34.75 33.9262 32.0004 33.9262C29.2508 33.9262 26.6564 33.6464 24.6801 33.1423C23.6177 32.8714 22.7313 32.5368 22.042 32.1212C21.5946 31.8514 21.2149 31.5401 20.9114 31.1618C20.494 30.6417 20.2427 30.0172 20.2363 29.3277V29.3015H22.3998C22.3998 30.6537 26.6981 31.7499 32.0004 31.7499C37.2496 31.7499 41.5149 30.6755 41.5996 29.342L41.6009 29.3015H42.9891L42.9892 27.3218Z" fill="white"/>
|
|
||||||
<path d="M32 18C34.7628 18 37.3716 18.2855 39.3656 18.8013C40.4482 19.0814 41.3553 19.4288 42.0685 19.865C42.5399 20.1534 42.9424 20.4882 43.2671 20.8987C43.7251 21.4777 44 22.178 44 22.9533V40.7715H43.9883C43.9961 40.8621 44 40.9538 44 41.0467C44 41.822 43.7251 42.5223 43.2671 43.1013C42.9424 43.5118 42.5399 43.8466 42.0684 44.135C41.3554 44.5712 40.4482 44.9186 39.3656 45.1987C37.3716 45.7145 34.7628 46 32 46C29.2372 46 26.6284 45.7145 24.6344 45.1987C23.5518 44.9186 22.6447 44.5712 21.9315 44.135C21.4601 43.8466 21.0576 43.5118 20.7329 43.1013C20.2749 42.5223 20 41.822 20 41.0467C20 40.9538 20.0039 40.8621 20.0117 40.7715H20V22.9533V22.9263C20.0064 22.1617 20.2802 21.471 20.7329 20.8987C21.0576 20.4882 21.4601 20.1534 21.9316 19.865C22.6446 19.4288 23.5518 19.0814 24.6344 18.8013C26.6284 18.2855 29.2372 18 32 18ZM22.3933 41.0467L22.3945 41.0876C22.4792 42.4366 26.7398 43.5233 31.9831 43.5233C37.2795 43.5233 41.573 42.4145 41.573 41.0467V26.3152C40.9503 26.6265 40.2115 26.8864 39.3656 27.1053C37.3716 27.6211 34.7628 27.9066 32 27.9066C29.2372 27.9066 26.6284 27.6212 24.6344 27.1053C23.7732 26.8825 23.0231 26.6171 22.3933 26.2983V41.0467ZM32 20.4767C26.713 20.4767 22.427 21.5855 22.427 22.9533C22.427 24.3212 26.713 25.43 32 25.43C37.287 25.43 41.573 24.3212 41.573 22.9533C41.573 21.5855 37.287 20.4767 32 20.4767Z" fill="white"/>
|
|
||||||
</g>
|
|
||||||
<defs>
|
|
||||||
<clipPath id="clip0_91_565">
|
|
||||||
<rect width="64" height="64" fill="white"/>
|
|
||||||
</clipPath>
|
|
||||||
</defs>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 3.0 KiB |
@ -1,12 +0,0 @@
|
|||||||
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g clip-path="url(#clip0_91_585)">
|
|
||||||
<path d="M32 64C49.6731 64 64 49.6731 64 32C64 14.3269 49.6731 0 32 0C14.3269 0 0 14.3269 0 32C0 49.6731 14.3269 64 32 64Z" fill="#8BCF70"/>
|
|
||||||
<path d="M40.68 43.4737C40.8346 43.4737 40.96 43.5994 40.96 43.7544V45.7193C40.96 45.8743 40.8346 46 40.68 46H23.32C23.1654 46 23.04 45.8743 23.04 45.7193V43.7544C23.04 43.5994 23.1654 43.4737 23.32 43.4737H40.68ZM44.88 18C45.4986 18 46 18.5027 46 19.1228V39.4737C46 40.0938 45.4986 40.5965 44.88 40.5965H19.12C18.5014 40.5965 18 40.0938 18 39.4737V19.1228C18 18.5027 18.5014 18 19.12 18H44.88ZM43.48 20.5263H20.52V38.0702H43.48V20.5263Z" fill="white"/>
|
|
||||||
<path d="M26.1735 30.0116L29.7048 25.0115C29.7494 24.9484 29.818 24.9066 29.8944 24.8958C29.9708 24.885 30.0482 24.9064 30.1084 24.9547L36.4046 30.0116H40.8204C40.9751 30.0116 41.1004 30.1373 41.1004 30.2923V31.6958C41.1004 31.8509 40.9751 31.9765 40.8204 31.9765H35.8146C35.7509 31.9765 35.6892 31.9548 35.6395 31.9149L30.2743 27.6056L27.271 31.858C27.2185 31.9323 27.1333 31.9765 27.0425 31.9765H22.9704C22.8158 31.9765 22.6904 31.8508 22.6904 31.6958V30.2923C22.6904 30.1373 22.8158 30.0116 22.9704 30.0116L26.1735 30.0116Z" fill="white"/>
|
|
||||||
</g>
|
|
||||||
<defs>
|
|
||||||
<clipPath id="clip0_91_585">
|
|
||||||
<rect width="64" height="64" fill="white"/>
|
|
||||||
</clipPath>
|
|
||||||
</defs>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.3 KiB |
@ -1,7 +0,0 @@
|
|||||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="M22.8958 28.5958H9.10042C5.95861 28.5958 3.40234 26.0395 3.40234 22.8977V9.10237C3.40234 5.96056 5.95861 3.4043 9.10042 3.4043H22.8958C26.0376 3.4043 28.5938 5.96056 28.5938 9.10237V22.8977C28.5938 26.0395 26.0376 28.5958 22.8958 28.5958ZM9.10042 5.80349C7.27935 5.80555 5.8036 7.2813 5.80153 9.10237V22.8977C5.8036 24.7188 7.27935 26.1945 9.10042 26.1966H22.8958C24.7168 26.1945 26.1926 24.7188 26.1946 22.8977V9.10237C26.1926 7.2813 24.7168 5.80555 22.8958 5.80349H9.10042Z" fill="white"/>
|
|
||||||
<path d="M10.3241 5.37415C9.66632 5.37415 9.13307 4.84087 9.13307 4.18304V1.19111C9.13307 0.53328 9.66632 0 10.3241 0C10.9819 0 11.5152 0.53328 11.5152 1.19111V4.18304C11.5152 4.84087 10.9819 5.37415 10.3241 5.37415ZM15.9991 5.37415C15.3413 5.37415 14.808 4.84087 14.808 4.18304V1.19111C14.808 0.53328 15.3413 0 15.9991 0C16.6569 0 17.1901 0.53328 17.1901 1.19111V4.18304C17.1901 4.84087 16.6569 5.37415 15.9991 5.37415ZM21.674 5.37415C21.0162 5.37415 20.483 4.84087 20.483 4.18304V1.19111C20.483 0.53328 21.0162 0 21.674 0C22.3318 0 22.8651 0.53328 22.8651 1.19111V4.18304C22.8651 4.84087 22.3318 5.37415 21.674 5.37415ZM10.3241 32C9.66632 32 9.13307 31.4667 9.13307 30.8089V27.817C9.13307 27.1591 9.66632 26.6258 10.3241 26.6258C10.9819 26.6258 11.5152 27.1591 11.5152 27.817V30.8089C11.5152 31.4667 10.9819 32 10.3241 32ZM15.9991 32C15.3413 32 14.808 31.4667 14.808 30.8089V27.817C14.808 27.1591 15.3413 26.6258 15.9991 26.6258C16.6569 26.6258 17.1901 27.1591 17.1901 27.817V30.8089C17.1901 31.4667 16.6569 32 15.9991 32ZM21.674 32C21.0162 32 20.483 31.4667 20.483 30.8089V27.817C20.483 27.1591 21.0162 26.6258 21.674 26.6258C22.3318 26.6258 22.8651 27.1591 22.8651 27.817V30.8089C22.8651 31.4667 22.3318 32 21.674 32ZM30.809 11.5158H27.8153C27.1575 11.5158 26.6243 10.9826 26.6243 10.3247C26.6243 9.66688 27.1575 9.13361 27.8153 9.13361H30.809C31.4668 9.13361 32 9.66688 32 10.3247C32 10.9826 31.4668 11.5158 30.809 11.5158ZM30.809 17.1911H27.8153C27.1575 17.1911 26.6243 16.6578 26.6243 16C26.6243 15.3422 27.1575 14.8089 27.8153 14.8089H30.809C31.4668 14.8089 32 15.3422 32 16C32 16.6578 31.4668 17.1911 30.809 17.1911ZM30.809 22.8664H27.8153C27.1575 22.8664 26.6243 22.3331 26.6243 21.6753C26.6243 21.0174 27.1575 20.4842 27.8153 20.4842H30.809C31.4668 20.4842 32 21.0174 32 21.6753C32 22.3331 31.4668 22.8664 30.809 22.8664ZM4.1828 11.5158H1.19104C0.533248 11.5158 0 10.9826 0 10.3247C0 9.66688 0.533248 9.13361 1.19104 9.13361H4.1828C4.84059 9.13361 5.37384 9.66688 5.37384 10.3247C5.37384 10.9826 4.84059 11.5158 4.1828 11.5158ZM4.1828 17.1911H1.19104C0.533248 17.1911 0 16.6578 0 16C0 15.3422 0.533248 14.8089 1.19104 14.8089H4.1828C4.84059 14.8089 5.37384 15.3422 5.37384 16C5.37384 16.6578 4.84059 17.1911 4.1828 17.1911ZM4.1828 22.8664H1.19104C0.533248 22.8664 0 22.3331 0 21.6753C0 21.0174 0.533248 20.4842 1.19104 20.4842H4.1828C4.84059 20.4842 5.37384 21.0174 5.37384 21.6753C5.37384 22.3331 4.84059 22.8664 4.1828 22.8664Z" fill="white"/>
|
|
||||||
<path d="M8.85156 15.6596C8.85156 16.4116 9.46122 17.0213 10.2133 17.0213C10.9653 17.0213 11.575 16.4116 11.575 15.6596C11.575 14.9075 10.9653 14.2979 10.2133 14.2979C9.46122 14.2979 8.85156 14.9075 8.85156 15.6596Z" fill="white"/>
|
|
||||||
<path d="M14.2969 15.6596C14.2969 16.4116 14.9065 17.0213 15.6586 17.0213C16.4106 17.0213 17.0203 16.4116 17.0203 15.6596C17.0203 14.9075 16.4106 14.2979 15.6586 14.2979C14.9065 14.2979 14.2969 14.9075 14.2969 15.6596Z" fill="white"/>
|
|
||||||
<path d="M20.4258 15.6596C20.4258 16.4116 21.0354 17.0213 21.7875 17.0213C22.5395 17.0213 23.1492 16.4116 23.1492 15.6596C23.1492 14.9075 22.5395 14.2979 21.7875 14.2979C21.0354 14.2979 20.4258 14.9075 20.4258 15.6596Z" fill="white"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 3.7 KiB |
@ -1,3 +0,0 @@
|
|||||||
<svg width="32" height="23" viewBox="0 0 32 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="M24.0569 22.9927H7.58375C3.58103 23.1679 0.188091 20.1691 0.00764439 16.292C-0.17458 12.4157 2.92324 9.13038 6.92597 8.95435C6.9153 4.24394 10.6834 0.334076 15.5368 0.0200483C20.3902 -0.293095 24.6613 3.09663 25.2969 7.76724C29.3876 8.3776 32.3006 11.9407 31.9752 15.9364C31.6499 19.9329 28.1965 23.0104 24.0569 22.9927ZM8.54555 20.4398H24.0569C25.9405 20.4398 27.6809 19.4667 28.6223 17.8878C29.5639 16.3151 29.5639 14.3555 28.6223 12.7828C27.68 11.203 25.9405 10.2299 24.0569 10.2308C23.7075 10.2308 23.3724 10.0963 23.1253 9.85663C22.8791 9.62027 22.7396 9.29477 22.7386 8.95435C22.7386 5.43017 19.7893 2.57296 16.1501 2.57296C12.5109 2.57296 9.56067 5.43017 9.56067 8.95435V9.22238C12.6763 10.0822 14.8265 12.8359 14.8319 15.9735C14.8319 16.4291 14.5812 16.851 14.1732 17.0793C13.7637 17.3074 13.2645 17.3074 12.8549 17.0793C12.4507 16.8564 12.1991 16.4334 12.1972 15.9735C12.1972 13.5117 10.1393 11.5135 7.59709 11.5064C5.04949 11.5064 2.98458 13.5064 2.98458 15.9735C2.98458 18.4397 5.04949 20.4407 7.59709 20.4407H8.11087C8.25488 20.4168 8.40243 20.4168 8.54643 20.4407L8.54555 20.4398Z" fill="white"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.2 KiB |
@ -1,4 +0,0 @@
|
|||||||
<svg width="24" height="28" viewBox="0 0 24 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="M22.9872 15.3683C23.0215 15.4074 23.0549 15.4472 23.0874 15.4877C23.5101 16.0145 23.7625 16.6482 23.7625 17.348C23.7625 18.0479 23.5101 18.6817 23.0874 19.2084C22.7839 19.5867 22.4042 19.898 21.9568 20.1678C21.2675 20.5834 20.3811 20.918 19.3187 21.1889C17.3424 21.6929 14.748 21.9728 11.9984 21.9728C9.2488 21.9728 6.65444 21.6929 4.67815 21.1889C3.61578 20.918 2.72933 20.5834 2.04004 20.1678C1.5926 19.898 1.21291 19.5867 0.909409 19.2084C0.492038 18.6882 0.240712 18.0637 0.234375 17.3743V17.348H2.39788C2.39788 18.7002 6.69617 19.7964 11.9984 19.7964C17.2476 19.7964 21.5129 18.7221 21.5977 17.3886L21.599 17.348H22.9872L22.9872 15.3683ZM22.9872 9.32178C23.0215 9.3608 23.0549 9.4006 23.0874 9.44114C23.5101 9.96791 23.7625 10.6016 23.7625 11.3015C23.7625 12.0014 23.5101 12.6351 23.0874 13.1618C22.7839 13.5401 22.4042 13.8514 21.9568 14.1212C21.2675 14.5368 20.3811 14.8714 19.3187 15.1423C17.3424 15.6464 14.748 15.9262 11.9984 15.9262C9.2488 15.9262 6.65444 15.6464 4.67815 15.1423C3.61578 14.8714 2.72933 14.5368 2.04004 14.1212C1.5926 13.8514 1.21291 13.5401 0.909409 13.1618C0.492038 12.6417 0.240712 12.0172 0.234375 11.3277V11.3015H2.39788C2.39788 12.6537 6.69617 13.7499 11.9984 13.7499C17.2476 13.7499 21.5129 12.6755 21.5977 11.342L21.599 11.3015H22.9872L22.9872 9.32178Z" fill="white"/>
|
|
||||||
<path d="M12 0C14.7628 0 17.3716 0.285469 19.3656 0.801337C20.4482 1.08144 21.3553 1.42883 22.0685 1.86499C22.5399 2.15335 22.9424 2.48818 23.2671 2.89865C23.7251 3.47771 24 4.17799 24 4.95332V22.7715H23.9883C23.9961 22.8621 24 22.9538 24 23.0467C24 23.822 23.7251 24.5223 23.2671 25.1013C22.9424 25.5118 22.5399 25.8466 22.0684 26.135C21.3554 26.5712 20.4482 26.9186 19.3656 27.1987C17.3716 27.7145 14.7628 28 12 28C9.23724 28 6.62845 27.7145 4.63443 27.1987C3.55176 26.9186 2.64465 26.5712 1.93153 26.135C1.46012 25.8466 1.05758 25.5118 0.73291 25.1013C0.274888 24.5223 0 23.822 0 23.0467C0 22.9538 0.00394382 22.8621 0.0116629 22.7715H0V4.95332V4.92631C0.00640449 4.16175 0.280213 3.47097 0.73291 2.89865C1.05758 2.48818 1.46012 2.15335 1.93156 1.86499C2.64462 1.42883 3.55176 1.08144 4.63443 0.801337C6.62845 0.285504 9.23724 0 12 0ZM2.39326 23.0467L2.39454 23.0876C2.47921 24.4366 6.73975 25.5233 11.9831 25.5233C17.2795 25.5233 21.573 24.4145 21.573 23.0467V8.31524C20.9503 8.62651 20.2115 8.88642 19.3656 9.1053C17.3716 9.62113 14.7628 9.90663 12 9.90663C9.23724 9.90663 6.62845 9.62116 4.63443 9.1053C3.77319 8.88247 3.02306 8.61709 2.39326 8.29832V23.0467ZM12 2.47666C6.71295 2.47666 2.42697 3.58548 2.42697 4.95332C2.42697 6.32115 6.71295 7.42998 12 7.42998C17.287 7.42998 21.573 6.32115 21.573 4.95332C21.573 3.58548 17.287 2.47666 12 2.47666Z" fill="white"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 314 KiB |
@ -1,10 +0,0 @@
|
|||||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g clip-path="url(#clip0_1358_323)">
|
|
||||||
<path d="M1.66699 9.32L7.47699 15.12L17.667 5" stroke="#F3474C" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
||||||
</g>
|
|
||||||
<defs>
|
|
||||||
<clipPath id="clip0_1358_323">
|
|
||||||
<rect width="20" height="20" fill="white"/>
|
|
||||||
</clipPath>
|
|
||||||
</defs>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 377 B |
|
Before Width: | Height: | Size: 6.9 KiB |
@ -1,76 +0,0 @@
|
|||||||
<svg width="528" height="240" viewBox="0 0 528 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g clip-path="url(#clip0_1358_671)">
|
|
||||||
<rect width="528" height="240" rx="20" fill="#F8F6F6"/>
|
|
||||||
<rect x="50" y="96" width="501" height="351" rx="10" fill="#F8D7CF"/>
|
|
||||||
<rect x="76" y="114" width="463" height="314" fill="#F5FAFA"/>
|
|
||||||
<path d="M169 181H522" stroke="#E7E9E4" stroke-width="2" stroke-dasharray="12 12"/>
|
|
||||||
<path d="M169 220H522" stroke="#E7E9E4" stroke-width="2" stroke-dasharray="12 12"/>
|
|
||||||
<rect x="124.5" y="156.5" width="414" height="133" rx="8.5" stroke="#E7E9E4"/>
|
|
||||||
<rect x="492" y="191" width="18" height="64" rx="9" fill="url(#paint0_linear_1358_671)"/>
|
|
||||||
<rect x="401" y="191" width="18" height="64" rx="9" fill="url(#paint1_linear_1358_671)"/>
|
|
||||||
<rect x="446" y="209" width="18" height="64" rx="9" fill="url(#paint2_linear_1358_671)"/>
|
|
||||||
<rect x="176" y="209" width="18" height="64" rx="9" fill="url(#paint3_linear_1358_671)"/>
|
|
||||||
<rect x="221" y="177" width="18" height="64" rx="9" fill="url(#paint4_linear_1358_671)"/>
|
|
||||||
<rect x="266" y="191" width="18" height="64" rx="9" fill="url(#paint5_linear_1358_671)"/>
|
|
||||||
<rect x="311" y="209" width="18" height="64" rx="9" fill="url(#paint6_linear_1358_671)"/>
|
|
||||||
<rect x="356" y="182" width="18" height="64" rx="9" fill="url(#paint7_linear_1358_671)"/>
|
|
||||||
<mask id="path-15-inside-1_1358_671" fill="white">
|
|
||||||
<path d="M305 114C305 101.524 302.543 89.171 297.769 77.6451C292.994 66.1191 285.997 55.6464 277.175 46.8249C268.354 38.0033 257.881 31.0056 246.355 26.2314C234.829 21.4572 222.476 19 210 19C197.524 19 185.171 21.4572 173.645 26.2314C162.119 31.0056 151.646 38.0033 142.825 46.8249C134.003 55.6464 127.006 66.1191 122.231 77.6451C117.457 89.171 115 101.524 115 114H149.013C149.013 105.991 150.591 98.0606 153.655 90.6613C156.72 83.262 161.213 76.5389 166.876 70.8757C172.539 65.2126 179.262 60.7203 186.661 57.6554C194.061 54.5906 201.991 53.0131 210 53.0131C218.009 53.0131 225.939 54.5906 233.339 57.6554C240.738 60.7203 247.461 65.2126 253.124 70.8757C258.787 76.5389 263.28 83.262 266.345 90.6613C269.409 98.0606 270.987 105.991 270.987 114H305Z"/>
|
|
||||||
</mask>
|
|
||||||
<path d="M305 114C305 101.524 302.543 89.171 297.769 77.6451C292.994 66.1191 285.997 55.6464 277.175 46.8249C268.354 38.0033 257.881 31.0056 246.355 26.2314C234.829 21.4572 222.476 19 210 19C197.524 19 185.171 21.4572 173.645 26.2314C162.119 31.0056 151.646 38.0033 142.825 46.8249C134.003 55.6464 127.006 66.1191 122.231 77.6451C117.457 89.171 115 101.524 115 114H149.013C149.013 105.991 150.591 98.0606 153.655 90.6613C156.72 83.262 161.213 76.5389 166.876 70.8757C172.539 65.2126 179.262 60.7203 186.661 57.6554C194.061 54.5906 201.991 53.0131 210 53.0131C218.009 53.0131 225.939 54.5906 233.339 57.6554C240.738 60.7203 247.461 65.2126 253.124 70.8757C258.787 76.5389 263.28 83.262 266.345 90.6613C269.409 98.0606 270.987 105.991 270.987 114H305Z" stroke="#52459F" stroke-width="68" mask="url(#path-15-inside-1_1358_671)"/>
|
|
||||||
<mask id="path-16-inside-2_1358_671" fill="white">
|
|
||||||
<path d="M305 114C305 88.8044 294.991 64.6408 277.175 46.8249C259.359 29.0089 235.196 19 210 19C184.804 19 160.641 29.0089 142.825 46.8248C125.009 64.6408 115 88.8044 115 114L149.03 114C149.03 97.8297 155.454 82.3218 166.888 70.8877C178.322 59.4536 193.83 53.03 210 53.03C226.17 53.03 241.678 59.4536 253.112 70.8877C264.546 82.3218 270.97 97.8298 270.97 114H305Z"/>
|
|
||||||
</mask>
|
|
||||||
<path d="M305 114C305 88.8044 294.991 64.6408 277.175 46.8249C259.359 29.0089 235.196 19 210 19C184.804 19 160.641 29.0089 142.825 46.8248C125.009 64.6408 115 88.8044 115 114L149.03 114C149.03 97.8297 155.454 82.3218 166.888 70.8877C178.322 59.4536 193.83 53.03 210 53.03C226.17 53.03 241.678 59.4536 253.112 70.8877C264.546 82.3218 270.97 97.8298 270.97 114H305Z" stroke="#FF7155" stroke-width="68" mask="url(#path-16-inside-2_1358_671)"/>
|
|
||||||
<mask id="path-17-inside-3_1358_671" fill="white">
|
|
||||||
<path d="M305 114C305 94.391 298.932 75.2623 287.629 59.2389C276.325 43.2155 260.341 31.0824 241.868 24.5045L230.452 56.5627C242.308 60.7844 252.567 68.5712 259.821 78.8549C267.076 89.1386 270.97 101.415 270.97 114H305Z"/>
|
|
||||||
</mask>
|
|
||||||
<path d="M305 114C305 94.391 298.932 75.2623 287.629 59.2389C276.325 43.2155 260.341 31.0824 241.868 24.5045L230.452 56.5627C242.308 60.7844 252.567 68.5712 259.821 78.8549C267.076 89.1386 270.97 101.415 270.97 114H305Z" stroke="#F3474C" stroke-width="68" mask="url(#path-17-inside-3_1358_671)"/>
|
|
||||||
<mask id="path-18-inside-4_1358_671" fill="white">
|
|
||||||
<path d="M305 114C305 99.5478 301.703 85.2861 295.359 72.3005C289.015 59.315 279.793 47.948 268.393 39.0648L247.476 65.9073C254.792 71.6085 260.711 78.9037 264.783 87.2377C268.854 95.5717 270.97 104.725 270.97 114H305Z"/>
|
|
||||||
</mask>
|
|
||||||
<path d="M305 114C305 99.5478 301.703 85.2861 295.359 72.3005C289.015 59.315 279.793 47.948 268.393 39.0648L247.476 65.9073C254.792 71.6085 260.711 78.9037 264.783 87.2377C268.854 95.5717 270.97 104.725 270.97 114H305Z" stroke="#EE61D4" stroke-width="68" mask="url(#path-18-inside-4_1358_671)"/>
|
|
||||||
<path opacity="0.8" d="M123.534 138.139C123.08 138.133 122.633 138.05 122.192 137.891C121.754 137.732 121.357 137.466 120.999 137.095C120.641 136.724 120.354 136.225 120.138 135.599C119.926 134.972 119.82 134.19 119.82 133.252C119.82 132.364 119.908 131.575 120.084 130.886C120.263 130.196 120.52 129.615 120.854 129.141C121.189 128.663 121.594 128.3 122.067 128.052C122.541 127.803 123.073 127.679 123.663 127.679C124.27 127.679 124.808 127.798 125.279 128.037C125.75 128.276 126.131 128.605 126.423 129.026C126.718 129.447 126.905 129.926 126.984 130.463H125.468C125.365 130.039 125.161 129.692 124.857 129.424C124.552 129.156 124.154 129.021 123.663 129.021C122.918 129.021 122.336 129.346 121.918 129.996C121.504 130.645 121.295 131.549 121.292 132.705H121.366C121.542 132.417 121.758 132.172 122.013 131.969C122.271 131.764 122.56 131.607 122.878 131.497C123.199 131.384 123.537 131.328 123.892 131.328C124.482 131.328 125.016 131.472 125.493 131.761C125.973 132.046 126.356 132.44 126.641 132.944C126.926 133.448 127.069 134.024 127.069 134.674C127.069 135.324 126.921 135.912 126.626 136.439C126.335 136.966 125.924 137.384 125.393 137.692C124.863 137.997 124.243 138.146 123.534 138.139ZM123.529 136.847C123.92 136.847 124.27 136.75 124.578 136.558C124.886 136.366 125.13 136.107 125.309 135.783C125.488 135.458 125.577 135.095 125.577 134.694C125.577 134.303 125.49 133.946 125.314 133.625C125.142 133.304 124.903 133.048 124.598 132.859C124.296 132.67 123.952 132.576 123.564 132.576C123.269 132.576 122.996 132.632 122.744 132.745C122.495 132.858 122.276 133.013 122.087 133.212C121.898 133.411 121.749 133.64 121.64 133.898C121.534 134.154 121.481 134.424 121.481 134.709C121.481 135.09 121.569 135.443 121.744 135.768C121.923 136.093 122.167 136.354 122.475 136.553C122.787 136.749 123.138 136.847 123.529 136.847ZM132.425 138.169C131.639 138.166 130.968 137.959 130.411 137.548C129.854 137.137 129.428 136.538 129.133 135.753C128.838 134.967 128.691 134.021 128.691 132.914C128.691 131.81 128.838 130.867 129.133 130.085C129.432 129.303 129.859 128.706 130.416 128.295C130.976 127.884 131.646 127.679 132.425 127.679C133.203 127.679 133.871 127.886 134.428 128.3C134.985 128.711 135.411 129.308 135.706 130.09C136.004 130.869 136.153 131.81 136.153 132.914C136.153 134.024 136.006 134.972 135.711 135.758C135.416 136.54 134.99 137.138 134.433 137.553C133.876 137.964 133.207 138.169 132.425 138.169ZM132.425 136.842C133.114 136.842 133.653 136.505 134.04 135.832C134.431 135.16 134.627 134.187 134.627 132.914C134.627 132.069 134.537 131.355 134.358 130.771C134.183 130.185 133.929 129.741 133.598 129.439C133.27 129.134 132.879 128.982 132.425 128.982C131.738 128.982 131.2 129.32 130.809 129.996C130.418 130.672 130.22 131.645 130.217 132.914C130.217 133.763 130.305 134.48 130.481 135.067C130.66 135.65 130.913 136.093 131.241 136.394C131.569 136.692 131.964 136.842 132.425 136.842ZM143.232 136.091V135.554C143.232 135.17 143.311 134.818 143.47 134.5C143.633 134.179 143.868 133.922 144.176 133.729C144.488 133.534 144.864 133.436 145.305 133.436C145.755 133.436 146.133 133.532 146.438 133.724C146.743 133.917 146.973 134.174 147.129 134.495C147.288 134.817 147.368 135.17 147.368 135.554V136.091C147.368 136.475 147.288 136.828 147.129 137.15C146.97 137.468 146.737 137.725 146.428 137.92C146.123 138.113 145.749 138.209 145.305 138.209C144.857 138.209 144.479 138.113 144.171 137.92C143.863 137.725 143.629 137.468 143.47 137.15C143.311 136.828 143.232 136.475 143.232 136.091ZM144.39 135.554V136.091C144.39 136.376 144.458 136.634 144.594 136.866C144.73 137.098 144.967 137.214 145.305 137.214C145.639 137.214 145.873 137.098 146.006 136.866C146.138 136.634 146.205 136.376 146.205 136.091V135.554C146.205 135.269 146.14 135.01 146.011 134.778C145.885 134.546 145.649 134.43 145.305 134.43C144.973 134.43 144.738 134.546 144.599 134.778C144.46 135.01 144.39 135.269 144.39 135.554ZM138.111 130.264V129.727C138.111 129.343 138.19 128.99 138.349 128.668C138.512 128.347 138.747 128.09 139.055 127.898C139.367 127.705 139.743 127.609 140.184 127.609C140.635 127.609 141.013 127.705 141.317 127.898C141.622 128.09 141.853 128.347 142.009 128.668C142.164 128.99 142.242 129.343 142.242 129.727V130.264C142.242 130.649 142.163 131.002 142.004 131.323C141.848 131.641 141.616 131.898 141.308 132.094C141.003 132.286 140.628 132.382 140.184 132.382C139.733 132.382 139.354 132.286 139.045 132.094C138.741 131.898 138.509 131.641 138.349 131.323C138.19 131.002 138.111 130.649 138.111 130.264ZM139.274 129.727V130.264C139.274 130.549 139.34 130.808 139.473 131.04C139.609 131.272 139.846 131.388 140.184 131.388C140.515 131.388 140.747 131.272 140.88 131.04C141.016 130.808 141.084 130.549 141.084 130.264V129.727C141.084 129.442 141.019 129.184 140.89 128.952C140.761 128.72 140.525 128.604 140.184 128.604C139.853 128.604 139.617 128.72 139.478 128.952C139.342 129.184 139.274 129.442 139.274 129.727ZM138.583 138L145.583 127.818H146.771L139.771 138H138.583Z" fill="black"/>
|
|
||||||
<path opacity="0.8" d="M279.524 138.139C278.841 138.139 278.232 138.022 277.695 137.786C277.161 137.551 276.738 137.224 276.427 136.807C276.119 136.386 275.953 135.899 275.93 135.345H277.491C277.511 135.647 277.612 135.909 277.794 136.131C277.98 136.349 278.222 136.518 278.52 136.638C278.818 136.757 279.15 136.817 279.514 136.817C279.915 136.817 280.27 136.747 280.578 136.608C280.89 136.469 281.133 136.275 281.309 136.026C281.485 135.774 281.572 135.484 281.572 135.156C281.572 134.815 281.485 134.515 281.309 134.256C281.137 133.995 280.883 133.789 280.548 133.64C280.217 133.491 279.816 133.416 279.345 133.416H278.485V132.163H279.345C279.723 132.163 280.054 132.095 280.339 131.96C280.628 131.824 280.853 131.635 281.016 131.393C281.178 131.147 281.259 130.861 281.259 130.533C281.259 130.218 281.188 129.944 281.045 129.712C280.906 129.477 280.707 129.293 280.449 129.161C280.194 129.028 279.892 128.962 279.544 128.962C279.213 128.962 278.903 129.023 278.614 129.146C278.329 129.265 278.097 129.437 277.918 129.663C277.739 129.885 277.643 130.152 277.63 130.463H276.143C276.16 129.913 276.322 129.429 276.631 129.011C276.942 128.594 277.353 128.267 277.864 128.032C278.374 127.797 278.941 127.679 279.564 127.679C280.217 127.679 280.78 127.807 281.254 128.062C281.732 128.314 282.099 128.65 282.358 129.071C282.62 129.492 282.749 129.953 282.746 130.453C282.749 131.023 282.59 131.507 282.268 131.905C281.95 132.303 281.526 132.569 280.996 132.705V132.785C281.672 132.888 282.196 133.156 282.567 133.59C282.941 134.024 283.127 134.563 283.124 135.206C283.127 135.766 282.971 136.268 282.656 136.712C282.345 137.156 281.919 137.506 281.379 137.761C280.838 138.013 280.22 138.139 279.524 138.139ZM288.866 127.818V138H287.325V129.359H287.265L284.829 130.95V129.479L287.369 127.818H288.866ZM296.935 136.091V135.554C296.935 135.17 297.014 134.818 297.173 134.5C297.336 134.179 297.571 133.922 297.879 133.729C298.191 133.534 298.567 133.436 299.008 133.436C299.459 133.436 299.836 133.532 300.141 133.724C300.446 133.917 300.677 134.174 300.832 134.495C300.991 134.817 301.071 135.17 301.071 135.554V136.091C301.071 136.475 300.991 136.828 300.832 137.15C300.673 137.468 300.44 137.725 300.131 137.92C299.826 138.113 299.452 138.209 299.008 138.209C298.56 138.209 298.183 138.113 297.874 137.92C297.566 137.725 297.332 137.468 297.173 137.15C297.014 136.828 296.935 136.475 296.935 136.091ZM298.093 135.554V136.091C298.093 136.376 298.161 136.634 298.297 136.866C298.433 137.098 298.67 137.214 299.008 137.214C299.343 137.214 299.576 137.098 299.709 136.866C299.841 136.634 299.908 136.376 299.908 136.091V135.554C299.908 135.269 299.843 135.01 299.714 134.778C299.588 134.546 299.353 134.43 299.008 134.43C298.676 134.43 298.441 134.546 298.302 134.778C298.163 135.01 298.093 135.269 298.093 135.554ZM291.814 130.264V129.727C291.814 129.343 291.893 128.99 292.053 128.668C292.215 128.347 292.45 128.09 292.759 127.898C293.07 127.705 293.446 127.609 293.887 127.609C294.338 127.609 294.716 127.705 295.021 127.898C295.326 128.09 295.556 128.347 295.712 128.668C295.867 128.99 295.945 129.343 295.945 129.727V130.264C295.945 130.649 295.866 131.002 295.707 131.323C295.551 131.641 295.319 131.898 295.011 132.094C294.706 132.286 294.331 132.382 293.887 132.382C293.436 132.382 293.057 132.286 292.749 132.094C292.444 131.898 292.212 131.641 292.053 131.323C291.893 131.002 291.814 130.649 291.814 130.264ZM292.977 129.727V130.264C292.977 130.549 293.044 130.808 293.176 131.04C293.312 131.272 293.549 131.388 293.887 131.388C294.219 131.388 294.451 131.272 294.583 131.04C294.719 130.808 294.787 130.549 294.787 130.264V129.727C294.787 129.442 294.722 129.184 294.593 128.952C294.464 128.72 294.228 128.604 293.887 128.604C293.556 128.604 293.32 128.72 293.181 128.952C293.045 129.184 292.977 129.442 292.977 129.727ZM292.286 138L299.286 127.818H300.474L293.474 138H292.286Z" fill="black"/>
|
|
||||||
<circle cx="210" cy="114" r="39" fill="#FEFEFD"/>
|
|
||||||
<circle cx="210" cy="114" r="30" fill="#F1F6FF"/>
|
|
||||||
<path d="M202.48 126.757C207.533 129.897 213.885 128.197 216.699 122.952C217.68 121.123 218.054 119.027 218.041 117.106L217.825 102.714C217.826 101.783 217.261 100.966 216.552 100.526C215.842 100.085 214.939 99.9891 214.155 100.433L202.47 107.421C200.911 108.366 199.434 109.735 198.436 111.595C195.622 116.84 197.427 123.617 202.48 126.757ZM209.068 114.476C210.903 115.617 211.567 118.104 210.546 120.009C209.524 121.914 207.19 122.538 205.355 121.398C203.52 120.258 202.856 117.77 203.878 115.865C204.903 113.954 207.233 113.336 209.068 114.476Z" fill="#FF7155"/>
|
|
||||||
</g>
|
|
||||||
<defs>
|
|
||||||
<linearGradient id="paint0_linear_1358_671" x1="506" y1="185" x2="521.937" y2="189.386" gradientUnits="userSpaceOnUse">
|
|
||||||
<stop stop-color="#FF7155"/>
|
|
||||||
<stop offset="0.497468" stop-color="#EF3E56"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="paint1_linear_1358_671" x1="415" y1="185" x2="430.937" y2="189.386" gradientUnits="userSpaceOnUse">
|
|
||||||
<stop stop-color="#FF7155"/>
|
|
||||||
<stop offset="0.497468" stop-color="#EF3E56"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="paint2_linear_1358_671" x1="460" y1="203" x2="475.937" y2="207.386" gradientUnits="userSpaceOnUse">
|
|
||||||
<stop stop-color="#FF7155"/>
|
|
||||||
<stop offset="0.497468" stop-color="#EF3E56"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="paint3_linear_1358_671" x1="190" y1="203" x2="205.937" y2="207.386" gradientUnits="userSpaceOnUse">
|
|
||||||
<stop stop-color="#FF7155"/>
|
|
||||||
<stop offset="0.497468" stop-color="#EF3E56"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="paint4_linear_1358_671" x1="235" y1="171" x2="250.937" y2="175.386" gradientUnits="userSpaceOnUse">
|
|
||||||
<stop stop-color="#FF7155"/>
|
|
||||||
<stop offset="0.497468" stop-color="#EF3E56"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="paint5_linear_1358_671" x1="280" y1="185" x2="295.937" y2="189.386" gradientUnits="userSpaceOnUse">
|
|
||||||
<stop stop-color="#FF7155"/>
|
|
||||||
<stop offset="0.497468" stop-color="#EF3E56"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="paint6_linear_1358_671" x1="325" y1="203" x2="340.937" y2="207.386" gradientUnits="userSpaceOnUse">
|
|
||||||
<stop stop-color="#FF7155"/>
|
|
||||||
<stop offset="0.497468" stop-color="#EF3E56"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="paint7_linear_1358_671" x1="370" y1="176" x2="385.937" y2="180.386" gradientUnits="userSpaceOnUse">
|
|
||||||
<stop stop-color="#FF7155"/>
|
|
||||||
<stop offset="0.497468" stop-color="#EF3E56"/>
|
|
||||||
</linearGradient>
|
|
||||||
<clipPath id="clip0_1358_671">
|
|
||||||
<rect width="528" height="240" rx="20" fill="white"/>
|
|
||||||
</clipPath>
|
|
||||||
</defs>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 16 KiB |
@ -1,77 +0,0 @@
|
|||||||
<svg width="528" height="240" viewBox="0 0 528 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g clip-path="url(#clip0_1358_723)">
|
|
||||||
<rect width="528" height="240" rx="20" fill="#F8F6F6"/>
|
|
||||||
<rect x="90" y="38" width="522" height="405" rx="10" fill="#F8D7CF"/>
|
|
||||||
<rect x="117" y="56" width="482" height="374" fill="#F5FAFA"/>
|
|
||||||
<rect x="137.5" y="74.5" width="450" height="105" rx="9.5" stroke="#EFF2F7"/>
|
|
||||||
<g filter="url(#filter0_d_1358_723)">
|
|
||||||
<rect x="155" y="92" width="70" height="70" rx="35" fill="#FF7155"/>
|
|
||||||
</g>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M193.564 127.063C196.749 125.768 198.974 122.816 198.974 119.381C198.974 114.752 194.934 111 189.949 111C184.964 111 180.923 114.752 180.923 119.381C180.923 122.816 183.149 125.768 186.334 127.063C180.383 128.655 176 134.085 176 140.538V143H203.897V140.538C203.897 134.085 199.515 128.655 193.564 127.063Z" fill="#DBE5FA"/>
|
|
||||||
<rect x="255" y="149" width="190" height="10" rx="5" fill="#E5E1E0"/>
|
|
||||||
<rect x="255" y="149" width="92" height="10" rx="5" fill="#F3474C"/>
|
|
||||||
<rect x="255" y="127" width="160" height="6" rx="3" fill="#E5E1E0"/>
|
|
||||||
<rect x="255" y="95" width="293" height="16" rx="8" fill="#E5E1E0"/>
|
|
||||||
<g filter="url(#filter1_d_1358_723)">
|
|
||||||
<rect x="47" y="146" width="445" height="106" rx="10" fill="white"/>
|
|
||||||
<rect x="47.5" y="146.5" width="444" height="105" rx="9.5" stroke="#EFF2F7"/>
|
|
||||||
</g>
|
|
||||||
<rect x="65.5" y="164.5" width="69" height="69" rx="9.5" fill="white" stroke="#E7E9E4"/>
|
|
||||||
<circle cx="100" cy="199" r="20" fill="url(#paint0_linear_1358_723)"/>
|
|
||||||
<rect x="165" y="221" width="228" height="10" rx="5" fill="#E5E1E0"/>
|
|
||||||
<rect x="165" y="221" width="163.2" height="10" rx="5" fill="url(#paint1_linear_1358_723)"/>
|
|
||||||
<rect x="165" y="199" width="124.8" height="6" rx="3" fill="#E5E1E0"/>
|
|
||||||
<rect x="165" y="167" width="304" height="16" rx="8" fill="#E5E1E0"/>
|
|
||||||
<g filter="url(#filter2_d_1358_723)">
|
|
||||||
<path d="M446.625 218.04L438.48 240.408L412.366 192.219L465.233 206.522L446.625 218.04Z" fill="#EE61D4"/>
|
|
||||||
<path d="M446.625 218.04L438.48 240.408L412.366 192.219L465.233 206.522L446.625 218.04Z" stroke="white" stroke-width="2"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<defs>
|
|
||||||
<filter id="filter0_d_1358_723" x="146" y="87" width="88" height="88" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<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 dy="4"/>
|
|
||||||
<feGaussianBlur stdDeviation="4.5"/>
|
|
||||||
<feComposite in2="hardAlpha" operator="out"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1358_723"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1358_723" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter1_d_1358_723" x="23" y="126" width="493" height="154" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<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"/>
|
|
||||||
<feMorphology radius="8" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_1358_723"/>
|
|
||||||
<feOffset dy="4"/>
|
|
||||||
<feGaussianBlur stdDeviation="8"/>
|
|
||||||
<feComposite in2="hardAlpha" operator="out"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1358_723"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1358_723" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter2_d_1358_723" x="386.375" y="170.645" width="105.344" height="100.194" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<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"/>
|
|
||||||
<feMorphology radius="8" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_1358_723"/>
|
|
||||||
<feOffset dy="4"/>
|
|
||||||
<feGaussianBlur stdDeviation="8"/>
|
|
||||||
<feComposite in2="hardAlpha" operator="out"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1358_723"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1358_723" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<linearGradient id="paint0_linear_1358_723" x1="82.9752" y1="169.739" x2="126.401" y2="180.913" gradientUnits="userSpaceOnUse">
|
|
||||||
<stop stop-color="#FF7155"/>
|
|
||||||
<stop offset="0.497468" stop-color="#EF3E56"/>
|
|
||||||
<stop offset="1" stop-color="#EE61D4"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="paint1_linear_1358_723" x1="177.139" y1="218.685" x2="187.277" y2="261.257" gradientUnits="userSpaceOnUse">
|
|
||||||
<stop stop-color="#FF7155"/>
|
|
||||||
<stop offset="0.497468" stop-color="#EF3E56"/>
|
|
||||||
<stop offset="1" stop-color="#EE61D4"/>
|
|
||||||
</linearGradient>
|
|
||||||
<clipPath id="clip0_1358_723">
|
|
||||||
<rect width="528" height="240" rx="20" fill="white"/>
|
|
||||||
</clipPath>
|
|
||||||
</defs>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 4.9 KiB |
@ -1,36 +0,0 @@
|
|||||||
<svg width="528" height="240" viewBox="0 0 528 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g clip-path="url(#clip0_1358_771)">
|
|
||||||
<rect width="528" height="240" rx="20" fill="#F8F6F6"/>
|
|
||||||
<path d="M168 42H258C264.627 42 270 47.3726 270 54V172" stroke="#F3474C" stroke-width="2" stroke-dasharray="6 6"/>
|
|
||||||
<rect x="240" y="98" width="353" height="288" rx="10" fill="#F8D7CF"/>
|
|
||||||
<rect x="258" y="116" width="326" height="260" fill="#F5FAFA"/>
|
|
||||||
<path d="M401.213 140.46L358.241 155.243V203.683C358.241 218.534 371.721 232.004 399.465 244.864L400.919 245.54L402.406 244.92C429.844 233.474 443.76 219.602 443.76 203.683V155.614L401.213 140.46ZM425.139 181.649L403.135 207.893C401.775 209.501 399.744 210.433 397.601 210.437C395.631 210.437 393.668 209.644 392.271 208.105L378.707 193.203C377.406 191.771 377.543 189.584 379.015 188.318C380.402 187.126 380.56 186.683 382.043 185.314C382.235 185.137 382.47 185.011 382.724 184.949L383.682 184.718L397.873 200.569L418.575 174.688C419.819 173.207 423.102 175.573 424.627 176.78C426.152 177.988 426.38 180.166 425.139 181.649Z" fill="url(#paint0_linear_1358_771)"/>
|
|
||||||
<rect x="-24" y="-22" width="205.917" height="168" rx="10" fill="#FCE3EC"/>
|
|
||||||
<rect x="-12" y="-10" width="181" height="144" fill="#F5FAFA"/>
|
|
||||||
<path d="M100.254 48.6899H57.7457C54.0742 48.6899 51.0981 51.6597 51.0981 55.3242V83.467C51.0981 87.1316 54.0742 90.1014 57.7457 90.1014H100.254C103.925 90.1014 106.902 87.1316 106.902 83.467V55.3242C106.902 51.6597 103.925 48.6899 100.254 48.6899ZM81.7993 69.2052V76.5921C81.7993 78.1377 80.5468 79.3919 78.9996 79.3919C77.4533 79.3919 76.1999 78.1377 76.1999 76.5921V69.2052C74.5282 68.2369 73.4002 66.4319 73.4002 64.3602C73.4002 61.2675 75.9069 58.7607 78.9996 58.7607C82.0923 58.7607 84.5999 61.2675 84.5999 64.3602C84.5999 66.4319 83.4728 68.2369 81.7993 69.2052ZM78.9996 22.0891C68.1754 22.0891 59.3999 30.7409 59.3999 42.108V50.8019L98.6003 52.6684V42.108C98.6003 30.7409 89.8248 22.0891 78.9996 22.0891ZM65.0028 50.3107V41.9134C65.0028 34.1843 71.2696 27.9166 78.9995 27.9166C86.7303 27.9166 92.9963 34.1843 92.9963 41.9134V50.5072L65.0028 50.3107Z" fill="#FF7155"/>
|
|
||||||
<g filter="url(#filter0_d_1358_771)">
|
|
||||||
<rect x="246" y="12" width="66" height="66" rx="10" fill="white"/>
|
|
||||||
</g>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M289.586 45.0006C289.856 44.1148 290 43.1802 290 42.2143C290 36.5731 285.075 32 279 32C272.925 32 268 36.5731 268 42.2143C268 43.1802 268.144 44.1148 268.414 45.0006C264.864 45.0465 262 47.9388 262 51.5C262 55.0899 264.91 58 268.5 58H289.5C293.09 58 296 55.0899 296 51.5C296 47.9388 293.136 45.0465 289.586 45.0006Z" fill="#F3474C"/>
|
|
||||||
</g>
|
|
||||||
<defs>
|
|
||||||
<filter id="filter0_d_1358_771" x="237" y="7" width="84" height="84" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<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 dy="4"/>
|
|
||||||
<feGaussianBlur stdDeviation="4.5"/>
|
|
||||||
<feComposite in2="hardAlpha" operator="out"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1358_771"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1358_771" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<linearGradient id="paint0_linear_1358_771" x1="364.602" y1="116.131" x2="459.434" y2="135.99" gradientUnits="userSpaceOnUse">
|
|
||||||
<stop stop-color="#FF7155"/>
|
|
||||||
<stop offset="0.497468" stop-color="#EF3E56"/>
|
|
||||||
<stop offset="1" stop-color="#EE61D4"/>
|
|
||||||
</linearGradient>
|
|
||||||
<clipPath id="clip0_1358_771">
|
|
||||||
<rect width="528" height="240" rx="20" fill="white"/>
|
|
||||||
</clipPath>
|
|
||||||
</defs>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 3.6 KiB |
@ -1,28 +0,0 @@
|
|||||||
<svg width="528" height="240" viewBox="0 0 528 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g clip-path="url(#clip0_1358_798)">
|
|
||||||
<rect width="528" height="240" rx="20" fill="#F8F6F6"/>
|
|
||||||
<rect x="117" y="31" width="372" height="15" fill="#E5E0E0"/>
|
|
||||||
<rect x="117" y="56" width="338.757" height="15" fill="#E5E0E0"/>
|
|
||||||
<rect x="117" y="81" width="300.766" height="15" fill="#E5E0E0"/>
|
|
||||||
<rect x="117" y="106" width="265.94" height="15" fill="#E5E0E0"/>
|
|
||||||
<rect x="32" y="31" width="63" height="90" rx="2" fill="#F3474C"/>
|
|
||||||
<circle cx="326" cy="61" r="25" transform="rotate(180 326 61)" fill="#FF7155"/>
|
|
||||||
<path d="M378.5 51.2588L366 31L420 40.3882L376 73L378.5 51.2588Z" fill="#F3474C" stroke="white" stroke-width="2"/>
|
|
||||||
<circle cx="242.922" cy="180.922" r="40.9219" fill="#E5E0E0"/>
|
|
||||||
<circle cx="347.5" cy="180.922" r="40.9219" fill="#EE61D4"/>
|
|
||||||
<circle cx="451.922" cy="180.922" r="40.9219" fill="url(#paint0_linear_1358_798)"/>
|
|
||||||
<circle cx="472" cy="181" r="4" fill="white"/>
|
|
||||||
<circle cx="457" cy="181" r="6" fill="white"/>
|
|
||||||
<circle cx="437" cy="181" r="9" fill="white"/>
|
|
||||||
</g>
|
|
||||||
<defs>
|
|
||||||
<linearGradient id="paint0_linear_1358_798" x1="417.088" y1="121.051" x2="505.941" y2="143.913" gradientUnits="userSpaceOnUse">
|
|
||||||
<stop stop-color="#FF7155"/>
|
|
||||||
<stop offset="0.497468" stop-color="#EF3E56"/>
|
|
||||||
<stop offset="1" stop-color="#EE61D4"/>
|
|
||||||
</linearGradient>
|
|
||||||
<clipPath id="clip0_1358_798">
|
|
||||||
<rect width="528" height="240" rx="20" fill="white"/>
|
|
||||||
</clipPath>
|
|
||||||
</defs>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 87 KiB |
|
Before Width: | Height: | Size: 154 KiB |
|
Before Width: | Height: | Size: 982 B |
|
Before Width: | Height: | Size: 2.1 KiB |
@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="M6.33058 17.8835C6.33058 18.4319 6.77823 18.8796 7.32898 18.8796H8.47043V21.7015C8.47043 22.4163 9.04462 22.9999 9.7501 22.9999C10.4579 22.9999 11.0298 22.4187 11.0298 21.7015V18.8773H13.022V21.6991C13.022 22.414 13.5962 22.9976 14.3017 22.9976C15.0095 22.9976 15.5813 22.4163 15.5813 21.6991V18.8773H16.7228C17.2736 18.8773 17.7212 18.4296 17.7212 17.8812V8.61865H6.33058V17.8835ZM14.7001 3.81866L15.7524 2.29522C15.8134 2.20616 15.7994 2.08662 15.7173 2.02803C15.6353 1.97178 15.5181 1.99991 15.4571 2.08897L14.3649 3.67335C13.6454 3.38975 12.8438 3.23272 12.0024 3.23272C11.161 3.23272 10.3595 3.38975 9.63994 3.67335L8.54773 2.09131C8.48683 2.00225 8.36963 1.97178 8.28758 2.03037C8.20558 2.08662 8.19148 2.20381 8.25243 2.29756L9.30478 3.821C7.63133 4.59912 6.45948 6.07337 6.30948 7.79602H17.7001C17.5454 6.07102 16.3712 4.59678 14.7001 3.81866ZM9.59776 6.22102C9.47308 6.22102 9.35116 6.18402 9.24748 6.11477C9.1438 6.04547 9.06298 5.94702 9.01528 5.83182C8.96758 5.71662 8.95508 5.58982 8.97938 5.46753C9.0037 5.34523 9.06376 5.2329 9.1519 5.14473C9.24016 5.05656 9.35242 4.9965 9.47476 4.97218C9.59704 4.94785 9.72382 4.96034 9.83902 5.00805C9.95422 5.05578 10.0527 5.13658 10.122 5.24026C10.1912 5.34394 10.2282 5.46584 10.2282 5.59052C10.2278 5.75762 10.1612 5.91772 10.0431 6.03587C9.92494 6.15402 9.76486 6.22057 9.59776 6.22102ZM14.4821 6.22102C14.3574 6.22102 14.2355 6.18402 14.1319 6.11477C14.0282 6.04547 13.9474 5.94702 13.8996 5.83182C13.8519 5.71662 13.8394 5.58982 13.8638 5.46753C13.8881 5.34523 13.9481 5.2329 14.0363 5.14473C14.1245 5.05656 14.2368 4.9965 14.3591 4.97218C14.4815 4.94785 14.6082 4.96034 14.7234 5.00805C14.8386 5.05578 14.9371 5.13658 15.0063 5.24026C15.0756 5.34394 15.1126 5.46584 15.1126 5.59052C15.1122 5.75762 15.0456 5.91772 14.9275 6.03587C14.8094 6.15402 14.6492 6.22057 14.4821 6.22102ZM19.7181 8.58115C19.0102 8.58115 18.4384 9.16243 18.4384 9.87961V14.9515C18.4384 15.6663 19.0126 16.2499 19.7181 16.2499C20.4259 16.2499 20.9978 15.6687 20.9978 14.9515V9.87727C21.0001 9.16009 20.4282 8.58115 19.7181 8.58115ZM4.28213 8.58115C3.57432 8.58115 3.00244 9.16243 3.00244 9.87961V14.9515C3.00244 15.6663 3.57666 16.2499 4.28213 16.2499C4.98994 16.2499 5.56183 15.6687 5.56183 14.9515V9.87727C5.56183 9.16009 4.9876 8.58115 4.28213 8.58115Z" fill="black"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.4 KiB |
@ -1,3 +0,0 @@
|
|||||||
<svg width="312" height="23" viewBox="0 0 312 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path opacity="0.5" d="M3 20C47.4822 7.1714 170.957 -10.7886 309 20" stroke="#8BCF70" stroke-width="6" stroke-linecap="round"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 233 B |
|
Before Width: | Height: | Size: 904 B |
@ -1,23 +0,0 @@
|
|||||||
<svg width="118" height="269" viewBox="0 0 118 269" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g opacity="0.7" clip-path="url(#clip0_797_4558)">
|
|
||||||
<path d="M-1.79758 164.632L-22.0763 144.303C-28.0315 138.333 -37.6868 138.333 -43.642 144.303L-63.9207 164.632C-69.8759 170.602 -69.8759 180.281 -63.9207 186.251L-43.642 206.58C-37.6868 212.55 -28.0315 212.55 -22.0763 206.58L-1.79757 186.251C4.15764 180.281 4.15763 170.602 -1.79758 164.632Z" stroke="#BAF2A4" stroke-width="2" stroke-miterlimit="10"/>
|
|
||||||
<path d="M41.2326 221.872L22.3762 202.969C16.0283 196.606 5.73615 196.606 -0.611831 202.969L-19.4682 221.872C-25.8162 228.236 -25.8162 238.554 -19.4682 244.917L-0.611842 263.82C5.73614 270.184 16.0282 270.184 22.3762 263.82L41.2326 244.917C47.5805 238.554 47.5805 228.236 41.2326 221.872Z" stroke="#D0F6C0" stroke-width="2" stroke-miterlimit="10"/>
|
|
||||||
<path d="M66.2934 75.269L-4.16804 4.63299C-10.516 -1.73072 -20.8081 -1.73072 -27.1561 4.63299L-97.6176 75.269C-103.966 81.6327 -103.966 91.9504 -97.6176 98.3141L-27.1561 168.95C-20.8081 175.314 -10.516 175.314 -4.16804 168.95L66.2934 98.3141C72.6414 91.9504 72.6414 81.6328 66.2934 75.269Z" stroke="#A5E18E" stroke-width="2" stroke-miterlimit="10"/>
|
|
||||||
<path d="M112.83 75.2697L92.2459 54.6348C85.8979 48.2711 75.6058 48.2711 69.2578 54.6348L48.674 75.2697C42.326 81.6334 42.326 91.9511 48.674 98.3148L69.2578 118.95C75.6058 125.313 85.8979 125.313 92.2459 118.95L112.83 98.3148C119.178 91.9511 119.178 81.6334 112.83 75.2697Z" stroke="#D0F6C0" stroke-width="2" stroke-miterlimit="10"/>
|
|
||||||
<path d="M77.2951 162.922L52.7436 138.31C49.0671 134.624 43.1064 134.624 39.4299 138.31L14.8783 162.922C11.2019 166.608 11.2019 172.583 14.8783 176.269L39.4299 200.881C43.1064 204.567 49.0671 204.567 52.7436 200.881L77.2951 176.269C80.9716 172.583 80.9716 166.608 77.2951 162.922Z" stroke="#B9EDA4" stroke-width="2" stroke-miterlimit="10"/>
|
|
||||||
<path d="M-3.42321 153.774L-23.7019 133.445C-29.6571 127.475 -39.3124 127.475 -45.2676 133.445L-65.5463 153.774C-71.5015 159.744 -71.5015 169.423 -65.5463 175.393L-45.2676 195.722C-39.3124 201.692 -29.6571 201.692 -23.7019 195.722L-3.42322 175.393C2.53199 169.423 2.532 159.744 -3.42321 153.774Z" fill="#BAF2A3"/>
|
|
||||||
<path d="M39.6069 211.014L20.7506 192.111C14.4026 185.747 4.11051 185.747 -2.23747 192.111L-21.0938 211.014C-27.4418 217.378 -27.4418 227.695 -21.0938 234.059L-2.23748 252.962C4.1105 259.326 14.4026 259.326 20.7506 252.962L39.6069 234.059C45.9549 227.695 45.9549 217.378 39.6069 211.014Z" fill="#D0F7C0"/>
|
|
||||||
<path d="M-28.7757 158.092L-99.2196 87.4739C-100.729 85.9611 -101.927 84.1649 -102.744 82.1881C-103.561 80.2112 -103.981 78.0923 -103.981 75.9525C-103.981 73.8127 -103.561 71.6938 -102.744 69.717C-101.927 67.7401 -100.729 65.9439 -99.2196 64.4311L-28.7554 -6.18732C-27.2463 -7.70064 -25.4546 -8.90109 -23.4826 -9.72012C-21.5106 -10.5391 -19.397 -10.9607 -17.2624 -10.9607C-15.1279 -10.9607 -13.0143 -10.5391 -11.0423 -9.72012C-9.07032 -8.90109 -7.2786 -7.70064 -5.7695 -6.18732L64.6744 64.4107C66.1839 65.9235 67.3814 67.7197 68.1984 69.6966C69.0154 71.6734 69.4359 73.7923 69.4359 75.9321C69.4359 78.0719 69.0154 80.1908 68.1984 82.1676C67.3814 84.1445 66.1839 85.9407 64.6744 87.4535L-5.7695 158.092C-7.27898 159.609 -9.07198 160.812 -11.0458 161.633C-13.0197 162.453 -15.1357 162.876 -17.2726 162.876C-19.4096 162.876 -21.5255 162.453 -23.4994 161.633C-25.4733 160.812 -27.2663 159.609 -28.7757 158.092Z" fill="#A4E28B"/>
|
|
||||||
<path d="M111.204 64.4115L90.6203 43.7766C84.2723 37.4129 73.9802 37.4129 67.6322 43.7766L47.0483 64.4115C40.7004 70.7752 40.7004 81.0928 47.0483 87.4565L67.6322 108.091C73.9802 114.455 84.2723 114.455 90.6203 108.091L111.204 87.4565C117.552 81.0928 117.552 70.7752 111.204 64.4115Z" fill="#D0F7C0"/>
|
|
||||||
<path d="M75.6695 152.064L51.118 127.452C47.4415 123.766 41.4807 123.766 37.8042 127.452L13.2527 152.064C9.57623 155.75 9.57623 161.725 13.2527 165.411L37.8042 190.023C41.4807 193.709 47.4415 193.709 51.118 190.023L75.6695 165.411C79.346 161.725 79.346 155.75 75.6695 152.064Z" fill="#B9EDA4"/>
|
|
||||||
<path d="M104.725 134.602L96.3927 126.249C93.5256 123.375 88.8771 123.375 86.0101 126.249L77.6774 134.602C74.8104 137.476 74.8104 142.136 77.6774 145.011L86.01 153.364C88.8771 156.238 93.5256 156.238 96.3927 153.364L104.725 145.011C107.592 142.136 107.592 137.476 104.725 134.602Z" stroke="#B9EDA4" stroke-width="2" stroke-miterlimit="10"/>
|
|
||||||
<path d="M96.801 180.098L94.1031 177.394C92.7101 175.997 90.4517 175.997 89.0587 177.394L86.3608 180.098C84.9678 181.495 84.9678 183.759 86.3608 185.155L89.0587 187.86C90.4517 189.256 92.7101 189.256 94.1031 187.86L96.801 185.155C98.194 183.759 98.194 181.495 96.801 180.098Z" stroke="#D0F6C0" stroke-width="2" stroke-miterlimit="10"/>
|
|
||||||
<path d="M104.925 128.438L96.592 120.085C93.725 117.211 89.0765 117.211 86.2094 120.085L77.8768 128.438C75.0097 131.312 75.0097 135.972 77.8768 138.846L86.2094 147.2C89.0765 150.074 93.725 150.074 96.592 147.2L104.925 138.846C107.792 135.972 107.792 131.312 104.925 128.438Z" fill="#B9EDA4"/>
|
|
||||||
<path d="M97.0033 173.941L94.3054 171.236C92.9124 169.84 90.6539 169.84 89.2609 171.236L86.563 173.941C85.17 175.337 85.17 177.601 86.563 178.998L89.2609 181.702C90.6539 183.099 92.9124 183.099 94.3054 181.702L97.0033 178.998C98.3963 177.601 98.3963 175.337 97.0033 173.941Z" fill="#CFF6C0"/>
|
|
||||||
</g>
|
|
||||||
<defs>
|
|
||||||
<clipPath id="clip0_797_4558">
|
|
||||||
<rect width="222" height="280" fill="white" transform="translate(-104 -11)"/>
|
|
||||||
</clipPath>
|
|
||||||
</defs>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 5.3 KiB |
@ -1,23 +0,0 @@
|
|||||||
<svg width="117" height="268" viewBox="0 0 117 268" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g opacity="0.7" clip-path="url(#clip0_797_4588)">
|
|
||||||
<path d="M119.798 163.632L140.076 143.303C146.031 137.333 155.687 137.333 161.642 143.303L181.921 163.632C187.876 169.602 187.876 179.281 181.921 185.251L161.642 205.58C155.687 211.55 146.031 211.55 140.076 205.58L119.798 185.251C113.842 179.281 113.842 169.602 119.798 163.632Z" stroke="#BAF2A4" stroke-width="2" stroke-miterlimit="10"/>
|
|
||||||
<path d="M76.7674 220.872L95.6238 201.969C101.972 195.606 112.264 195.606 118.612 201.969L137.468 220.872C143.816 227.236 143.816 237.554 137.468 243.917L118.612 262.82C112.264 269.184 101.972 269.184 95.6238 262.82L76.7674 243.917C70.4195 237.554 70.4195 227.236 76.7674 220.872Z" stroke="#D0F6C0" stroke-width="2" stroke-miterlimit="10"/>
|
|
||||||
<path d="M51.7066 74.269L122.168 3.63299C128.516 -2.73072 138.808 -2.73072 145.156 3.63299L215.618 74.269C221.966 80.6327 221.966 90.9504 215.618 97.3141L145.156 167.95C138.808 174.314 128.516 174.314 122.168 167.95L51.7066 97.3141C45.3586 90.9504 45.3586 80.6328 51.7066 74.269Z" stroke="#A5E18E" stroke-width="2" stroke-miterlimit="10"/>
|
|
||||||
<path d="M5.1702 74.2697L25.7541 53.6348C32.1021 47.2711 42.3942 47.2711 48.7422 53.6348L69.326 74.2697C75.674 80.6334 75.674 90.9511 69.326 97.3148L48.7422 117.95C42.3942 124.313 32.1021 124.313 25.7541 117.95L5.1702 97.3148C-1.17778 90.9511 -1.17778 80.6334 5.1702 74.2697Z" stroke="#D0F6C0" stroke-width="2" stroke-miterlimit="10"/>
|
|
||||||
<path d="M40.7049 161.922L65.2564 137.31C68.9329 133.624 74.8936 133.624 78.5701 137.31L103.122 161.922C106.798 165.608 106.798 171.583 103.122 175.269L78.5701 199.881C74.8936 203.567 68.9329 203.567 65.2564 199.881L40.7049 175.269C37.0284 171.583 37.0284 165.608 40.7049 161.922Z" stroke="#B9EDA4" stroke-width="2" stroke-miterlimit="10"/>
|
|
||||||
<path d="M121.423 152.774L141.702 132.445C147.657 126.475 157.312 126.475 163.268 132.445L183.546 152.774C189.502 158.744 189.502 168.423 183.546 174.393L163.268 194.722C157.312 200.692 147.657 200.692 141.702 194.722L121.423 174.393C115.468 168.423 115.468 158.744 121.423 152.774Z" fill="#BAF2A3"/>
|
|
||||||
<path d="M78.3931 210.014L97.2494 191.111C103.597 184.747 113.889 184.747 120.237 191.111L139.094 210.014C145.442 216.378 145.442 226.695 139.094 233.059L120.237 251.962C113.889 258.326 103.597 258.326 97.2494 251.962L78.3931 233.059C72.0451 226.695 72.0451 216.378 78.3931 210.014Z" fill="#D0F7C0"/>
|
|
||||||
<path d="M146.776 157.092L217.22 86.4739C218.729 84.9611 219.927 83.1649 220.744 81.1881C221.561 79.2112 221.981 77.0923 221.981 74.9525C221.981 72.8127 221.561 70.6938 220.744 68.717C219.927 66.7401 218.729 64.9439 217.22 63.4311L146.755 -7.18732C145.246 -8.70064 143.455 -9.90109 141.483 -10.7201C139.511 -11.5391 137.397 -11.9607 135.262 -11.9607C133.128 -11.9607 131.014 -11.5391 129.042 -10.7201C127.07 -9.90109 125.279 -8.70064 123.77 -7.18732L53.3256 63.4107C51.8161 64.9235 50.6186 66.7197 49.8016 68.6966C48.9846 70.6734 48.5641 72.7923 48.5641 74.9321C48.5641 77.0719 48.9846 79.1908 49.8016 81.1676C50.6186 83.1445 51.8161 84.9407 53.3256 86.4535L123.77 157.092C125.279 158.609 127.072 159.812 129.046 160.633C131.02 161.453 133.136 161.876 135.273 161.876C137.41 161.876 139.526 161.453 141.499 160.633C143.473 159.812 145.266 158.609 146.776 157.092Z" fill="#A4E28B"/>
|
|
||||||
<path d="M6.79581 63.4115L27.3797 42.7766C33.7277 36.4129 44.0198 36.4129 50.3678 42.7766L70.9517 63.4115C77.2996 69.7752 77.2996 80.0928 70.9517 86.4565L50.3678 107.091C44.0198 113.455 33.7277 113.455 27.3797 107.091L6.7958 86.4565C0.447821 80.0928 0.447827 69.7752 6.79581 63.4115Z" fill="#D0F7C0"/>
|
|
||||||
<path d="M42.3305 151.064L66.882 126.452C70.5585 122.766 76.5193 122.766 80.1958 126.452L104.747 151.064C108.424 154.75 108.424 160.725 104.747 164.411L80.1958 189.023C76.5193 192.709 70.5585 192.709 66.882 189.023L42.3305 164.411C38.654 160.725 38.654 154.75 42.3305 151.064Z" fill="#B9EDA4"/>
|
|
||||||
<path d="M13.2747 133.602L21.6073 125.249C24.4744 122.375 29.1229 122.375 31.9899 125.249L40.3226 133.602C43.1896 136.476 43.1896 141.136 40.3226 144.011L31.99 152.364C29.1229 155.238 24.4744 155.238 21.6073 152.364L13.2747 144.011C10.4076 141.136 10.4076 136.476 13.2747 133.602Z" stroke="#B9EDA4" stroke-width="2" stroke-miterlimit="10"/>
|
|
||||||
<path d="M21.199 179.098L23.8969 176.394C25.2899 174.997 27.5483 174.997 28.9413 176.394L31.6392 179.098C33.0322 180.495 33.0322 182.759 31.6392 184.155L28.9413 186.86C27.5483 188.256 25.2899 188.256 23.8969 186.86L21.199 184.155C19.806 182.759 19.806 180.495 21.199 179.098Z" stroke="#D0F6C0" stroke-width="2" stroke-miterlimit="10"/>
|
|
||||||
<path d="M13.0754 127.438L21.408 119.085C24.275 116.211 28.9235 116.211 31.7906 119.085L40.1232 127.438C42.9903 130.312 42.9903 134.972 40.1232 137.846L31.7906 146.2C28.9235 149.074 24.275 149.074 21.408 146.2L13.0754 137.846C10.2083 134.972 10.2083 130.312 13.0754 127.438Z" fill="#B9EDA4"/>
|
|
||||||
<path d="M20.9967 172.941L23.6946 170.236C25.0876 168.84 27.3461 168.84 28.7391 170.236L31.437 172.941C32.83 174.337 32.83 176.601 31.437 177.998L28.7391 180.702C27.3461 182.099 25.0876 182.099 23.6946 180.702L20.9967 177.998C19.6037 176.601 19.6037 174.337 20.9967 172.941Z" fill="#CFF6C0"/>
|
|
||||||
</g>
|
|
||||||
<defs>
|
|
||||||
<clipPath id="clip0_797_4588">
|
|
||||||
<rect width="222" height="280" fill="white" transform="matrix(-1 0 0 1 222 -12)"/>
|
|
||||||
</clipPath>
|
|
||||||
</defs>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 5.2 KiB |
|
Before Width: | Height: | Size: 56 KiB |
|
Before Width: | Height: | Size: 172 KiB |
|
Before Width: | Height: | Size: 79 KiB |
|
Before Width: | Height: | Size: 74 KiB |
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 113 KiB |
|
Before Width: | Height: | Size: 113 KiB |
|
Before Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 3.3 KiB |
|
Before Width: | Height: | Size: 74 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 47 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 46 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 4.0 KiB |
|
Before Width: | Height: | Size: 9.4 KiB |
|
Before Width: | Height: | Size: 60 KiB |
|
Before Width: | Height: | Size: 113 KiB |
|
Before Width: | Height: | Size: 102 KiB |
|
Before Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 90 KiB |
|
Before Width: | Height: | Size: 121 KiB |
|
Before Width: | Height: | Size: 71 KiB |
|
Before Width: | Height: | Size: 122 KiB |
|
Before Width: | Height: | Size: 67 KiB |
|
Before Width: | Height: | Size: 51 KiB |
|
Before Width: | Height: | Size: 82 KiB |
@ -1,9 +0,0 @@
|
|||||||
<svg width="477" height="240" viewBox="0 0 477 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="M497.766 238.379C494.331 238.379 491.037 237.357 488.609 235.539C486.18 233.721 484.816 231.254 484.816 228.683V168.083C484.816 165.511 486.18 163.045 488.609 161.227C491.037 159.408 494.331 158.387 497.766 158.387H518V76.6132H497.766C494.331 76.6132 491.037 75.5916 488.609 73.7733C486.18 71.9549 484.816 69.4887 484.816 66.9172V6.31718C484.816 3.74564 486.18 1.27943 488.609 -0.538925C491.037 -2.35728 494.331 -3.37882 497.766 -3.37882H518V-34H484.816V-13.0748C484.816 -10.5033 483.451 -8.03707 481.023 -6.21871C478.594 -4.40036 475.3 -3.37882 471.866 -3.37882H390.928C387.494 -3.37882 384.2 -4.40036 381.771 -6.21871C379.342 -8.03707 377.978 -10.5033 377.978 -13.0748V-34H271.141V-13.0748C271.141 -10.5033 269.776 -8.03707 267.348 -6.21871C264.919 -4.40036 261.625 -3.37882 258.191 -3.37882H177.253C173.819 -3.37882 170.525 -4.40036 168.096 -6.21871C165.667 -8.03707 164.303 -10.5033 164.303 -13.0748V-34H57.4656V-13.0748C57.4656 -10.5033 56.1012 -8.03707 53.6727 -6.21871C51.2441 -4.40036 47.9502 -3.37882 44.5156 -3.37882H0V77.504H44.5156C47.9502 77.504 51.2441 78.5255 53.6727 80.3439C56.1012 82.1622 57.4656 84.6285 57.4656 87.2V147.8C57.4656 150.372 56.1012 152.838 53.6727 154.656C51.2441 156.474 47.9502 157.496 44.5156 157.496H0V238.664H44.5156C47.9502 238.664 51.2441 239.685 53.6727 241.504C56.1012 243.322 57.4656 245.788 57.4656 248.36V269H164.303V248.36C164.303 245.788 165.667 243.322 168.096 241.504C170.525 239.685 173.819 238.664 177.253 238.664H258.191C261.625 238.664 264.919 239.685 267.348 241.504C269.776 243.322 271.141 245.788 271.141 248.36V269H377.978V248.36C377.978 245.788 379.342 243.322 381.771 241.504C384.2 239.685 387.494 238.664 390.928 238.664H471.866C475.3 238.664 478.594 239.685 481.023 241.504C483.451 243.322 484.816 245.788 484.816 248.36V269H518V238.379H497.766ZM271.141 6.31718C271.141 3.74564 272.505 1.27943 274.934 -0.538925C277.362 -2.35728 280.656 -3.37882 284.091 -3.37882H365.028C368.463 -3.37882 371.757 -2.35728 374.185 -0.538925C376.614 1.27943 377.978 3.74564 377.978 6.31718V66.9172C377.978 69.4887 376.614 71.9549 374.185 73.7733C371.757 75.5916 368.463 76.6132 365.028 76.6132H284.091C280.656 76.6132 277.362 75.5916 274.934 73.7733C272.505 71.9549 271.141 69.4887 271.141 66.9172V6.31718ZM57.4656 6.31718C57.4656 3.74564 58.83 1.27943 61.2586 -0.538925C63.6872 -2.35728 66.9811 -3.37882 70.4156 -3.37882H151.353C154.788 -3.37882 158.082 -2.35728 160.51 -0.538925C162.939 1.27943 164.303 3.74564 164.303 6.31718V66.9172C164.303 69.4887 162.939 71.9549 160.51 73.7733C158.082 75.5916 154.788 76.6132 151.353 76.6132H70.4156C66.9811 76.6132 63.6872 75.5916 61.2586 73.7733C58.83 71.9549 57.4656 69.4887 57.4656 66.9172V6.31718ZM164.303 228.683C164.303 231.254 162.939 233.721 160.51 235.539C158.082 237.357 154.788 238.379 151.353 238.379H70.4156C66.9811 238.379 63.6872 237.357 61.2586 235.539C58.83 233.721 57.4656 231.254 57.4656 228.683V168.083C57.4656 165.511 58.83 163.045 61.2586 161.227C63.6872 159.408 66.9811 158.387 70.4156 158.387H151.353C154.788 158.387 158.082 159.408 160.51 161.227C162.939 163.045 164.303 165.511 164.303 168.083V228.683ZM258.191 157.496H177.253C173.819 157.496 170.525 156.474 168.096 154.656C165.667 152.838 164.303 150.372 164.303 147.8V87.2C164.303 84.6285 165.667 82.1622 168.096 80.3439C170.525 78.5255 173.819 77.504 177.253 77.504H258.191C261.625 77.504 264.919 78.5255 267.348 80.3439C269.776 82.1622 271.141 84.6285 271.141 87.2V147.8C271.141 150.372 269.776 152.838 267.348 154.656C264.919 156.474 261.625 157.496 258.191 157.496ZM377.978 228.683C377.978 231.254 376.614 233.721 374.185 235.539C371.757 237.357 368.463 238.379 365.028 238.379H284.091C280.656 238.379 277.362 237.357 274.934 235.539C272.505 233.721 271.141 231.254 271.141 228.683V168.083C271.141 165.511 272.505 163.045 274.934 161.227C277.362 159.408 280.656 158.387 284.091 158.387H365.028C368.463 158.387 371.757 159.408 374.185 161.227C376.614 163.045 377.978 165.511 377.978 168.083V228.683ZM471.866 157.496H390.928C387.494 157.496 384.2 156.474 381.771 154.656C379.342 152.838 377.978 150.372 377.978 147.8V87.2C377.978 84.6285 379.342 82.1622 381.771 80.3439C384.2 78.5255 387.494 77.504 390.928 77.504H471.866C475.3 77.504 478.594 78.5255 481.023 80.3439C483.451 82.1622 484.816 84.6285 484.816 87.2V147.8C484.816 150.372 483.451 152.838 481.023 154.656C478.594 156.474 475.3 157.496 471.866 157.496Z" fill="url(#paint0_linear_131_5843)"/>
|
|
||||||
<defs>
|
|
||||||
<linearGradient id="paint0_linear_131_5843" x1="467.936" y1="117" x2="26.0335" y2="117" gradientUnits="userSpaceOnUse">
|
|
||||||
<stop stop-color="white" stop-opacity="0.15"/>
|
|
||||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
|
||||||
</linearGradient>
|
|
||||||
</defs>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 4.7 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 5.2 KiB |