@opendesign-plus/components 0.0.1-rc.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (199) hide show
  1. package/dist/chunk-OElCookieNotice.cjs.js +1 -0
  2. package/dist/chunk-OElCookieNotice.es.js +833 -0
  3. package/dist/components/OBanner.vue.d.ts +11 -0
  4. package/dist/components/OCookieNotice.vue.d.ts +17 -0
  5. package/dist/components/OFooter.vue.d.ts +46 -0
  6. package/dist/components/OHeaderSearch.vue.d.ts +692 -0
  7. package/dist/components/OHeaderUser.vue.d.ts +38 -0
  8. package/dist/components/OPlusConfigProvider.vue.d.ts +23 -0
  9. package/dist/components/OSection.vue.d.ts +37 -0
  10. package/dist/components/OSourceCode.vue.d.ts +20 -0
  11. package/dist/components/OThemeSwitcher.vue.d.ts +28 -0
  12. package/dist/components/activity/OActivityApproval.vue.d.ts +277 -0
  13. package/dist/components/activity/OActivityForm.vue.d.ts +140 -0
  14. package/dist/components/activity/OMyActivityCalendar.vue.d.ts +578 -0
  15. package/dist/components/activity/config.d.ts +15 -0
  16. package/dist/components/activity/index.d.ts +623 -0
  17. package/dist/components/activity/types.d.ts +81 -0
  18. package/dist/components/element-plus/OElCookieNotice.vue.d.ts +34 -0
  19. package/dist/components/element-plus/index.d.ts +2 -0
  20. package/dist/components/events/OEventsApply.vue.d.ts +16 -0
  21. package/dist/components/events/OEventsCalendar.vue.d.ts +5 -0
  22. package/dist/components/events/OEventsList.vue.d.ts +26 -0
  23. package/dist/components/events/config.d.ts +27 -0
  24. package/dist/components/events/index.d.ts +78 -0
  25. package/dist/components/events/types.d.ts +66 -0
  26. package/dist/components/events/utils.d.ts +7 -0
  27. package/dist/components/header/OHeader.vue.d.ts +24 -0
  28. package/dist/components/header/OHeaderMoblie.vue.d.ts +33 -0
  29. package/dist/components/header/components/HeaderContent.vue.d.ts +6 -0
  30. package/dist/components/header/components/HeaderNav.vue.d.ts +7 -0
  31. package/dist/components/header/components/HeaderNavMoblie.vue.d.ts +17 -0
  32. package/dist/components/header/components/HeaderUbmcNav.vue.d.ts +2 -0
  33. package/dist/components/header/index.d.ts +22 -0
  34. package/dist/components/meeting/OMeetingCalendar.vue.d.ts +298 -0
  35. package/dist/components/meeting/OMeetingForm.vue.d.ts +145 -0
  36. package/dist/components/meeting/OMyMeetingCalendar.vue.d.ts +586 -0
  37. package/dist/components/meeting/OSigMeetingCalendar.vue.d.ts +24 -0
  38. package/dist/components/meeting/components/OMeetingCalendarList.vue.d.ts +28 -0
  39. package/dist/components/meeting/components/OMeetingCalendarSelector.vue.d.ts +664 -0
  40. package/dist/components/meeting/components/OMeetingDetail.vue.d.ts +12 -0
  41. package/dist/components/meeting/components/OMeetingPlaybackSubtitles.vue.d.ts +5 -0
  42. package/dist/components/meeting/components/OMeetingPlaybackVideo.vue.d.ts +17 -0
  43. package/dist/components/meeting/components/OSigMeetingAside.vue.d.ts +16 -0
  44. package/dist/components/meeting/config.d.ts +27 -0
  45. package/dist/components/meeting/types.d.ts +166 -0
  46. package/dist/components/meeting/utils.d.ts +22 -0
  47. package/dist/components.cjs.js +224 -0
  48. package/dist/components.css +1 -0
  49. package/dist/components.element.cjs.js +1 -0
  50. package/dist/components.element.es.js +4 -0
  51. package/dist/components.es.js +45054 -0
  52. package/dist/index.d.ts +19 -0
  53. package/docs/design.md +27 -0
  54. package/docs/design_banner.md +41 -0
  55. package/docs/design_section.md +27 -0
  56. package/package.json +56 -0
  57. package/scripts/generate-components-index.js +104 -0
  58. package/src/assets/events/svg-icons/icon-checked.svg +3 -0
  59. package/src/assets/events/svg-icons/icon-competition.svg +7 -0
  60. package/src/assets/events/svg-icons/icon-events.svg +4 -0
  61. package/src/assets/events/svg-icons/icon-release.svg +4 -0
  62. package/src/assets/events/svg-icons/icon-summit.svg +4 -0
  63. package/src/assets/meeting/svg-icons/icon-all.svg +3 -0
  64. package/src/assets/meeting/svg-icons/icon-backward.svg +4 -0
  65. package/src/assets/meeting/svg-icons/icon-calendar.svg +3 -0
  66. package/src/assets/meeting/svg-icons/icon-cancel.svg +4 -0
  67. package/src/assets/meeting/svg-icons/icon-captions.svg +4 -0
  68. package/src/assets/meeting/svg-icons/icon-close-captions.svg +6 -0
  69. package/src/assets/meeting/svg-icons/icon-close-fullscreen.svg +6 -0
  70. package/src/assets/meeting/svg-icons/icon-copy.svg +3 -0
  71. package/src/assets/meeting/svg-icons/icon-create.svg +5 -0
  72. package/src/assets/meeting/svg-icons/icon-delete.svg +7 -0
  73. package/src/assets/meeting/svg-icons/icon-empty.svg +31 -0
  74. package/src/assets/meeting/svg-icons/icon-empty_dark.svg +49 -0
  75. package/src/assets/meeting/svg-icons/icon-event.svg +3 -0
  76. package/src/assets/meeting/svg-icons/icon-export.svg +3 -0
  77. package/src/assets/meeting/svg-icons/icon-forward.svg +4 -0
  78. package/src/assets/meeting/svg-icons/icon-fullscreen.svg +6 -0
  79. package/src/assets/meeting/svg-icons/icon-help.svg +3 -0
  80. package/src/assets/meeting/svg-icons/icon-important.svg +4 -0
  81. package/src/assets/meeting/svg-icons/icon-info.svg +3 -0
  82. package/src/assets/meeting/svg-icons/icon-meet.svg +3 -0
  83. package/src/assets/meeting/svg-icons/icon-meeting-message.svg +5 -0
  84. package/src/assets/meeting/svg-icons/icon-meeting.svg +4 -0
  85. package/src/assets/meeting/svg-icons/icon-play.svg +5 -0
  86. package/src/assets/meeting/svg-icons/icon-playing-tip.svg +7 -0
  87. package/src/assets/meeting/svg-icons/icon-playing.svg +5 -0
  88. package/src/assets/meeting/svg-icons/icon-question.svg +4 -0
  89. package/src/assets/meeting/svg-icons/icon-sound.svg +5 -0
  90. package/src/assets/meeting/svg-icons/icon-speaker.svg +3 -0
  91. package/src/assets/meeting/svg-icons/icon-summit.svg +3 -0
  92. package/src/assets/meeting/svg-icons/icon-telligent.svg +3 -0
  93. package/src/assets/meeting/svg-icons/icon-tip.svg +3 -0
  94. package/src/assets/meeting/svg-icons/icon-todo.svg +4 -0
  95. package/src/assets/meeting/transparent.png +0 -0
  96. package/src/assets/svg-icons/icon-arrow-left.svg +3 -0
  97. package/src/assets/svg-icons/icon-avatar-line.svg +3 -0
  98. package/src/assets/svg-icons/icon-caret-left.svg +3 -0
  99. package/src/assets/svg-icons/icon-caret-right.svg +3 -0
  100. package/src/assets/svg-icons/icon-chevron-down.svg +3 -0
  101. package/src/assets/svg-icons/icon-chevron-right.svg +3 -0
  102. package/src/assets/svg-icons/icon-chevron-up.svg +3 -0
  103. package/src/assets/svg-icons/icon-close.svg +3 -0
  104. package/src/assets/svg-icons/icon-delete.svg +3 -0
  105. package/src/assets/svg-icons/icon-filter.svg +3 -0
  106. package/src/assets/svg-icons/icon-header-back.svg +3 -0
  107. package/src/assets/svg-icons/icon-header-delete.svg +3 -0
  108. package/src/assets/svg-icons/icon-header-menu.svg +3 -0
  109. package/src/assets/svg-icons/icon-header-person.svg +3 -0
  110. package/src/assets/svg-icons/icon-header-search.svg +4 -0
  111. package/src/assets/svg-icons/icon-loading.svg +4 -0
  112. package/src/assets/svg-icons/icon-locale.svg +3 -0
  113. package/src/assets/svg-icons/icon-log-off.svg +3 -0
  114. package/src/assets/svg-icons/icon-message.svg +3 -0
  115. package/src/assets/svg-icons/icon-moon.svg +3 -0
  116. package/src/assets/svg-icons/icon-outlink.svg +3 -0
  117. package/src/assets/svg-icons/icon-overview.svg +3 -0
  118. package/src/assets/svg-icons/icon-search.svg +3 -0
  119. package/src/assets/svg-icons/icon-setting.svg +3 -0
  120. package/src/assets/svg-icons/icon-sun.svg +3 -0
  121. package/src/assets/svg-icons/icon-tips.svg +3 -0
  122. package/src/components/OBanner.vue +398 -0
  123. package/src/components/OCookieNotice.vue +575 -0
  124. package/src/components/OFooter.vue +576 -0
  125. package/src/components/OHeaderSearch.vue +601 -0
  126. package/src/components/OHeaderUser.vue +237 -0
  127. package/src/components/OPlusConfigProvider.vue +32 -0
  128. package/src/components/OSection.vue +178 -0
  129. package/src/components/OSourceCode.vue +153 -0
  130. package/src/components/OThemeSwitcher.vue +108 -0
  131. package/src/components/activity/OActivityApproval.vue +871 -0
  132. package/src/components/activity/OActivityForm.vue +548 -0
  133. package/src/components/activity/OMyActivityCalendar.vue +1501 -0
  134. package/src/components/activity/config.ts +141 -0
  135. package/src/components/activity/index.ts +24 -0
  136. package/src/components/activity/types.ts +88 -0
  137. package/src/components/common/AppAvatar.vue +83 -0
  138. package/src/components/common/ClientOnlyWrapper.ts +21 -0
  139. package/src/components/common/ContentWrapper.vue +85 -0
  140. package/src/components/common/MoreText.vue +124 -0
  141. package/src/components/common/ThFilter.vue +330 -0
  142. package/src/components/element-plus/OElCookieNotice.vue +603 -0
  143. package/src/components/element-plus/index.ts +3 -0
  144. package/src/components/events/OEventsApply.vue +419 -0
  145. package/src/components/events/OEventsCalendar.vue +588 -0
  146. package/src/components/events/OEventsList.vue +354 -0
  147. package/src/components/events/config.ts +35 -0
  148. package/src/components/events/index.ts +24 -0
  149. package/src/components/events/types.ts +80 -0
  150. package/src/components/events/utils.ts +9 -0
  151. package/src/components/header/OHeader.vue +175 -0
  152. package/src/components/header/OHeaderMoblie.vue +152 -0
  153. package/src/components/header/components/HeaderContent.vue +942 -0
  154. package/src/components/header/components/HeaderNav.vue +280 -0
  155. package/src/components/header/components/HeaderNavMoblie.vue +346 -0
  156. package/src/components/header/components/HeaderUbmcNav.vue +540 -0
  157. package/src/components/header/index.ts +16 -0
  158. package/src/components/meeting/OMeetingCalendar.vue +900 -0
  159. package/src/components/meeting/OMeetingForm.vue +1041 -0
  160. package/src/components/meeting/OMeetingPlayback.vue +439 -0
  161. package/src/components/meeting/OMyMeetingCalendar.vue +1502 -0
  162. package/src/components/meeting/OSigMeetingCalendar.vue +411 -0
  163. package/src/components/meeting/components/OMeetingCalendarList.vue +505 -0
  164. package/src/components/meeting/components/OMeetingCalendarSelector.vue +206 -0
  165. package/src/components/meeting/components/OMeetingDetail.vue +227 -0
  166. package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +611 -0
  167. package/src/components/meeting/components/OMeetingPlaybackVideo.vue +741 -0
  168. package/src/components/meeting/components/OSigMeetingAside.vue +197 -0
  169. package/src/components/meeting/config.ts +121 -0
  170. package/src/components/meeting/index.ts +45 -0
  171. package/src/components/meeting/types.ts +193 -0
  172. package/src/components/meeting/utils.ts +123 -0
  173. package/src/draft/Banner.vue +265 -0
  174. package/src/draft/ButtonCards.vue +106 -0
  175. package/src/draft/Feature.vue +134 -0
  176. package/src/draft/Footer.vue +512 -0
  177. package/src/draft/HorizontalAnchor.vue +165 -0
  178. package/src/draft/ItemSwiper.vue +133 -0
  179. package/src/draft/Logo.vue +141 -0
  180. package/src/draft/LogoCard.vue +75 -0
  181. package/src/draft/LogoV2.vue +19 -0
  182. package/src/draft/MainCard.vue +38 -0
  183. package/src/draft/MultiCard.vue +95 -0
  184. package/src/draft/MultiIconCard.vue +74 -0
  185. package/src/draft/OInfoCard.vue +176 -0
  186. package/src/draft/Process.vue +81 -0
  187. package/src/draft/Section.vue +167 -0
  188. package/src/draft/SingleTabCard.vue +85 -0
  189. package/src/draft/SliderCard.vue +110 -0
  190. package/src/env.d.ts +16 -0
  191. package/src/i18n/en.ts +261 -0
  192. package/src/i18n/index.ts +56 -0
  193. package/src/i18n/zh.ts +250 -0
  194. package/src/index.ts +45 -0
  195. package/src/shared/provide.ts +6 -0
  196. package/src/shims-vue-dompurify-html.d.ts +17 -0
  197. package/src/vue.d.ts +10 -0
  198. package/tsconfig.json +37 -0
  199. package/vite.config.ts +118 -0
@@ -0,0 +1,576 @@
1
+ <script setup lang="ts">
2
+ import { ODivider } from '@opensig/opendesign';
3
+
4
+ import ContentWrapper from './common/ContentWrapper.vue';
5
+
6
+ const props = withDefaults(defineProps<{
7
+ simple: any;
8
+ atom: any;
9
+ lang: any;
10
+ quickNav: any;
11
+ friendshipLink: any;
12
+ footerLogo: any;
13
+ footerOption: any;
14
+ qrcode: any;
15
+ footerBg: any;
16
+ }>(), {
17
+ simple: false,
18
+ atom: undefined,
19
+ lang: undefined,
20
+ quickNav: undefined,
21
+ friendshipLink: undefined,
22
+ footerLogo: undefined,
23
+ footerOption: undefined,
24
+ qrcode: undefined,
25
+ footerBg: undefined,
26
+ });
27
+ </script>
28
+
29
+ <template>
30
+ <div :class="[props.simple ? 'app-footer-simple' : 'app-footer']">
31
+ <!-- 全局列表式导航 -->
32
+ <template v-if="!props.simple">
33
+ <!-- 网站信息 -->
34
+ <ContentWrapper v-if="$slots.atom || props.atom">
35
+ <slot name="atom">
36
+ <div v-if="props.atom" class="atom">
37
+ <p class="atom-text">{{ props.atom[props.lang].title }}</p>
38
+ <a :href="props.atom[props.lang].href" target="_blank">
39
+ <img :src="props.atom[props.lang].img" class="atom-logo" alt="" />
40
+ </a>
41
+ </div>
42
+ <ODivider class="atom-divider" />
43
+ </slot>
44
+ </ContentWrapper>
45
+ <div class="footer-content" :style="{ backgroundImage: `url(${props.footerBg})` }">
46
+ <ContentWrapper>
47
+ <!-- 导航链接 -->
48
+ <template v-if="$slots.quickNav || props.quickNav">
49
+ <slot name="quickNav">
50
+ <div v-if="props.quickNav" class="quick-nav">
51
+ <div v-for="category in props.quickNav[props.lang]" :key="category.title" class="category">
52
+ <div class="category-title">
53
+ {{ category.title }}
54
+ </div>
55
+ <ul class="navs">
56
+ <li v-for="nav in category.list" :key="nav.title" class="nav">
57
+ <a :href="nav.link" target="_blank" rel="noopener noreferrer">{{ nav.title }}</a>
58
+ </li>
59
+ </ul>
60
+ </div>
61
+ </div>
62
+ </slot>
63
+ </template>
64
+ <!-- 友情链接 -->
65
+ <template v-if="$slots.friendshipLink || props.friendshipLink">
66
+ <slot name="friendshipLink">
67
+ <div v-if="props.friendshipLink" class="friendship-link">
68
+ <div class="friendship-link-title">
69
+ {{ props.friendshipLink.title[props.lang] }}
70
+ </div>
71
+ <div class="friendship-link-box">
72
+ <a v-for="link in props.friendshipLink.link[props.lang]" :href="link.link" :key="link.link" target="_blank">{{ link.title }}</a>
73
+ </div>
74
+ </div>
75
+ </slot>
76
+ </template>
77
+ <!-- 底部信息 版权、隐私声明、联系方式 -->
78
+ <slot name="footer">
79
+ <div class="inner" :class="{ 'inner-en': props.lang === 'en' }">
80
+ <div v-if="props.footerLogo" class="footer-logo">
81
+ <img class="show-pc" :src="props.footerLogo.logo" alt="" />
82
+ <img class="show-mo" :src="props.footerLogo.logoMb" alt="" />
83
+ <p>
84
+ <a class="email" :href="`mailto:${props.footerLogo.email}`" target="_blank">{{ props.footerLogo.email }}</a>
85
+ </p>
86
+ </div>
87
+ <div v-if="props.footerOption" class="footer-option">
88
+ <div class="footer-option-item">
89
+ <template v-for="(link, index) in props.footerOption[props.lang].link" :key="link.url">
90
+ <a target="_blank" :href="link.url">{{ link.name }}</a>
91
+ <ODivider
92
+ v-if="index !== props.footerOption[props.lang].link.length - 1"
93
+ :style="{
94
+ '--o-divider-bd-color': 'var(--o-color-info3-inverse)',
95
+ '--o-divider-label-gap': '0 8px',
96
+ }"
97
+ direction="v"
98
+ />
99
+ </template>
100
+ </div>
101
+ <p class="license">
102
+ <span>{{ props.footerOption[props.lang].licenseText }}</span>
103
+ {{ props.footerOption[props.lang].licenseInfo }}
104
+ </p>
105
+ <div class="copyright">
106
+ <p>{{ props.footerOption[props.lang].copyright }}</p>
107
+ <div class="filing">
108
+ <a :href="props.footerOption[props.lang].beianLink" target="_blank">
109
+ {{ props.footerOption[props.lang].beianInfo1 }}
110
+ </a>
111
+ <img :src="props.footerOption[props.lang].policeIcon" class="filing-img" />
112
+ <p>{{ props.footerOption[props.lang].beianInfo2 }}</p>
113
+ </div>
114
+ </div>
115
+ </div>
116
+ <div v-if="props.qrcode" class="footer-right">
117
+ <div v-if="props.lang === 'zh'" class="code-box">
118
+ <div v-for="(item, index) in props.qrcode" :key="index" class="code-pop">
119
+ <img :src="item.img" class="code-img" alt="" />
120
+ <div class="code-layer">
121
+ <img :src="item.code" alt="" />
122
+ <p class="txt">{{ item.label }}</p>
123
+ </div>
124
+ </div>
125
+ </div>
126
+ </div>
127
+ </div>
128
+ </slot>
129
+ </ContentWrapper>
130
+ </div>
131
+ </template>
132
+ <!-- 沉浸式底部导航 -->
133
+ <ContentWrapper v-else>
134
+ <div class="app-footer-pc">
135
+ <template v-if="$slots.left || props.footerOption">
136
+ <slot name="left">
137
+ <div v-if="props.footerOption" class="footer-left">
138
+ <span>{{ props.footerOption[props.lang].copyright }}</span>
139
+ <a class="approval" :href="props.footerOption[props.lang].beianLink" target="_blank" rel="noopener noreferrer">{{
140
+ props.footerOption[props.lang].beianInfo1
141
+ }}</a>
142
+ <img class="police-img" :src="props.footerOption[props.lang].policeIcon" />
143
+ <span>{{ props.footerOption[props.lang].beianInfo2 }}</span>
144
+ </div>
145
+ </slot>
146
+ </template>
147
+
148
+ <template v-if="$slots.right || props.footerOption">
149
+ <slot name="right">
150
+ <div v-if="props.footerOption" class="footer-right">
151
+ <template v-for="(link, index) in props.footerOption[props.lang].link" :key="link.url">
152
+ <a target="_blank" :href="link.url" class="link">{{ link.name }}</a>
153
+ <ODivider v-if="index !== props.footerOption[props.lang].link.length - 1" direction="v" />
154
+ </template>
155
+ </div>
156
+ </slot>
157
+ </template>
158
+ </div>
159
+ <div class="app-footer-mb">
160
+ <template v-if="$slots.right || props.footerOption">
161
+ <slot name="right">
162
+ <div v-if="props.footerOption" class="links">
163
+ <template v-for="(link, index) in props.footerOption[props.lang].link" :key="link.url">
164
+ <a target="_blank" :href="link.url" class="link">{{ link.name }}</a>
165
+ <ODivider v-if="index !== props.footerOption[props.lang].link.length - 1" direction="v" />
166
+ </template>
167
+ </div>
168
+ </slot>
169
+ </template>
170
+ <slot name="copyright">
171
+ <div class="copyright">{{ props.footerOption[props.lang].copyright }}</div>
172
+ </slot>
173
+ <template v-if="$slots.left || props.footerOption">
174
+ <slot name="left">
175
+ <div v-if="props.footerOption" class="approval">
176
+ <a :href="props.footerOption[props.lang].beianLink" target="_blank" rel="noopener noreferrer">{{ props.footerOption[props.lang].beianInfo1 }}</a>
177
+ <img class="police-img" :src="props.footerOption[props.lang].policeIcon" />
178
+ <span>{{ props.footerOption[props.lang].beianInfo2 }}</span>
179
+ </div>
180
+ </slot>
181
+ </template>
182
+ </div>
183
+ </ContentWrapper>
184
+ </div>
185
+ </template>
186
+
187
+ <style lang="scss" scoped>
188
+ .app-footer {
189
+ overflow: hidden;
190
+ background: #121214;
191
+ .atom {
192
+ text-align: center;
193
+ margin-top: 24px;
194
+ position: relative;
195
+
196
+ .atom-text {
197
+ color: var(--o-color-white);
198
+ @include h4;
199
+ }
200
+ .atom-logo {
201
+ height: 32px;
202
+ margin-top: 12px;
203
+
204
+ @include respond-to('<=laptop') {
205
+ margin-top: 8px;
206
+ }
207
+
208
+ @include respond-to('<=pad_v') {
209
+ height: 30px;
210
+ margin-top: 12px;
211
+ }
212
+ }
213
+ }
214
+ .atom-divider {
215
+ --o-divider-bd-color: rgba(229, 229, 229, 0.12);
216
+ --o-divider-gap: 16px;
217
+ @include respond-to('laptop') {
218
+ --o-divider-gap: 12px;
219
+ }
220
+ @include respond-to('pad_h') {
221
+ --o-divider-gap: 8px;
222
+ }
223
+ }
224
+ .footer-content {
225
+ @include tip1;
226
+ background-position: bottom;
227
+ background-repeat: no-repeat;
228
+ background-size: cover;
229
+
230
+ a {
231
+ color: rgba(var(--o-white), 0.6);
232
+ text-decoration: none;
233
+ white-space: nowrap;
234
+ @include hover {
235
+ color: rgba(var(--o-white), 1);
236
+ }
237
+ }
238
+ }
239
+ .quick-nav {
240
+ margin: 16px auto 0;
241
+ display: flex;
242
+ justify-content: space-between;
243
+ max-width: 1140px;
244
+ @include respond-to('<=pad_v') {
245
+ display: none;
246
+ }
247
+ .category {
248
+ .category-title {
249
+ @include h4;
250
+ color: var(--o-color-white);
251
+ }
252
+ .navs {
253
+ display: flex;
254
+ flex-direction: column;
255
+ list-style: none outside none;
256
+ padding-left: 0;
257
+ .nav {
258
+ margin-top: 8px;
259
+ @include tip1;
260
+ }
261
+ .nav:first-child {
262
+ margin-top: 10px;
263
+ }
264
+ }
265
+ }
266
+ }
267
+ .friendship-link {
268
+ margin-top: 16px;
269
+ padding-bottom: 12px;
270
+ display: flex;
271
+ justify-content: center;
272
+ border-bottom: 1px solid rgba(229, 229, 229, 0.12);
273
+ @include tip2;
274
+ .friendship-link-title {
275
+ color: var(--o-color-white);
276
+ margin-right: 32px;
277
+ flex-shrink: 0;
278
+ }
279
+ a:not(:last-of-type) {
280
+ margin-right: 24px;
281
+ }
282
+
283
+ @include respond-to('<=pad') {
284
+ .friendship-link-title {
285
+ margin-right: 24px;
286
+ min-width: 48px;
287
+ }
288
+ a:not(:last-of-type) {
289
+ margin-right: 12px;
290
+ }
291
+ }
292
+
293
+ @include respond-to('<=pad_v') {
294
+ display: none;
295
+ }
296
+ }
297
+ .inner {
298
+ display: flex;
299
+ align-items: center;
300
+ justify-content: space-between;
301
+ padding: 8px 0 32px;
302
+ position: relative;
303
+
304
+ @include respond-to('<=pad_v') {
305
+ margin: 0 auto;
306
+ padding: 0 0 24px;
307
+ flex-direction: column;
308
+ }
309
+ }
310
+ .inner-en {
311
+ @include respond-to('<=pad_v') {
312
+ max-width: fit-content;
313
+ }
314
+ }
315
+ .footer-logo {
316
+ flex: 1;
317
+ img {
318
+ height: 46px;
319
+ }
320
+ .show-pc {
321
+ display: block;
322
+ }
323
+ .show-mo {
324
+ display: none;
325
+ }
326
+ .email {
327
+ color: var(--o-color-white);
328
+ }
329
+
330
+ @include respond-to('<=pad_v') {
331
+ text-align: center;
332
+ margin: 16px 0;
333
+ .show-pc {
334
+ display: none;
335
+ }
336
+ .show-mo {
337
+ display: inline-block;
338
+ height: 20px;
339
+ }
340
+ }
341
+ }
342
+ .footer-option {
343
+ text-align: center;
344
+ @include tip1;
345
+ a {
346
+ color: var(--o-color-white);
347
+ display: inline-block;
348
+ }
349
+ .footer-option-item {
350
+ display: flex;
351
+ justify-content: center;
352
+ align-items: center;
353
+ .o-divider {
354
+ height: 12px;
355
+ }
356
+ }
357
+
358
+ @include respond-to('<=pad_v') {
359
+ order: -1;
360
+ }
361
+ }
362
+ .license {
363
+ color: var(--o-color-white);
364
+ margin-top: 8px;
365
+ span {
366
+ color: rgba(var(--o-white), 0.6);
367
+ }
368
+ }
369
+ .copyright {
370
+ margin-top: 6px;
371
+ color: rgba(var(--o-white), 0.6);
372
+ display: flex;
373
+ justify-content: center;
374
+ flex-wrap: wrap;
375
+ p {
376
+ margin-bottom: 0;
377
+ }
378
+
379
+ .filing {
380
+ display: flex;
381
+ margin-left: 8px;
382
+ a {
383
+ color: rgba(var(--o-white), 0.6);
384
+ @include hover {
385
+ color: rgba(var(--o-white), 1);
386
+ }
387
+ }
388
+ .filing-img {
389
+ height: 16px;
390
+ align-self: center;
391
+ margin-left: 8px;
392
+ }
393
+ p {
394
+ margin-left: 8px;
395
+ }
396
+ }
397
+
398
+ @include respond-to('<=pad') {
399
+ flex-direction: column;
400
+ .filing {
401
+ margin-left: 6px;
402
+ }
403
+ }
404
+
405
+ @include respond-to('<=pad_v') {
406
+ margin-top: 4px;
407
+ .filing {
408
+ margin-left: 4px;
409
+ }
410
+ }
411
+ }
412
+ .footer-right {
413
+ flex: 1;
414
+ .code-box {
415
+ display: flex;
416
+ justify-content: right;
417
+ .code-pop {
418
+ cursor: pointer;
419
+ position: relative;
420
+ height: 20px;
421
+ display: block;
422
+ > img {
423
+ height: 100%;
424
+ object-fit: cover;
425
+ }
426
+ .code-layer {
427
+ position: absolute;
428
+ top: -105px;
429
+ left: -32px;
430
+ z-index: 99;
431
+ display: none;
432
+ background: var(--o-color-white);
433
+ padding: 6px;
434
+ img {
435
+ width: 78px;
436
+ height: 78px;
437
+ }
438
+ .txt {
439
+ margin-top: 8px;
440
+ color: var(--o-color-white);
441
+ display: none;
442
+ }
443
+ &::after {
444
+ border: 10px solid transparent;
445
+ content: '';
446
+ border-top-color: var(--o-color-white);
447
+ position: absolute;
448
+ bottom: -20px;
449
+ left: 50%;
450
+ transform: translateX(-50%);
451
+ display: block;
452
+ }
453
+ }
454
+ @include hover {
455
+ .code-layer {
456
+ display: block;
457
+ }
458
+ }
459
+
460
+ @include respond-to('pad_h') {
461
+ height: 18px;
462
+ }
463
+ }
464
+ .code-pop + .code-pop {
465
+ margin-left: 80px;
466
+ @include respond-to('<=pad_v') {
467
+ margin-left: 64px;
468
+ }
469
+ }
470
+ }
471
+
472
+ @include respond-to('<=pad_v') {
473
+ .code-box {
474
+ justify-content: space-between;
475
+ .code-pop {
476
+ height: auto;
477
+ > img {
478
+ display: none;
479
+ }
480
+ .code-layer {
481
+ display: block;
482
+ position: initial;
483
+ background: none;
484
+ padding: 0;
485
+ text-align: center;
486
+ &::after {
487
+ display: none !important;
488
+ }
489
+ .txt {
490
+ display: block;
491
+ }
492
+ }
493
+ }
494
+ }
495
+ }
496
+ }
497
+ }
498
+
499
+ .app-footer-simple {
500
+ background: var(--o-color-fill2);
501
+ .police-img {
502
+ width: 16px;
503
+ margin: 0 8px;
504
+ }
505
+ .app-footer-pc {
506
+ display: flex;
507
+ justify-content: space-between;
508
+ align-items: center;
509
+ margin-top: 12px;
510
+ color: var(--o-color-info3);
511
+ @include tip1;
512
+ .footer-left {
513
+ display: flex;
514
+ align-items: center;
515
+ flex-wrap: wrap;
516
+ margin-top: 2px;
517
+ }
518
+ .approval {
519
+ margin-left: 8px;
520
+ }
521
+ a {
522
+ color: var(--o-color-info3);
523
+ @include hover {
524
+ color: var(--o-color-link1);
525
+ }
526
+ }
527
+ .footer-right {
528
+ flex-shrink: 0;
529
+ margin-left: 16px;
530
+ display: flex;
531
+ align-items: center;
532
+ .o-divider-v {
533
+ height: 12px;
534
+ }
535
+ }
536
+ }
537
+ .app-footer-mb {
538
+ display: none;
539
+ margin-top: 16px;
540
+ text-align: center;
541
+ color: var(--o-color-info4);
542
+ @include tip1;
543
+ .links {
544
+ display: flex;
545
+ align-items: center;
546
+ justify-content: center;
547
+ .o-divider-v {
548
+ height: 12px;
549
+ }
550
+ }
551
+ .copyright {
552
+ margin-top: 4px;
553
+ }
554
+ .approval {
555
+ display: flex;
556
+ justify-content: center;
557
+ align-items: center;
558
+ margin-top: 4px;
559
+ }
560
+ a {
561
+ color: var(--o-color-info4);
562
+ @include hover {
563
+ color: var(--o-color-link1);
564
+ }
565
+ }
566
+ }
567
+ @include respond-to('<=pad') {
568
+ .app-footer-pc {
569
+ display: none;
570
+ }
571
+ .app-footer-mb {
572
+ display: block;
573
+ }
574
+ }
575
+ }
576
+ </style>