diff --git a/lua_probject/base_project/Game/View/LobbyView.lua b/lua_probject/base_project/Game/View/LobbyView.lua
index 0a21dcd2..36787566 100644
--- a/lua_probject/base_project/Game/View/LobbyView.lua
+++ b/lua_probject/base_project/Game/View/LobbyView.lua
@@ -1,4 +1,3 @@
-
--大厅View对象
--author:--
@@ -18,26 +17,27 @@ local M = {}
function LobbyView.new()
--print("new lobbyView!!!!")
- setmetatable(M, {__index = BaseView})
- local self = setmetatable({}, {__index = M})
+ setmetatable(M, { __index = BaseView })
+ local self = setmetatable({}, { __index = M })
self.class = "LobbyView"
-
+
UIPackage.AddPackage("base/lobby/ui/Lobby")
self.lobby_pause_time = 0
self._full = true
self:InitView("ui://Lobby/Main")
self._close_destroy = false
-
+
return self
end
-
function M:InitView(url)
- -- print("init lobbyView!!!!")
- BaseView.InitView(self ,url)
+ -- print("init lobbyView!!!!")
+ BaseView.InitView(self, url)
self._full_offset = false
local view = self._view
+ self:InitClip()
+
local btn_head = view:GetChild("btn_head")
ImageLoad.Load(DataManager.SelfUser.head_url, btn_head._iconObject)
btn_head.onClick:Set(function()
@@ -46,7 +46,7 @@ function M:InitView(url)
-- ImageLoad.Load(DataManager.SelfUser.head_url, btn_head._iconObject)
-- end)
-- headView:Show()
- local lobbyHeadView = LobbyHeadView.new(DataManager.SelfUser,DataManager.SelfUser.agent,function ()
+ local lobbyHeadView = LobbyHeadView.new(DataManager.SelfUser, DataManager.SelfUser.agent, function()
ImageLoad.Load(DataManager.SelfUser.head_url, btn_head._iconObject)
end)
lobbyHeadView:Show()
@@ -59,74 +59,74 @@ function M:InitView(url)
-- ImageLoad.Load(DataManager.SelfUser.head_url, btn_head._iconObject)
-- end)
-- headView:Show()
- local lobbyHeadView = LobbyHeadView.new(DataManager.SelfUser,DataManager.SelfUser.agent,function ()
+ local lobbyHeadView = LobbyHeadView.new(DataManager.SelfUser, DataManager.SelfUser.agent, function()
ImageLoad.Load(DataManager.SelfUser.head_url, btn_head._iconObject)
end)
lobbyHeadView:Show()
end)
view:GetChild("tex_name").text = DataManager.SelfUser.nick_name
- view:GetChild("tex_id").text = tostring(DataManager.SelfUser.account_id)
+ view:GetChild("tex_id").text = tostring(DataManager.SelfUser.account_id)
view:GetChild("gcm_diamo").text = tostring(DataManager.SelfUser.diamo)
local btn_joinroom = self._view:GetChild("btn_joinroom")
- btn_joinroom.onClick:Add(handler(self , self.OnJoinRoomAction))
- --btn_joinroom.displayObject.gameObject:SetActive(false)
-
- local createRoomBtn=self._view:GetChild("btn_ChuangJian")
+ btn_joinroom.onClick:Add(handler(self, self.OnJoinRoomAction))
+ --btn_joinroom.displayObject.gameObject:SetActive(false)
+
+ local createRoomBtn = self._view:GetChild("btn_ChuangJian")
--createRoomBtn.touchable = false
- createRoomBtn.onClick:Set(function ()
- local _createRoomView = CreateRoomView.new(1)
- _createRoomView.onCeateRoom = function ()
- ViewManager.ChangeView(ViewManager.View_Main,DataManager.CurrenRoom.game_id)
- end
- _createRoomView:Show()
- end)
-
-
+ createRoomBtn.onClick:Set(function()
+ local _createRoomView = CreateRoomView.new(1)
+ _createRoomView.onCeateRoom = function()
+ ViewManager.ChangeView(ViewManager.View_Main, DataManager.CurrenRoom.game_id)
+ end
+ _createRoomView:Show()
+ end)
+
+
local btn_agent = self._view:GetChild("btn_agent")
- --[[ btn_agent.onClick:Set(function()
+ --[[ btn_agent.onClick:Set(function()
local headView = HeadView.new(DataManager.SelfUser,true)
headView:Show()
end)--]]
- btn_agent.displayObject.gameObject:SetActive(false)
-
+ btn_agent.displayObject.gameObject:SetActive(false)
+
local btn_record = self._view:GetChild("btn_record")
- btn_record.onClick:Add(handler(self, function ()
- local _rankView = RankView.new(self,true)
+ btn_record.onClick:Add(handler(self, function()
+ local _rankView = RankView.new(self, true)
_rankView:Show()
end))
- --btn_record.displayObject.gameObject:SetActive(false)
+ --btn_record.displayObject.gameObject:SetActive(false)
local btn_video = self._view:GetChild("btn_video")
--[[btn_video.onClick:Set(function ()
local _rankView = RankView.new(self,true)
_rankView:Show()
end)--]]
- btn_video.displayObject.gameObject:SetActive(false)
+ btn_video.displayObject.gameObject:SetActive(false)
local btn_setting = self._view:GetChild("btn_setting")
- btn_setting.onClick:Set(handler (self , function ()
+ btn_setting.onClick:Set(handler(self, function()
local settingView = LobbySettingView.new()
settingView:Show()
end))
local btn_exit = self._view:GetChild("btn_exit")
- btn_exit.onClick:Set(handler (self , function ()
+ btn_exit.onClick:Set(handler(self, function()
local _curren_msg = MsgWindow.new(self._root_view, '确认退出游戏', MsgWindow.MsgMode.OkAndCancel)
- _curren_msg.onOk:Add( function()
+ _curren_msg.onOk:Add(function()
Application.Quit()
end)
_curren_msg:Show()
end))
- local lst_userBG = self._view:GetChild("n118")
- lst_userBG.displayObject.gameObject:SetActive(false)
+ local lst_userBG = self._view:GetChild("n118")
+ lst_userBG.displayObject.gameObject:SetActive(false)
local lst_user = self._view:GetChild("lst_user")
- lst_user.displayObject.gameObject:SetActive(false)
- --[[ lst_user.onClickItem:Set(function (context)
+ lst_user.displayObject.gameObject:SetActive(false)
+ --[[ lst_user.onClickItem:Set(function (context)
if context.data.name == "real" then
local real_view = RealAddressView.new(0)
real_view:Show()
@@ -138,64 +138,64 @@ function M:InitView(url)
phone_view:Show()
end
end)--]]
- -- self:__ShowShare()
+ -- self:__ShowShare()
local btn_notice = self._view:GetChild("btn_notice")
- --[[ btn_notice.onClick:Set(function()
+ --[[ btn_notice.onClick:Set(function()
local noticeView = NoticeView.new(self._root_view)
noticeView:FillData(DataManager.SelfUser.notices.data)
noticeView:Show()
end)
--]]
- btn_notice.displayObject.gameObject:SetActive(false)
-
+ btn_notice.displayObject.gameObject:SetActive(false)
+
local btn_service = self._view:GetChild("btn_service")
--[[btn_service.onClick:Set(function()
self:__show_service()
end)--]]
- btn_service.displayObject.gameObject:SetActive(false)
+ btn_service.displayObject.gameObject:SetActive(false)
-
- self.groupMainView = GroupMainView.new(self._view:GetChild("group"),self._root_view,self._view)
+
+ self.groupMainView = GroupMainView.new(self._view:GetChild("group"), self._root_view, self._view)
--self.groupMainView:Show()
-
- local btn_more_group = self._view:GetChild("btn_more_group")
- btn_more_group.onClick:Set(function()
- --self.groupMainView._view.visible = true
- ViewUtil.ShowModalWait(self._root_view,"请稍等,获取牌友圈中...")
- local enterGroupCallBackFunc=function (code)
- ViewUtil.CloseModalWait()
- if code==0 then
- self.groupMainView._view.visible = true
- else
- ViewUtil.ErrorTip(10000000,"获取牌友圈失败,请检查网络设置!")
- printlog("获取圈子数据失败=======>>>>")
- end
- end
- self.groupMainView:Show(nil,enterGroupCallBackFunc)
- end)
-
+
+ local btn_more_group = self._view:GetChild("btn_more_group")
+ btn_more_group.onClick:Set(function()
+ --self.groupMainView._view.visible = true
+ ViewUtil.ShowModalWait(self._root_view, "请稍等,获取牌友圈中...")
+ local enterGroupCallBackFunc = function(code)
+ ViewUtil.CloseModalWait()
+ if code == 0 then
+ self.groupMainView._view.visible = true
+ else
+ ViewUtil.ErrorTip(10000000, "获取牌友圈失败,请检查网络设置!")
+ printlog("获取圈子数据失败=======>>>>")
+ end
+ end
+ self.groupMainView:Show(nil, enterGroupCallBackFunc)
+ end)
+
-- local btn_more_group = self._view:GetChild("btn_more_group")
-- btn_more_group.touchable = true
-- btn_more_group.onClick:Set(function()
- -- local groups = DataManager.groups.groupList
+ -- local groups = DataManager.groups.groupList
-- if #groups == 0 then
-- self.groupMainView._view.visible = true
- -- self.groupMainView:Show()
- -- -- if not DataManager.SelfUser.phone then
- -- -- local phone_view = PhoneBindView.new()
- -- -- phone_view:Show()
- -- -- return
- -- -- end
- -- else
- -- self.groupMainView:DEnterGroup()
- -- end
- -- --self.groupMainView:DEnterGroup()
-
+ -- self.groupMainView:Show()
+ -- -- if not DataManager.SelfUser.phone then
+ -- -- local phone_view = PhoneBindView.new()
+ -- -- phone_view:Show()
+ -- -- return
+ -- -- end
+ -- else
+ -- self.groupMainView:DEnterGroup()
+ -- end
+ -- --self.groupMainView:DEnterGroup()
+
-- end)
-
- -- self.btn_joingroup.onClick:Set(function()
+
+ -- self.btn_joingroup.onClick:Set(function()
-- local groups = DataManager.groups.groupList
-- if #groups == 0 then
-- local jgv = JoinGroupView.new(self._root_view)
@@ -218,10 +218,10 @@ function M:InitView(url)
-- end
-- end)
-- self.btn_joingroup.touchable = true
-
+
local lst_game = self._view:GetChild("lst_game")
- lst_game.displayObject.gameObject:SetActive(false)
+ lst_game.displayObject.gameObject:SetActive(false)
--[[local games = DataManager.SelfUser.games
for i = 1, math.min( 4,#games ) do
local tem = games[i]
@@ -247,68 +247,66 @@ function M:InitView(url)
self:__GetMessage()
end
-
function M:OnJoinRoomAction(context)
local joinRoomView = JoinRoomView.new(self._root_view)
joinRoomView:Show()
end
function M:__show_service()
- local _buy_win = BaseWindow.new("ui://Lobby/Win_service",self._root_view)
+ local _buy_win = BaseWindow.new("ui://Lobby/Win_service", self._root_view)
_buy_win._close_destroy = true
_buy_win:Show()
local sview = _buy_win._view
local btn_copy = sview:GetChild("btn_copy")
- btn_copy.onClick:Set(function ()
- GameApplication.Instance:CopyToClipboard("xbkf888108")--湘北
+ btn_copy.onClick:Set(function()
+ GameApplication.Instance:CopyToClipboard("xbkf888108") --湘北
-- GameApplication.Instance:CopyToClipboard("ttwmq008")--fb
_buy_win:Destroy()
end)
end
function M:__GetMessage(data)
- -- print("on GetMessage~~~~~~~~~~~~~~~~~~~~~~~~~~~")
- if not data or not data.notice_list then
- self._mesList = ""
- else
- local message = self._view:GetChild("com_message")
- message.visible = true
- local mesl = {}
- for i = 1, #data.notice_list do
- mesl[i] = data.notice_list[i].informContent
+ -- print("on GetMessage~~~~~~~~~~~~~~~~~~~~~~~~~~~")
+ if not data or not data.notice_list then
+ self._mesList = ""
+ else
+ local message = self._view:GetChild("com_message")
+ message.visible = true
+ local mesl = {}
+ for i = 1, #data.notice_list do
+ mesl[i] = data.notice_list[i].informContent
+ end
+ self._mesList = mesl
end
- self._mesList = mesl
- end
-
- self:__moveMsg(0)
+
+ self:__moveMsg(0)
end
function M:__PopMsg(index)
- local num = #self._mesList
- index = index + 1
- if index > num then index = 1 end
- local str = tostring(self._mesList[index])
- if str == nil or str == "nil" then str = "" end
- return index ,string.gsub(str, "\r", "" )
+ local num = #self._mesList
+ index = index + 1
+ if index > num then index = 1 end
+ local str = tostring(self._mesList[index])
+ if str == nil or str == "nil" then str = "" end
+ return index, string.gsub(str, "\r", "")
end
function M:__moveMsg(index)
- -- print("on moveMsg!!!!!!!!!!!!!!!!!!!!!!!!!")
+ -- print("on moveMsg!!!!!!!!!!!!!!!!!!!!!!!!!")
if not self._tex_message then return end
- index, self._tex_message.text =self:__PopMsg(index)
+ index, self._tex_message.text = self:__PopMsg(index)
self._tex_message.x = self._message.width
if self._mesTw then
TweenUtils.Kill(self._mesTw)
end
- local change = -self._message.width *2
+ local change = -self._message.width * 2
local dd = self._tex_message.width / self._message.width
if dd < 1 then dd = 1 end
- self._mesTw = TweenUtils.TweenFloat(0,1*dd,10*dd,function(value)
-
- self._tex_message.x =self._message.width + (change * value)
+ self._mesTw = TweenUtils.TweenFloat(0, 1 * dd, 10 * dd, function(value)
+ self._tex_message.x = self._message.width + (change * value)
end)
- TweenUtils.OnComplete(self._mesTw,function ()
+ TweenUtils.OnComplete(self._mesTw, function()
self._mesTw = nil
if (#self._mesList == 0) then
self:__GetMessage()
@@ -319,19 +317,18 @@ function M:__moveMsg(index)
end)
end
-
function M:__ShowShare()
local pop_share = self._view:GetChild("pop_share")
local shareUrl = GetGameInfo("invite_link") .. "?uid=" .. DataManager.SelfUser.account_id
- --print("shareUrl=================")
- --print(shareUrl)
+ --print("shareUrl=================")
+ --print(shareUrl)
local btn_wx_session = pop_share:GetChild("btn_wx_session")
- btn_wx_session.onClick:Add(function ()
- shareQRCodePicture(shareUrl,0)
+ btn_wx_session.onClick:Add(function()
+ shareQRCodePicture(shareUrl, 0)
end)
local btn_wx_line = pop_share:GetChild("btn_wx_line").asButton
- btn_wx_line.onClick:Add(function ()
- shareQRCodePicture(shareUrl,1)
+ btn_wx_line.onClick:Add(function()
+ shareQRCodePicture(shareUrl, 1)
end)
end
@@ -344,9 +341,9 @@ function M:OnUpdate()
end
end
-function M:Close( )
+function M:Close()
BaseView.Close(self)
- UpdateBeat:Remove(self.OnUpdate,self)
+ UpdateBeat:Remove(self.OnUpdate, self)
coroutine.stopAll()
if self._mesTw then
TweenUtils.Kill(self._mesTw)
@@ -356,7 +353,7 @@ function M:Close( )
end
function M:Destroy()
- UpdateBeat:Remove(self.OnUpdate,self)
+ UpdateBeat:Remove(self.OnUpdate, self)
if self._mesTw then
TweenUtils.Kill(self._mesTw)
end
@@ -371,7 +368,7 @@ function M:Show()
--print("on lobbyView show~~~~~~")
BaseView.Show(self)
ViewUtil.PlaySoundBg()
- UpdateBeat:Add(self.OnUpdate,self)
+ UpdateBeat:Add(self.OnUpdate, self)
-- 如果在圈子内的房间,显示tip
local user = DataManager.SelfUser
@@ -380,9 +377,9 @@ function M:Show()
local msg_tip = MsgWindow.new(self._root_view, "还在圈子的房间中,现在重连吗?", MsgWindow.MsgMode.OkAndCancel)
msg_tip.onOk:Add(function()
if self.groupMainView ~= nil then
- self.groupMainView:Show(user.group_id)
+ self.groupMainView:Show(user.group_id)
end
- end)
+ end)
msg_tip:Show()
tem.auto_show = false
else
@@ -413,15 +410,15 @@ end
function M:GetPlayerInfoData()
local loddyCtr1 = ControllerManager.GetController(LoddyController)
loddyCtr1:UpdatePlayerInfo(function(result, data)
- if result then
- self:ShowPlayerInfo(data.raffle, data.diamo, data.newMail)
- end
- end)
+ if result then
+ self:ShowPlayerInfo(data.raffle, data.diamo, data.newMail)
+ end
+ end)
end
function M:ShowPlayerInfo(raffle, diamo, newMail)
self._view:GetChild("gcm_diamo"):GetChild("title").text = diamo or 0
-end
+end
function M:OnApplicationPause()
ControllerManager.WebClient:clearActionQueue()
@@ -443,4 +440,58 @@ function M:OnApplicationActive()
DataManager.SelfUser.cur_group:Reconnect()
end
end
-end
\ No newline at end of file
+end
+
+function M:InitClip()
+ local taohuaEnd = 114
+ local taohuaName = "ui://Lobby/taohua_00"
+ local taohua = self._view:GetChild('clip_bg')
+ local taohuaIndex = 0
+
+ local renwuEnd = 143
+ local renwuName = "ui://Lobby/renwu-AE_00"
+ local renwu = self._view:GetChild('clip_renwu')
+ local renwuIndex = 0
+
+ local pukeEnd = 60
+ local pukeName = "ui://Lobby/puke_00"
+ local puke = self._view:GetChild('btn_ChuangJian')
+ local pukeIndex = 0
+
+ local jiangbeiEnd = 150
+ local jiangbeiName = "ui://Lobby/jiangbei_00"
+ local jiangbei = self._view:GetChild('btn_more_group')
+ local jiangbeiIndex = 0
+
+ local hechengEnd = 96
+ local hechengName = "ui://Lobby/hecheng 1_00"
+ local hecheng = self._view:GetChild('btn_joinroom')
+ local hechengIndex = 0
+ coroutine.start(
+ function()
+ while true do
+ taohuaIndex = self:ReplaceClip1(taohuaEnd, taohua, taohuaIndex, taohuaName)
+ renwuIndex = self:ReplaceClip1(renwuEnd, renwu, renwuIndex, renwuName)
+ pukeIndex = self:ReplaceClip2(pukeEnd, puke, pukeIndex, pukeName)
+ jiangbeiIndex = self:ReplaceClip2(jiangbeiEnd, jiangbei, jiangbeiIndex, jiangbeiName)
+ hechengIndex = self:ReplaceClip2(hechengEnd, hecheng, hechengIndex, hechengName)
+ end
+ end
+ )
+end
+
+function M:ReplaceClip1(e, t, i, n)
+ if i > e then
+ i = 0
+ end
+ t.url = string.format("%s%03d", n, i)
+ return i + 1
+end
+
+function M:ReplaceClip2(e, t, i, n)
+ if i > e then
+ i = 0
+ end
+ t.icon = string.format("%s%03d", n, i)
+ return i + 1
+end
diff --git a/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua b/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua
index ac0ee3fe..24a426c2 100644
--- a/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua
@@ -11,6 +11,8 @@ local GroupMngFagPackView = import('.GroupMngFagPackView')
local GroupMailView = import('.GroupMailView')
local GroupSelectPlayView = import('.GroupSelectPlayView')
local GroupMngSettingView = import('.GroupMngSettingView')
+local GroupMngMemberInviteView = import(".MngView.GroupMngMemberInviteView")
+local GroupMngMemberHpListView = import(".MngView.GroupMngMemberHpListView")
-- local HeadView = require('Game/View/LobbyHeadView')
GroupNumberInputView_Game = import(".MngView.GroupNumberInputView")
@@ -1626,10 +1628,13 @@ function M:__refreshManager()
btn_partner.onClick:Set(
function()
--print("成员..........................................")
- if not self.mng_view_invite then
- self.mng_view_invite = GroupManagerView.new(self._root_view, self.curGroup.id, 5)
+ if not self.mng_view3 then
+ self.mng_view3 = GroupManagerView.new(self._root_view, self.curGroup.id, 5)
+ self.mng_view3:SetCurrentGroupInfoViewIns(function()
+ self:OnclickMember()
+ end)
end
- self.mng_view_invite:Show()
+ self.mng_view3:Show()
-- self:SetRoomListVisible(false)
end
)
@@ -1795,15 +1800,23 @@ function M:__loadGroupData()
---[[
btn_invite.onClick:Set(function()
--print("成员..........................................")
- if not self.mng_view3 then
- self.mng_view3 = GroupManagerView.new(self._root_view, self.curGroup.id, 6)
- self.mng_view3:SetCurrentGroupInfoViewIns(function()
- self:OnclickMember()
- end)
+ if not self.mng_view_invite then
+ self.mng_view_invite = GroupMngMemberInviteView.new(self.curGroup.id)
end
- self.mng_view3:Show()
+ print("lingmeng-self.mng_view_invite", self.mng_view_invite)
+ self.mng_view_invite:Show()
-- self:SetRoomListVisible(false)
end)
+
+ --查看成员hp值,带分配
+ local btn_hp = self._view:GetChild('btn_hp')
+ btn_hp.onClick:Set(function()
+ if not self.mng_view_hp then
+ self.mng_view_hp = GroupMngMemberHpListView.new(self.curGroup.id)
+ end
+ print("lingmeng-self.mng_view_invite", self.mng_view_hp)
+ self.mng_view_hp:Show()
+ end)
--]]
-- local btn_rank = self._view:GetChild("btn_rank")
@@ -2045,6 +2058,9 @@ function M:Destroy()
if self.mng_view_invite then
self.mng_view_invite:Destroy()
end
+ if self.mng_view_hp then
+ self.mng_view_hp:Destroy()
+ end
DataManager.SelfUser.cur_group = nil
if self._tw_notice then
self._tw_notice:Stop()
diff --git a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupAddMemberInfoView.lua b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupAddMemberInfoView.lua
index c4358ccd..f2af2c87 100644
--- a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupAddMemberInfoView.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupAddMemberInfoView.lua
@@ -2,59 +2,56 @@ local GroupAddMemberInfoView = {}
local M = GroupAddMemberInfoView
-function GroupAddMemberInfoView.new(group_id,member_id)
- setmetatable(M, {__index = BaseView})
- local self = setmetatable({}, {__index = M})
- self.class = "GroupAddMemberInfoView"
- self.group_id = group_id
- self.member_id = member_id
- self:init("ui://NewGroup/Win_PlayerInfoForAdd")
- return self
+function GroupAddMemberInfoView.new(group_id, member_id)
+ setmetatable(M, { __index = BaseView })
+ local self = setmetatable({}, { __index = M })
+ self.class = "GroupAddMemberInfoView"
+ self.group_id = group_id
+ self.member_id = member_id
+ self:init("ui://NewGroup/Win_PlayerInfoForAdd")
+ return self
end
function M:init(url)
- BaseWindow.init(self,url)
- self.Tx=self._view:GetChild("btn_head")
- self.Name=self._view:GetChild("tex_name")
- self.Id=self._view:GetChild("tex_id")
+ BaseWindow.init(self, url)
+ self.Tx = self._view:GetChild("btn_head")
+ self.Name = self._view:GetChild("tex_name")
+ self.Id = self._view:GetChild("tex_id")
self._view:GetChild("btn_close").onClick:Set(
- function ()
- self:Destroy()
- end
- )
+ function()
+ self:Destroy()
+ end
+ )
self._view:GetChild("btn_qc").onClick:Set(
- function ()
- self:Destroy()
- end
- )
+ function()
+ self:Destroy()
+ end
+ )
self._view:GetChild("btn_qd").onClick:Set(
- function ()
- ViewUtil.ShowModalWait()
- local fgCtr = ControllerManager.GetController(NewGroupController)
- fgCtr:FG_AddMember(
- self.group_id,
- self.member_id,
- function (response)
- ViewUtil.CloseModalWait()
- if (response.ReturnCode == 0) then
- ViewUtil.ShowBannerOnScreenCenter('添加成功!', 1)
- else
- ViewUtil.ErrorTip(response.ReturnCode, '邀请玩家失败!')
- end
+ function()
+ ViewUtil.ShowModalWait()
+ local fgCtr = ControllerManager.GetController(NewGroupController)
+ fgCtr:FG_AddMember(
+ self.group_id,
+ self.member_id,
+ function(response)
+ ViewUtil.CloseModalWait()
+ if (response.ReturnCode == 0) then
+ ViewUtil.ShowBannerOnScreenCenter('添加成功!', 1)
+ else
+ ViewUtil.ErrorTip(response.ReturnCode, '邀请玩家失败!')
end
- )
- end
- )
-
+ end
+ )
+ end
+ )
end
-
function M:SetAddMember(data)
ImageLoad.Load(data.portrait, self.Tx._iconObject)
- self.Name.text=data.nick
- self.Id.text=data.uid
+ self.Name.text = data.nick
+ self.Id.text = data.uid
self:Show()
end
-
-return M
\ No newline at end of file
+return M
diff --git a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberHpListView.lua b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberHpListView.lua
new file mode 100644
index 00000000..f0de9f91
--- /dev/null
+++ b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberHpListView.lua
@@ -0,0 +1,596 @@
+-- 牌友圈成员列表
+local GroupNumberInputView = import('.GroupNumberInputView')
+local GroupMemberFagLogView = import('.GroupMemberFagLogView')
+local GroupSetPermissionView = import('.GroupSetPermissionView')
+local GroupBanSameTableView = import('.GroupBanSameTableView')
+local GroupMemberOperateView = import('.GroupMemberOperateView')
+local GroupAddMemberInfoView = import('.GroupAddMemberInfoView')
+local GroupStatMember = import('.GroupStatMember')
+local GroupMngFagPackView = import('../GroupMngFagPackView')
+
+
+local MngPermission = import('.MngPermission')
+
+local GroupMngMemberHpListView = {
+ numberMap = {}
+}
+
+local M = GroupMngMemberHpListView
+setmetatable(M, { __index = BaseWindow })
+
+local gid
+function GroupMngMemberHpListView.new(group_id, blur_view)
+ local self = setmetatable({}, { __index = M })
+ self.class = 'GroupMngMemberListView1'
+ self.group_id = group_id
+ self.curGroup = DataManager.groups:get(self.group_id)
+ self.member_data = {}
+ self.online = 2
+ self.stype = 1
+ self:FillView()
+ return self
+end
+
+function M:initData()
+ if self._view:GetController('page').selectedIndex == 0 then
+ self:GetMemberData(0)
+ elseif self._view:GetController('page').selectedIndex == 1 then
+ self:GetMemberData(0)
+ --self:GetJoinsData()
+ end
+end
+
+-- 管理员权限
+local MngPermissionList = {
+ DeleteMember = 1,
+ -- 删除成员
+ AddMember = 2,
+ --添加成员
+ SetFag = 3,
+ --设置体力值
+ BanPlaying = 4,
+ --禁止游戏
+ BanSameTable = 5
+ --禁止同桌
+}
+local function CheckPermission(lev, permission)
+ if lev == 2 and not permission then
+ ViewUtil.ErrorTip(nil, '您无权操作!如有需要请联系盟主。', 1)
+ return false
+ end
+ return true
+end
+
+function M:FillView()
+ BaseWindow.init(self, 'ui://NewGroup/View_GroupMemberHpList')
+
+ local rtype = self._view:GetChild("n132")
+ rtype.visible = false
+
+ rtype.onChanged:Set(function()
+ if tostring(self.online) == rtype.value then
+ return
+ end
+ self.online = tonumber(rtype.value)
+ self:GetMemberData(0)
+ --printlog("aaaaaaaa222222222222222222222222222222")
+ end)
+
+ local rtype = self._view:GetChild("n136")
+
+ rtype.onClick:Set(function()
+ self:GetMemberData(0)
+ --printlog("aaaaaaaa222222222222222222222222222222")
+ end)
+
+ -- 初始化成员列表
+ self.lst_member = self._view:GetChild('lst_member')
+ self.lst_member:SetVirtual()
+ self.lst_member.itemRenderer = function(index, obj)
+ self:OnRenderItem(index, obj)
+ end
+ self.lst_member.scrollPane.onPullUpRelease:Set(
+ function()
+ --printlog("aaaaaaaaaaaaaaaaaaaaaa bbbbbbbbbbbbbbbbbb ",self.lst_member.numItems)
+ self:GetMemberData(self.lst_member.numItems)
+ end
+ )
+
+ --local n50=self._view:GetChild('n50')
+ --print(n50)
+ --n50.displayObject.gameObject.transform.localPosition.x=214
+ --print(n50.displayObject.gameObject.transform.localPosition.x)
+ -- 搜索玩家
+ local ctr_search = self._view:GetController('search')
+ self._view:GetChild('btn_search').onClick:Set(
+ function()
+ ViewUtil.ShowModalWait(nil)
+ local text = self._view:GetChild('tex_id').text
+ local qid, qnick
+ if text == "" then
+ ViewUtil.CloseModalWait()
+ ViewUtil.ErrorTip(nil, '输入不能为空')
+ return
+ end
+ qid = tonumber(text) or 0
+ qnick = text
+ local fgCtr = ControllerManager.GetController(NewGroupController)
+ fgCtr:FG_FindMember(
+ self.group_id,
+ qid,
+ function(res)
+ ViewUtil.CloseModalWait()
+ if self._is_destroy then
+ return
+ end
+ if res.ReturnCode ~= 0 then
+ ViewUtil.ErrorTip(res.ReturnCode, '找不到成员')
+ else
+ self._view:GetChild('tex_id').text = ''
+ ctr_search.selectedIndex = 1
+ local item_result = self._view:GetChild('lst_member_find')
+ item_result:RemoveChildrenToPool()
+
+ for j = 1, #res.Data.members do
+ local tem = item_result:AddItemFromPool()
+ self:FillItem(tem, res.Data.members[j], true, j)
+ end
+ end
+ end,
+ qnick
+ )
+ end
+ )
+ local btn_back = self._view:GetChild('btn_back')
+ btn_back.onClick:Set(
+ function()
+ self.lst_member.numItems = #self.member_data
+ end
+ )
+
+ local group = DataManager.groups:get(self.group_id)
+ local perm_array = MngPermission.getPermData(group.permission)
+
+ self:GetMemberData(0)
+end
+
+-- 快速访问
+function M:navigation()
+ self._view:GetController('page').selectedIndex = 2
+ self:initData()
+end
+
+-- 获取成员数据
+function M:GetMemberData(index)
+ --print("11111111111111111111")
+ --print(debug.traceback())
+ -- local iClear = false
+ -- local rtype = self._view:GetChild("n132").value
+ -- if tostring(self.online) ~= rtype then
+ -- iClear = true
+ -- end
+
+ local group = DataManager.groups:get(self.group_id)
+ if index == 0 then
+ group:clearMember()
+ end
+
+ ViewUtil.ShowModalWait(nil)
+ local fgCtr = ControllerManager.GetController(NewGroupController)
+ fgCtr:FG_GroupMembers12(
+ self.group_id,
+ index,
+ 6,
+ self.stype,
+ self.online,
+ function(res)
+ ViewUtil.CloseModalWait()
+ if res.ReturnCode ~= 0 then
+ ViewUtil.ErrorTip(res.ReturnCode, '获取成员列表失败')
+ else
+ self.member_data = group.members
+ self.lst_member.numItems = group.member_num
+ if index == 0 then
+ -- self._view:GetChild('tex_memb_num').text = res.Data.member_num
+ -- self._view:GetChild('tex_total_hp').text = d2ad(res.Data.hp_num1+res.Data.otherHp)
+ end
+ end
+ end
+ )
+end
+
+-- 修改体力值
+local function __change_fag(gid, pid, is_add, cur_hp, callback)
+ local gniv =
+ GroupNumberInputView.new(
+ nil,
+ function(num)
+ num = ad2d((is_add and num or -num))
+ ViewUtil.ShowModalWait()
+ local fgCtr = ControllerManager.GetController(NewGroupController)
+ fgCtr:FG_ChangeFag(
+ gid,
+ pid,
+ num,
+ function(res1)
+ ViewUtil.CloseModalWait()
+ -- if gniv._is_destroy then
+ -- return
+ -- end
+ if (res1.ReturnCode == 0) then
+ callback(res1.Data)
+ else
+ ViewUtil.ErrorTip(res1.ReturnCode, '更改积分失败!')
+ end
+ end
+ )
+ -- item:GetChild("tex_fag").text = (self_user or show_fag) and num or show_fag_str
+ end,
+ is_add and 1 or 2,
+ cur_hp and d2ad(cur_hp) or nil
+ )
+ gniv:Show()
+end
+
+-- 填充成员对象
+function M:FillItem(obj, member, refresh, index)
+ local group = DataManager.groups:get(self.group_id)
+ obj:GetChild('tex_name').text = ViewUtil.stringEllipsis(member.nick)
+ obj:GetChild('btn_head').icon = 'ui://Common/Head0'
+ obj:GetChild('tex_childId').text = index
+ ImageLoad.Load(member.portrait, obj:GetChild('btn_head')._iconObject, self.class)
+ -- obj.data = member.id
+ -- 显示玩家标签,合伙人、管理员
+ -- local ctr_type = obj:GetController('type')
+ local tex_lev = obj:GetChild('tex_lev')
+
+ if member.lev < 3 then
+ if member.lev == 1 then
+ tex_lev.text = "馆主"
+ else
+ tex_lev.text = "副馆主"
+ end
+ elseif member.partnerLev ~= 0 then
+ tex_lev.text = "董事"
+ else
+ tex_lev.text = "成员"
+ end
+
+ -- 体力值数据
+ local tex_fag = obj:GetChild('tex_fag')
+ tex_fag.text = d2ad(member.hp)
+
+ obj:GetChild('tex_id').text = '' .. member.uid
+ --obj:GetChild("tex_cost_count").text = d2ad(member.last_hp_cost)
+
+ --if member.online == 1 then
+ -- obj:GetChild('tex_last_login').text = '在线'
+ -- else
+ if member.last_time ~= 0 then
+ -- local now_time = os.date("*t",now)
+ -- local today = os.time({year=now_time.year, month=now_time.month, day=now_time.day, hour=0,min=0,sec=0})
+ -- local cha = math.ceil((today - member.last_time) / (24 * 60 *60))
+ -- if (cha > 0) then
+ -- obj:GetChild('tex_last_login').text = cha.."天前" --'最近登录\n' .. os.date('%Y/%m/%d', member.last_time)
+ -- else
+ -- obj:GetChild('tex_last_login').text = os.date('%Y/%m/%d', member.last_time)
+ -- end
+ --print("11111aaaaaaaaaaaaaaaaaaaa ",os.date('%Y/%m/%d', member.last_time))
+ obj:GetChild('tex_last_login').text = "最近登录:" .. os.date('%Y/%m/%d', member.last_time)
+ else
+ obj:GetChild('tex_last_login').text = '加入时间\n' .. os.date('%Y/%m/%d', member.join_time)
+ end
+ -- end
+
+
+ obj:GetChild('tex_zongchangci').text = member.total_round
+ obj:GetChild('tex_ruhui').text = os.date('%Y/%m/%d %H:%M:%S', member.join_time)
+
+ --上级
+ obj:GetChild('tex_shangjiName').text = member.parentId_nick or ""
+ if member.parentId == 0 then
+ obj:GetChild('tex_shangjiID').text = ""
+ else
+ obj:GetChild('tex_shangjiID').text = member.parentId
+ end
+
+
+ local perm_array = MngPermission.getPermData(group.permission)
+ -- 体力值操作按钮事件
+ if group.lev < 3 or member.parentId == DataManager.SelfUser.account_id then
+ obj:GetController('fag').selectedIndex = 1
+ else
+ obj:GetController('fag').selectedIndex = 0
+ end
+
+ --obj:GetChild("btn_tag").title = member.score
+
+ local fgCtr = ControllerManager.GetController(NewGroupController)
+ local p = group:getMember(member.uid)
+ local mp = group:getMember(DataManager.SelfUser.account_id)
+ obj:GetChild('btn_fag_add').onClick:Set(
+ function()
+ if not CheckPermission(group.lev, perm_array[MngPermissionList.SetFag]) then
+ return
+ end
+ __change_fag(
+ self.group_id,
+ member.uid,
+ true,
+ nil,
+ function(data)
+ local hp = data.hp
+ member.hp = hp
+ if p then
+ p.hp = hp
+ if mp and mp ~= p then
+ local mhp = data.mhp
+ mp.hp = mhp
+ end
+ end
+ self.lst_member.numItems = #self.member_data
+ -- 搜索出的玩家显示
+ if self._view:GetController('search').selectedIndex == 1 then
+ obj:GetChild('tex_fag').text = d2ad(hp)
+ end
+ end
+ )
+ end
+ )
+ obj:GetChild('btn_fag_minus').onClick:Set(
+ function()
+ if not CheckPermission(group.lev, perm_array[MngPermissionList.SetFag]) then
+ return
+ end
+ __change_fag(
+ self.group_id,
+ member.uid,
+ false,
+ member.hp,
+ function(data)
+ local hp = data.hp
+ member.hp = hp
+ if p then
+ p.hp = hp
+ if mp and mp ~= p then
+ local mhp = data.mhp
+ mp.hp = mhp
+ end
+ end
+ self.lst_member.numItems = #self.member_data
+ -- 搜索出的玩家显示
+ if self._view:GetController('search').selectedIndex == 1 then
+ obj:GetChild('tex_fag').text = d2ad(hp)
+ end
+ end
+ )
+ end
+ )
+
+ obj:GetChild('btn_score_detail').onClick:Set(
+ function()
+ local mflv = GroupMemberFagLogView.new(self.group_id, member)
+ mflv:Show()
+ end
+ )
+
+ obj:GetChild('btn_operate').onClick:Set(
+ function()
+ local mflv =
+ GroupMemberOperateView.new(
+ self.group_id,
+ member,
+ function(delete)
+ if delete ~= nil and delete == true then
+ local group = DataManager.groups:get(self.group_id)
+ self.member_data = group.members
+ self.lst_member.numItems = #self.member_data
+ self._view:GetController('search').selectedIndex = 0
+ else
+ self.lst_member.numItems = self.lst_member.numItems
+ if refresh then
+ self:FillItem(obj, member)
+ end
+ end
+ end,
+ function()
+ self:GetMemberData(0)
+ end
+ )
+ mflv:Show()
+ end
+ )
+
+ local btnBxx = obj:GetChild('btn_bxx')
+ btnBxx.visible = (not (member.lev == 3 and member.partnerLev == 0)) and
+ not (DataManager.SelfUser.account_id == member.uid)
+ --btnBxx.visible = not (DataManager.SelfUser.account_id == member.uid)
+ obj:GetChild('btn_bxx').onClick:Set(
+ function()
+ local ctrNum = 1
+ -- if not (member.lev == 3 and member.partnerLev == 0) then
+ -- ctrNum = 2
+ -- end
+ ctrNum = 2
+ local gmv = GroupMngFagPackView.new(self.curGroup.id, self._root_view, ctrNum, member.uid)
+ gmv:SetCallback(
+ function()
+ btnBxx.selected = false
+ end
+ )
+ gmv:Show()
+ end
+ )
+
+ local superBtn = obj:GetChild('super_btn')
+ superBtn.visible = group.lev == 1
+ -- obj:GetChild("super_btn").onClick:Set(
+ -- function()
+ -- ViewUtil.ShowModalWait(nil)
+ -- local text = member.uid
+ -- local qid, qnick
+ -- if text == "" then
+ -- ViewUtil.CloseModalWait()
+ -- ViewUtil.ErrorTip(nil, '输入不能为空')
+ -- return
+ -- end
+ -- qid = tonumber(text) or 0
+ -- qnick = tostring(text)
+ -- local fgCtr = ControllerManager.GetController(NewGroupController)
+ -- fgCtr:FG_FindMember(
+ -- self.group_id,
+ -- qid,
+ -- function(res)
+ -- ViewUtil.CloseModalWait()
+ -- if self._is_destroy then
+ -- return
+ -- end
+ -- if res.ReturnCode ~= 0 then
+ -- ViewUtil.ErrorTip(res.ReturnCode, '找不到成员')
+ -- else
+ -- self._view:GetChild('tex_id').text = ''
+ -- self._view:GetController('search').selectedIndex = 1
+ -- local item_result = self._view:GetChild('lst_member_find')
+ -- item_result:RemoveChildrenToPool()
+
+ -- for j = 1, #res.Data.members do
+ -- local tem = item_result:AddItemFromPool()
+ -- self:FillItem(tem, res.Data.members[j], true, j)
+ -- end
+ -- end
+ -- end,
+ -- qnick,
+ -- 1
+ -- )
+ -- end
+ -- )
+ obj:GetChild("super_btn").onClick:Set(
+ function()
+ ViewUtil.ShowModalWait(nil)
+ local text = member.uid
+ local tempNumberList = self.numberMap[text]
+ if tempNumberList == nil then
+ tempNumberList = {}
+ for j = 1, #self.member_data do
+ local number = self.member_data[j]
+ if number.parentId == text then
+ table.insert(tempNumberList, number)
+ end
+ end
+ self.numberMap[text] = tempNumberList
+ end
+ self._view:GetChild('tex_id').text = ''
+ self._view:GetController('search').selectedIndex = 1
+ local item_result = self._view:GetChild('lst_member_find')
+ item_result:RemoveChildrenToPool()
+
+ ViewUtil.CloseModalWait()
+ for j = 1, #tempNumberList do
+ local tem = item_result:AddItemFromPool()
+ self:FillItem(tem, tempNumberList[j], true, j)
+ end
+ end
+ )
+end
+
+function M:OnRenderItem(index, obj)
+ --printlog("aaaaaaaaaawwwwwwwwwwwwwwwwwwwwwwwwwwww ",index)
+ local member = self.member_data[index + 1]
+ if member then
+ self:FillItem(obj, member, false, index + 1)
+ end
+end
+
+--获取申请列表
+function M:GetJoinsData()
+ local group = DataManager.groups:get(self.group_id)
+ if group.joins > 0 then
+ ViewUtil.ShowModalWait()
+ local fgCtr = ControllerManager.GetController(NewGroupController)
+ fgCtr:FG_GroupJoins(
+ self.group_id,
+ function(res)
+ ViewUtil.CloseModalWait()
+ if (res.ReturnCode == 0) then
+ local joins = res.Data.joins
+ group.joins = #joins
+ if #joins == 0 then
+ group.update_joins = true
+ end
+ self:FillJoinList(joins)
+ else
+ ViewUtil.ErrorTip(res.ReturnCode, '获取申请列表失败!')
+ self:FillJoinList({})
+ end
+ end
+ )
+ else
+ self:FillJoinList({})
+ end
+end
+
+--填充申请
+function M:FillJoinList(data)
+ local lst_joins = self._view:GetChild('lst_joins')
+ lst_joins:RemoveChildrenToPool()
+ for i = 1, #data do
+ local item = lst_joins:AddItemFromPool()
+ item:GetChild('tex_name').text = ViewUtil.stringEllipsis(data[i].nick)
+ item:GetChild('tex_id').text = data[i].id
+ local btn_head = item:GetChild('btn_head')
+ ImageLoad.Load(data[i].portrait, btn_head._iconObject)
+ item:GetChild('btn_yes').onClick:Set(
+ function()
+ self:VerifyPlayerJoin(data[i].id, true)
+ end
+ )
+ item:GetChild('btn_no').onClick:Set(
+ function()
+ self:VerifyPlayerJoin(data[i].id, false)
+ end
+ )
+ end
+end
+
+function M:VerifyPlayerJoin(id, allow)
+ ViewUtil.ShowModalWait()
+ local fgCtr = ControllerManager.GetController(NewGroupController)
+ fgCtr:FG_GroupVerifyJoin(
+ self.group_id,
+ id,
+ allow,
+ function(res)
+ ViewUtil.CloseModalWait()
+ if (res.ReturnCode == 0) then
+ self:GetJoinsData()
+ else
+ ViewUtil.ErrorTip(res.ReturnCode, '操作申请失败')
+ end
+ end
+ )
+end
+
+function M:OnNumButtonAction(context)
+ local typer = string.sub(context.sender.name, 5)
+ if typer == 'del' then
+ if (self._currenIndex > 0) then
+ self._currenIndex = self._currenIndex - 1
+ self._texnum_str = string.sub(self._texnum_str, 0, self._currenIndex)
+ self.tex_num.text = self._texnum_str
+ end
+ else
+ if (self._currenIndex < 6) then
+ self._currenIndex = self._currenIndex + 1
+ self._texnum_str = self._texnum_str .. typer
+ self.tex_num.text = self._texnum_str
+ end
+ end
+end
+
+function M:ClearNumTex()
+ self._texnum_str = ''
+ self._currenIndex = 0
+ self.tex_num.text = self._texnum_str
+end
+
+return M
diff --git a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberInviteView.lua b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberInviteView.lua
index 39fedd8f..5a8424e9 100644
--- a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberInviteView.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberInviteView.lua
@@ -12,10 +12,10 @@ local MngPermission = import('.MngPermission')
local GroupMngMemberInviteView = {}
local M = GroupMngMemberInviteView
-
+setmetatable(M, { __index = BaseWindow })
local gid
function GroupMngMemberInviteView.new(group_id, blur_view)
- local self = M
+ local self = setmetatable({}, { __index = M })
self.class = 'GroupMngMemberInviteView'
self.group_id = group_id
self.member_data = {}
@@ -23,14 +23,6 @@ function GroupMngMemberInviteView.new(group_id, blur_view)
return self
end
-function M:initData()
- -- if self._view:GetController('page').selectedIndex == 0 then
- -- self:GetMemberData(0)
- -- elseif self._view:GetController('page').selectedIndex == 1 then
- -- self:GetJoinsData()
- -- end
-end
-
-- 管理员权限
local MngPermissionList = {
DeleteMember = 1,
@@ -53,7 +45,7 @@ local function CheckPermission(lev, permission)
end
function M:FillView()
- self._view = UIPackage.CreateObjectFromURL('ui://NewGroup/View_GroupMemberInvite')
+ BaseWindow.init(self, 'ui://NewGroup/View_GroupMemberInviteAlone')
local group = DataManager.groups:get(self.group_id)
local perm_array = MngPermission.getPermData(group.permission)
diff --git a/lua_probject/base_project/Game/View/NewGroup/MngView/MngPageConfig.lua b/lua_probject/base_project/Game/View/NewGroup/MngView/MngPageConfig.lua
index 39fe7aaa..fade21e6 100644
--- a/lua_probject/base_project/Game/View/NewGroup/MngView/MngPageConfig.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/MngView/MngPageConfig.lua
@@ -17,7 +17,6 @@ local GroupMngPartnerStatView = import(".GroupMngPartnerStatView")
local GroupMngMemberInfoView = import(".GroupMngMemberInfoView")
local GroupMngXingYunStatView = import(".GroupMngXingYunStatView")
local GroupMngZuanShiStatView = import(".GroupMngZuanShiStatView")
-local GroupMngMemberInviteView = import(".GroupMngMemberInviteView")
local MngPageConfig = {}
-- 界面配置表
@@ -46,7 +45,6 @@ MngPageConfig.PageList = {
{ id = 22, title = "数据统计", view = GroupMngMemberInfoView, refresh = true, clear_image = true, anchorOffset = 300 },
{ id = 23, title = "玩家数据", view = GroupMngXingYunStatView, refresh = true, clear_image = true, anchorOffset = 300 },
{ id = 24, title = "局数统计", view = GroupMngZuanShiStatView, refresh = true, clear_image = true, anchorOffset = 300 },
- { id = 25, title = "邀请玩家", view = GroupMngMemberInviteView, refresh = true, clear_image = true, anchorOffset = 300 },
}
-- Config定义不同职位的人,通过不同按钮进入显示的内容
@@ -101,10 +99,11 @@ MngPageConfig.Config = {
{ 20, 10, 21 },
{ 20, 10, 21 },
},
+ --暂时弹出查看
{
- { 25 },
- { 25 },
- { 25 },
+ { 20 },
+ { 20 },
+ { 20 },
},
}
diff --git a/wb_new_ui/.objs/metas/2d9xdj6z/fn7fao.info b/wb_new_ui/.objs/metas/2d9xdj6z/fn7fao.info
index 1bc7c77d..45aa7e69 100644
--- a/wb_new_ui/.objs/metas/2d9xdj6z/fn7fao.info
+++ b/wb_new_ui/.objs/metas/2d9xdj6z/fn7fao.info
@@ -1,5 +1,8 @@
{
"objectStatus": {
+ "n118_ker3": {
+ "hidden": true
+ },
"n54_lwcl": {
"hidden": true
},
@@ -21,6 +24,9 @@
"n140_csp4": {
"hidden": true
},
+ "n108_ker3": {
+ "hidden": true
+ },
"n50_lwcl": {
"hidden": true
},
diff --git a/wb_new_ui/.objs/metas/m7iejg46/10snh5j.info b/wb_new_ui/.objs/metas/m7iejg46/10snh5j.info
index 5ed3ea97..3ac0cd9a 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/10snh5j.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/10snh5j.info
@@ -9,9 +9,6 @@
"n214_ovii": {
"hidden": true
},
- "n190_nk4v": {
- "hidden": true
- },
"n229_csp4": {
"hidden": true
},
diff --git a/wb_new_ui/.objs/metas/m7iejg46/ilon7ia2.info b/wb_new_ui/.objs/metas/m7iejg46/ilon7ia2.info
new file mode 100644
index 00000000..aa6d1ec4
--- /dev/null
+++ b/wb_new_ui/.objs/metas/m7iejg46/ilon7ia2.info
@@ -0,0 +1,7 @@
+{
+ "objectStatus": {
+ "n109_ovii": {
+ "hidden": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/m7iejg46/ilon7ias.info b/wb_new_ui/.objs/metas/m7iejg46/ilon7ias.info
new file mode 100644
index 00000000..7be8286d
--- /dev/null
+++ b/wb_new_ui/.objs/metas/m7iejg46/ilon7ias.info
@@ -0,0 +1,16 @@
+{
+ "objectStatus": {
+ "n132_z384": {
+ "hidden": true
+ },
+ "n35_rpaz": {
+ "hidden": true
+ },
+ "n33_rpaz": {
+ "hidden": true
+ },
+ "n69_jd7v": {
+ "hidden": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/m7iejg46/ilon7ibc.info b/wb_new_ui/.objs/metas/m7iejg46/ilon7ibc.info
new file mode 100644
index 00000000..dc5b38de
--- /dev/null
+++ b/wb_new_ui/.objs/metas/m7iejg46/ilon7ibc.info
@@ -0,0 +1,10 @@
+{
+ "objectStatus": {
+ "n44_rpaz": {
+ "collapsed": true
+ },
+ "n26_kwi0": {
+ "collapsed": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/m7iejg46/jr1l7i3c.info b/wb_new_ui/.objs/metas/m7iejg46/jr1l7i3c.info
index 22178475..4dfb0194 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/jr1l7i3c.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/jr1l7i3c.info
@@ -1,3 +1,20 @@
{
+ "objectStatus": {
+ "n81_jr1l": {
+ "hidden": true
+ },
+ "n78_et16": {
+ "hidden": true
+ },
+ "n80_jr1l": {
+ "hidden": true
+ },
+ "n77_et16": {
+ "hidden": true
+ },
+ "n91_j5s5": {
+ "hidden": true
+ }
+ },
"fitScreen": "FitSize"
}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/m7iejg46/z3847i6m.info b/wb_new_ui/.objs/metas/m7iejg46/z3847i6m.info
index 87c49a69..15141f2f 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/z3847i6m.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/z3847i6m.info
@@ -1,9 +1,12 @@
{
"objectStatus": {
- "n86_t1hq": {
+ "n69_jd7v": {
"hidden": true
},
- "n69_jd7v": {
+ "n113_csp4": {
+ "hidden": true
+ },
+ "n86_t1hq": {
"hidden": true
}
},
diff --git a/wb_new_ui/.objs/workspace.json b/wb_new_ui/.objs/workspace.json
index 2833f89c..741e8faa 100644
--- a/wb_new_ui/.objs/workspace.json
+++ b/wb_new_ui/.objs/workspace.json
@@ -8,17 +8,18 @@
],
"libview.iconScale": 0,
"doc.openedDocs": [
- "ui://m7iejg4610snh5j",
- "ui://m7iejg46csp47i3z",
- "ui://m7iejg46jiu8hef",
- "ui://m7iejg46t1hqhy9",
- "ui://m7iejg46hsbhhj2"
+ "ui://2d9xdj6zfn7fao",
+ "ui://2d9xdj6zzktq7d3s",
+ "ui://2d9xdj6zlwcl5m",
+ "ui://2d9xdj6zker3jg",
+ "ui://2d9xdj6zoviicm0",
+ "ui://2d9xdj6zker3je"
],
"packageGroup.mine": [],
"test.device": "720p Phone",
"canvasColor": 10066329,
"auxline2": true,
- "doc.activeDoc": "ui://m7iejg46csp47i3z",
+ "doc.activeDoc": "ui://2d9xdj6zfn7fao",
"libview.twoColumn": false,
"libview.expandedNodes": [
"27vd145b",
@@ -27,24 +28,16 @@
"/component/",
"27vd145b",
"/component/create_room/",
- "m7iejg46",
+ "27vd145b",
+ "/component/head/",
+ "2d9xdj6z",
"/",
- "m7iejg46",
- "/component/",
- "m7iejg46",
- "/component/Btn/",
- "m7iejg46",
- "/component/Lst_info/",
- "m7iejg46",
- "/component/mail/",
- "m7iejg46",
- "/component/nav/",
- "m7iejg46",
+ "2d9xdj6z",
"/images/",
- "m7iejg46",
- "/images/index/",
- "m7iejg46",
- "/images/info/"
+ "2d9xdj6z",
+ "/images/movieClip/",
+ "x3mp2cn6",
+ "/"
],
"auxline1": true,
"snapToGrid": true,
diff --git a/wb_new_ui/assets/Lobby/Main.xml b/wb_new_ui/assets/Lobby/Main.xml
index 0892c700..cfec7bbc 100644
--- a/wb_new_ui/assets/Lobby/Main.xml
+++ b/wb_new_ui/assets/Lobby/Main.xml
@@ -4,20 +4,22 @@
-
-
+
+
+
+
-
-
+
+
-
+
@@ -45,34 +47,34 @@
-
+
-
+
-
+
-
-
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
@@ -81,16 +83,16 @@
-
+
-
+
-
+
diff --git a/wb_new_ui/assets/Lobby/component/button/Head.xml b/wb_new_ui/assets/Lobby/component/button/Head.xml
new file mode 100644
index 00000000..9ca86daa
--- /dev/null
+++ b/wb_new_ui/assets/Lobby/component/button/Head.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/component/group/Button8.xml b/wb_new_ui/assets/Lobby/component/group/Button8.xml
index 60e79e05..b3f64307 100644
--- a/wb_new_ui/assets/Lobby/component/group/Button8.xml
+++ b/wb_new_ui/assets/Lobby/component/group/Button8.xml
@@ -1,15 +1,10 @@
-
+
-
-
-
-
-
-
-
-
+
+
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/component/index/Btn_join_room.xml b/wb_new_ui/assets/Lobby/component/index/Btn_join_room.xml
index cb4f2b1f..c286813d 100644
--- a/wb_new_ui/assets/Lobby/component/index/Btn_join_room.xml
+++ b/wb_new_ui/assets/Lobby/component/index/Btn_join_room.xml
@@ -1,8 +1,10 @@
-
+
-
+
+
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/component/index/Btn_more_group.xml b/wb_new_ui/assets/Lobby/component/index/Btn_more_group.xml
index 2c0b2afe..c03b88c6 100644
--- a/wb_new_ui/assets/Lobby/component/index/Btn_more_group.xml
+++ b/wb_new_ui/assets/Lobby/component/index/Btn_more_group.xml
@@ -1,8 +1,10 @@
-
+
-
+
+
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/component/index/Cgm_gold.xml b/wb_new_ui/assets/Lobby/component/index/Cgm_gold.xml
index 57456cda..9c8f1b2e 100644
--- a/wb_new_ui/assets/Lobby/component/index/Cgm_gold.xml
+++ b/wb_new_ui/assets/Lobby/component/index/Cgm_gold.xml
@@ -1,9 +1,9 @@
-
+
-
-
-
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/component/index/images/Group 443.png b/wb_new_ui/assets/Lobby/component/index/images/Group 443.png
new file mode 100644
index 00000000..5b675fac
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/index/images/Group 443.png differ
diff --git a/wb_new_ui/assets/Lobby/component/index/images/Group 444.png b/wb_new_ui/assets/Lobby/component/index/images/Group 444.png
new file mode 100644
index 00000000..71510cbb
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/index/images/Group 444.png differ
diff --git a/wb_new_ui/assets/Lobby/component/index/images/Group 5582.png b/wb_new_ui/assets/Lobby/component/index/images/Group 5582.png
new file mode 100644
index 00000000..58a2276d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/index/images/Group 5582.png differ
diff --git a/wb_new_ui/assets/Lobby/component/index/images/Group 5583.png b/wb_new_ui/assets/Lobby/component/index/images/Group 5583.png
new file mode 100644
index 00000000..17f21a19
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/index/images/Group 5583.png differ
diff --git a/wb_new_ui/assets/Lobby/component/index/images/button_cjfj.png b/wb_new_ui/assets/Lobby/component/index/images/button_cjfj.png
index 69d2c8cf..a40b2f7f 100644
Binary files a/wb_new_ui/assets/Lobby/component/index/images/button_cjfj.png and b/wb_new_ui/assets/Lobby/component/index/images/button_cjfj.png differ
diff --git a/wb_new_ui/assets/Lobby/component/index/images/club_more.png b/wb_new_ui/assets/Lobby/component/index/images/club_more.png
index 2f83864f..2e8c101a 100644
Binary files a/wb_new_ui/assets/Lobby/component/index/images/club_more.png and b/wb_new_ui/assets/Lobby/component/index/images/club_more.png differ
diff --git a/wb_new_ui/assets/Lobby/component/index/images/join_room_horizen.png b/wb_new_ui/assets/Lobby/component/index/images/join_room_horizen.png
index b797d442..47a6f9a6 100644
Binary files a/wb_new_ui/assets/Lobby/component/index/images/join_room_horizen.png and b/wb_new_ui/assets/Lobby/component/index/images/join_room_horizen.png differ
diff --git a/wb_new_ui/assets/Lobby/component/index/images/亲友圈.png b/wb_new_ui/assets/Lobby/component/index/images/亲友圈.png
new file mode 100644
index 00000000..f54c5aa8
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/index/images/亲友圈.png differ
diff --git a/wb_new_ui/assets/Lobby/component/index/images/创建房间.png b/wb_new_ui/assets/Lobby/component/index/images/创建房间.png
new file mode 100644
index 00000000..f9c06478
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/index/images/创建房间.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00000.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00000.png
new file mode 100644
index 00000000..be6682bf
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00000.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00001.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00001.png
new file mode 100644
index 00000000..90304ef2
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00001.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00002.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00002.png
new file mode 100644
index 00000000..2e62cb6f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00002.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00003.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00003.png
new file mode 100644
index 00000000..557dd907
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00003.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00004.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00004.png
new file mode 100644
index 00000000..e55cddd6
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00004.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00005.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00005.png
new file mode 100644
index 00000000..0de2ff9c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00005.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00006.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00006.png
new file mode 100644
index 00000000..b36abb3e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00006.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00007.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00007.png
new file mode 100644
index 00000000..e0902a75
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00007.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00008.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00008.png
new file mode 100644
index 00000000..5115b08f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00008.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00009.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00009.png
new file mode 100644
index 00000000..8861dc20
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00009.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00010.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00010.png
new file mode 100644
index 00000000..ff3c5363
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00010.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00011.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00011.png
new file mode 100644
index 00000000..a5a7f222
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00011.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00012.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00012.png
new file mode 100644
index 00000000..9f359efe
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00012.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00013.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00013.png
new file mode 100644
index 00000000..1699fff2
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00013.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00014.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00014.png
new file mode 100644
index 00000000..52dec52b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00014.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00015.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00015.png
new file mode 100644
index 00000000..a473239d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00015.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00016.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00016.png
new file mode 100644
index 00000000..50ed5f94
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00016.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00017.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00017.png
new file mode 100644
index 00000000..049f2e02
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00017.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00018.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00018.png
new file mode 100644
index 00000000..b7a54c1c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00018.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00019.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00019.png
new file mode 100644
index 00000000..2de19c3a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00019.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00020.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00020.png
new file mode 100644
index 00000000..71923570
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00020.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00021.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00021.png
new file mode 100644
index 00000000..496d8754
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00021.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00022.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00022.png
new file mode 100644
index 00000000..2e8e5429
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00022.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00023.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00023.png
new file mode 100644
index 00000000..5d52e0d4
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00023.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00024.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00024.png
new file mode 100644
index 00000000..13f8c92e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00024.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00025.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00025.png
new file mode 100644
index 00000000..4752e8d8
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00025.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00026.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00026.png
new file mode 100644
index 00000000..fac95ebe
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00026.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00027.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00027.png
new file mode 100644
index 00000000..cf7b8082
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00027.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00028.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00028.png
new file mode 100644
index 00000000..575fc466
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00028.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00029.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00029.png
new file mode 100644
index 00000000..ced06bee
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00029.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00030.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00030.png
new file mode 100644
index 00000000..eb71eedd
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00030.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00031.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00031.png
new file mode 100644
index 00000000..5cdb58b5
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00031.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00032.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00032.png
new file mode 100644
index 00000000..b378a293
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00032.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00033.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00033.png
new file mode 100644
index 00000000..6fe9f489
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00033.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00034.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00034.png
new file mode 100644
index 00000000..7e8096e1
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00034.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00035.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00035.png
new file mode 100644
index 00000000..931b675d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00035.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00036.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00036.png
new file mode 100644
index 00000000..4febfdfe
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00036.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00037.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00037.png
new file mode 100644
index 00000000..f56b12f2
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00037.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00038.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00038.png
new file mode 100644
index 00000000..1d170c7f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00038.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00039.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00039.png
new file mode 100644
index 00000000..f27a9480
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00039.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00040.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00040.png
new file mode 100644
index 00000000..294f87f0
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00040.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00041.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00041.png
new file mode 100644
index 00000000..3eed3498
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00041.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00042.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00042.png
new file mode 100644
index 00000000..0975c914
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00042.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00043.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00043.png
new file mode 100644
index 00000000..c88d976e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00043.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00044.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00044.png
new file mode 100644
index 00000000..154ff09a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00044.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00045.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00045.png
new file mode 100644
index 00000000..e6bfcc15
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00045.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00046.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00046.png
new file mode 100644
index 00000000..ef65321d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00046.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00047.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00047.png
new file mode 100644
index 00000000..6e6ddefd
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00047.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00048.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00048.png
new file mode 100644
index 00000000..4bd4ef57
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00048.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00049.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00049.png
new file mode 100644
index 00000000..86da07d8
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00049.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00050.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00050.png
new file mode 100644
index 00000000..7af1e0fa
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00050.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00051.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00051.png
new file mode 100644
index 00000000..e07c8f29
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00051.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00052.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00052.png
new file mode 100644
index 00000000..8dbbbf1a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00052.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00053.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00053.png
new file mode 100644
index 00000000..c4236f8f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00053.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00054.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00054.png
new file mode 100644
index 00000000..d29e1b35
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00054.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00055.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00055.png
new file mode 100644
index 00000000..bd41b061
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00055.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00056.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00056.png
new file mode 100644
index 00000000..00009586
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00056.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00057.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00057.png
new file mode 100644
index 00000000..b1d0ffde
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00057.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00058.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00058.png
new file mode 100644
index 00000000..8c963084
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00058.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00059.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00059.png
new file mode 100644
index 00000000..c895db23
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00059.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00060.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00060.png
new file mode 100644
index 00000000..9f01aaff
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00060.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00061.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00061.png
new file mode 100644
index 00000000..14e68b3b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00061.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00062.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00062.png
new file mode 100644
index 00000000..57b6a270
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00062.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00063.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00063.png
new file mode 100644
index 00000000..118dd63a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00063.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00064.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00064.png
new file mode 100644
index 00000000..9dbf1bbe
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00064.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00065.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00065.png
new file mode 100644
index 00000000..ad83f5a4
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00065.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00066.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00066.png
new file mode 100644
index 00000000..898062fe
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00066.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00067.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00067.png
new file mode 100644
index 00000000..78c9b101
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00067.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00068.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00068.png
new file mode 100644
index 00000000..3ddf0a3c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00068.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00069.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00069.png
new file mode 100644
index 00000000..8109591d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00069.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00070.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00070.png
new file mode 100644
index 00000000..ecf627aa
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00070.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00071.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00071.png
new file mode 100644
index 00000000..0f76b73b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00071.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00072.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00072.png
new file mode 100644
index 00000000..6443dbff
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00072.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00073.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00073.png
new file mode 100644
index 00000000..79b1c9bb
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00073.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00074.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00074.png
new file mode 100644
index 00000000..252ae46f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00074.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00075.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00075.png
new file mode 100644
index 00000000..d300c6ef
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00075.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00076.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00076.png
new file mode 100644
index 00000000..f9e7d1a1
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00076.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00077.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00077.png
new file mode 100644
index 00000000..e21d62f4
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00077.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00078.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00078.png
new file mode 100644
index 00000000..f5aeb5e8
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00078.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00079.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00079.png
new file mode 100644
index 00000000..be084e23
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00079.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00080.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00080.png
new file mode 100644
index 00000000..c9c9a24a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00080.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00081.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00081.png
new file mode 100644
index 00000000..0e74f4e4
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00081.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00082.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00082.png
new file mode 100644
index 00000000..1d830d7e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00082.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00083.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00083.png
new file mode 100644
index 00000000..a2eaa794
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00083.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00084.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00084.png
new file mode 100644
index 00000000..6cf789ef
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00084.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00085.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00085.png
new file mode 100644
index 00000000..8e67354d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00085.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00086.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00086.png
new file mode 100644
index 00000000..defcec54
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00086.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00087.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00087.png
new file mode 100644
index 00000000..3fbe24ca
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00087.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00088.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00088.png
new file mode 100644
index 00000000..e7835db2
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00088.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00089.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00089.png
new file mode 100644
index 00000000..87fd99f7
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00089.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00090.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00090.png
new file mode 100644
index 00000000..7b957120
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00090.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00091.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00091.png
new file mode 100644
index 00000000..59c5fbdb
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00091.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00092.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00092.png
new file mode 100644
index 00000000..21c0b32e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00092.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00093.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00093.png
new file mode 100644
index 00000000..dc88ec5b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00093.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00094.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00094.png
new file mode 100644
index 00000000..29a40f24
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00094.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00095.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00095.png
new file mode 100644
index 00000000..597c1213
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00095.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00096.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00096.png
new file mode 100644
index 00000000..c77c8eed
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00096.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00097.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00097.png
new file mode 100644
index 00000000..606bc2c5
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00097.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00098.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00098.png
new file mode 100644
index 00000000..a939cff0
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00098.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00099.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00099.png
new file mode 100644
index 00000000..61f6c5dd
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00099.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00100.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00100.png
new file mode 100644
index 00000000..b3ee50e9
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00100.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00101.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00101.png
new file mode 100644
index 00000000..7f2a4452
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00101.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00102.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00102.png
new file mode 100644
index 00000000..2397d8f5
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00102.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00103.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00103.png
new file mode 100644
index 00000000..5335020d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00103.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00104.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00104.png
new file mode 100644
index 00000000..f06d134c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00104.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00105.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00105.png
new file mode 100644
index 00000000..df114060
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00105.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00106.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00106.png
new file mode 100644
index 00000000..2c9347d8
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00106.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00107.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00107.png
new file mode 100644
index 00000000..df34e727
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00107.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00108.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00108.png
new file mode 100644
index 00000000..0814b3d8
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00108.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00109.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00109.png
new file mode 100644
index 00000000..3399bd3b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00109.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00110.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00110.png
new file mode 100644
index 00000000..8314b410
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00110.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00111.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00111.png
new file mode 100644
index 00000000..1cdf8ab8
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00111.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00112.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00112.png
new file mode 100644
index 00000000..b00036e1
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00112.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00113.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00113.png
new file mode 100644
index 00000000..9a9835de
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00113.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00114.png b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00114.png
new file mode 100644
index 00000000..f4d8acf8
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_bg/taohua_00114.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00000.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00000.png
new file mode 100644
index 00000000..8d84c4ee
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00000.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00001.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00001.png
new file mode 100644
index 00000000..fa2117b7
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00001.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00002.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00002.png
new file mode 100644
index 00000000..bc410078
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00002.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00003.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00003.png
new file mode 100644
index 00000000..8450c71e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00003.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00004.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00004.png
new file mode 100644
index 00000000..4bd6e97a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00004.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00005.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00005.png
new file mode 100644
index 00000000..2aba20e1
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00005.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00006.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00006.png
new file mode 100644
index 00000000..34e10dc3
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00006.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00007.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00007.png
new file mode 100644
index 00000000..d67638a0
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00007.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00008.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00008.png
new file mode 100644
index 00000000..f9d10933
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00008.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00009.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00009.png
new file mode 100644
index 00000000..78f71164
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00009.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00010.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00010.png
new file mode 100644
index 00000000..fd9d45aa
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00010.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00011.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00011.png
new file mode 100644
index 00000000..0c5482b4
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00011.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00012.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00012.png
new file mode 100644
index 00000000..70d9a986
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00012.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00013.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00013.png
new file mode 100644
index 00000000..18dd5b5b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00013.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00014.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00014.png
new file mode 100644
index 00000000..6cc37770
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00014.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00015.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00015.png
new file mode 100644
index 00000000..c3fbe1e8
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00015.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00016.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00016.png
new file mode 100644
index 00000000..e411e0fa
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00016.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00017.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00017.png
new file mode 100644
index 00000000..1f9601ec
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00017.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00018.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00018.png
new file mode 100644
index 00000000..98590080
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00018.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00019.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00019.png
new file mode 100644
index 00000000..3eb6da30
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00019.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00020.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00020.png
new file mode 100644
index 00000000..ca4d5a7f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00020.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00021.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00021.png
new file mode 100644
index 00000000..71bc3aef
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00021.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00022.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00022.png
new file mode 100644
index 00000000..5bf2141b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00022.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00023.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00023.png
new file mode 100644
index 00000000..10caff27
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00023.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00024.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00024.png
new file mode 100644
index 00000000..dd13f7af
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00024.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00025.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00025.png
new file mode 100644
index 00000000..32db2e9b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00025.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00026.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00026.png
new file mode 100644
index 00000000..6c3ee5ed
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00026.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00027.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00027.png
new file mode 100644
index 00000000..d846bba0
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00027.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00028.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00028.png
new file mode 100644
index 00000000..8fb1bacb
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00028.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00029.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00029.png
new file mode 100644
index 00000000..2b02db38
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00029.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00030.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00030.png
new file mode 100644
index 00000000..23b74ed9
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00030.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00031.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00031.png
new file mode 100644
index 00000000..2b02db38
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00031.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00032.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00032.png
new file mode 100644
index 00000000..8fb1bacb
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00032.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00033.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00033.png
new file mode 100644
index 00000000..d846bba0
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00033.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00034.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00034.png
new file mode 100644
index 00000000..6c3ee5ed
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00034.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00035.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00035.png
new file mode 100644
index 00000000..32db2e9b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00035.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00036.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00036.png
new file mode 100644
index 00000000..dd13f7af
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00036.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00037.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00037.png
new file mode 100644
index 00000000..10caff27
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00037.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00038.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00038.png
new file mode 100644
index 00000000..5bf2141b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00038.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00039.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00039.png
new file mode 100644
index 00000000..71bc3aef
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00039.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00040.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00040.png
new file mode 100644
index 00000000..ca4d5a7f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00040.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00041.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00041.png
new file mode 100644
index 00000000..3eb6da30
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00041.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00042.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00042.png
new file mode 100644
index 00000000..98590080
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00042.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00043.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00043.png
new file mode 100644
index 00000000..1f9601ec
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00043.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00044.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00044.png
new file mode 100644
index 00000000..e411e0fa
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00044.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00045.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00045.png
new file mode 100644
index 00000000..c3fbe1e8
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00045.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00046.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00046.png
new file mode 100644
index 00000000..6cc37770
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00046.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00047.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00047.png
new file mode 100644
index 00000000..18dd5b5b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00047.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00048.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00048.png
new file mode 100644
index 00000000..70d9a986
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00048.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00049.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00049.png
new file mode 100644
index 00000000..0c5482b4
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00049.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00050.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00050.png
new file mode 100644
index 00000000..fd9d45aa
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00050.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00051.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00051.png
new file mode 100644
index 00000000..78f71164
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00051.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00052.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00052.png
new file mode 100644
index 00000000..f9d10933
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00052.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00053.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00053.png
new file mode 100644
index 00000000..d67638a0
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00053.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00054.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00054.png
new file mode 100644
index 00000000..34e10dc3
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00054.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00055.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00055.png
new file mode 100644
index 00000000..2aba20e1
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00055.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00056.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00056.png
new file mode 100644
index 00000000..4bd6e97a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00056.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00057.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00057.png
new file mode 100644
index 00000000..8450c71e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00057.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00058.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00058.png
new file mode 100644
index 00000000..bc410078
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00058.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00059.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00059.png
new file mode 100644
index 00000000..fa2117b7
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00059.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00060.png b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00060.png
new file mode 100644
index 00000000..8d84c4ee
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_createRoom/puke_00060.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00000.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00000.png
new file mode 100644
index 00000000..ad1374f7
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00000.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00001.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00001.png
new file mode 100644
index 00000000..ad1374f7
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00001.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00002.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00002.png
new file mode 100644
index 00000000..b1ac6577
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00002.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00003.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00003.png
new file mode 100644
index 00000000..69b4d117
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00003.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00004.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00004.png
new file mode 100644
index 00000000..692b2743
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00004.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00005.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00005.png
new file mode 100644
index 00000000..6500c926
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00005.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00006.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00006.png
new file mode 100644
index 00000000..6500c926
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00006.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00007.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00007.png
new file mode 100644
index 00000000..ce117e86
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00007.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00008.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00008.png
new file mode 100644
index 00000000..3676d017
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00008.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00009.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00009.png
new file mode 100644
index 00000000..678de24a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00009.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00010.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00010.png
new file mode 100644
index 00000000..499a272f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00010.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00011.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00011.png
new file mode 100644
index 00000000..499a272f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00011.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00012.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00012.png
new file mode 100644
index 00000000..4bded72c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00012.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00013.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00013.png
new file mode 100644
index 00000000..e451dbf2
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00013.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00014.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00014.png
new file mode 100644
index 00000000..ed28aa0c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00014.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00015.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00015.png
new file mode 100644
index 00000000..fa5b8acb
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00015.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00016.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00016.png
new file mode 100644
index 00000000..fa5b8acb
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00016.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00017.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00017.png
new file mode 100644
index 00000000..414c4485
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00017.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00018.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00018.png
new file mode 100644
index 00000000..278f0096
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00018.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00019.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00019.png
new file mode 100644
index 00000000..fb9d593f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00019.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00020.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00020.png
new file mode 100644
index 00000000..2cf4cefc
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00020.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00021.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00021.png
new file mode 100644
index 00000000..2cf4cefc
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00021.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00022.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00022.png
new file mode 100644
index 00000000..6c24c1a5
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00022.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00023.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00023.png
new file mode 100644
index 00000000..f6cd6bbd
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00023.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00024.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00024.png
new file mode 100644
index 00000000..e626be9f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00024.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00025.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00025.png
new file mode 100644
index 00000000..cc2c2cdf
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00025.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00026.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00026.png
new file mode 100644
index 00000000..cc2c2cdf
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00026.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00027.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00027.png
new file mode 100644
index 00000000..5e0c7297
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00027.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00028.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00028.png
new file mode 100644
index 00000000..0877612a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00028.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00029.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00029.png
new file mode 100644
index 00000000..00fe129e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00029.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00030.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00030.png
new file mode 100644
index 00000000..d8613e1e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00030.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00031.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00031.png
new file mode 100644
index 00000000..d8613e1e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00031.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00032.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00032.png
new file mode 100644
index 00000000..ac398fa7
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00032.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00033.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00033.png
new file mode 100644
index 00000000..b6d0d09f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00033.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00034.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00034.png
new file mode 100644
index 00000000..a1d42cba
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00034.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00035.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00035.png
new file mode 100644
index 00000000..9d8e6a97
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00035.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00036.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00036.png
new file mode 100644
index 00000000..9d8e6a97
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00036.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00037.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00037.png
new file mode 100644
index 00000000..6b7564f3
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00037.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00038.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00038.png
new file mode 100644
index 00000000..7c7dd975
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00038.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00039.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00039.png
new file mode 100644
index 00000000..5e84e1ab
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00039.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00040.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00040.png
new file mode 100644
index 00000000..786b4834
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00040.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00041.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00041.png
new file mode 100644
index 00000000..786b4834
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00041.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00042.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00042.png
new file mode 100644
index 00000000..0534cd31
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00042.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00043.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00043.png
new file mode 100644
index 00000000..213cdbae
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00043.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00044.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00044.png
new file mode 100644
index 00000000..57881550
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00044.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00045.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00045.png
new file mode 100644
index 00000000..07170192
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00045.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00046.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00046.png
new file mode 100644
index 00000000..07170192
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00046.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00047.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00047.png
new file mode 100644
index 00000000..b9367640
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00047.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00048.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00048.png
new file mode 100644
index 00000000..c95f8481
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00048.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00049.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00049.png
new file mode 100644
index 00000000..c2033adb
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00049.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00050.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00050.png
new file mode 100644
index 00000000..07e35715
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00050.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00051.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00051.png
new file mode 100644
index 00000000..07e35715
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00051.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00052.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00052.png
new file mode 100644
index 00000000..dd6654de
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00052.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00053.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00053.png
new file mode 100644
index 00000000..cbbd4d30
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00053.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00054.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00054.png
new file mode 100644
index 00000000..b45f9022
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00054.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00055.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00055.png
new file mode 100644
index 00000000..e09bcbb6
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00055.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00056.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00056.png
new file mode 100644
index 00000000..e09bcbb6
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00056.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00057.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00057.png
new file mode 100644
index 00000000..59e015d0
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00057.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00058.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00058.png
new file mode 100644
index 00000000..3fc2862d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00058.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00059.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00059.png
new file mode 100644
index 00000000..0bf3ec6d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00059.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00060.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00060.png
new file mode 100644
index 00000000..8fa08656
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00060.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00061.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00061.png
new file mode 100644
index 00000000..8fa08656
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00061.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00062.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00062.png
new file mode 100644
index 00000000..232375a9
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00062.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00063.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00063.png
new file mode 100644
index 00000000..009154c0
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00063.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00064.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00064.png
new file mode 100644
index 00000000..b057674e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00064.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00065.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00065.png
new file mode 100644
index 00000000..2f0e2e81
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00065.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00066.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00066.png
new file mode 100644
index 00000000..2f0e2e81
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00066.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00067.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00067.png
new file mode 100644
index 00000000..36584778
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00067.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00068.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00068.png
new file mode 100644
index 00000000..8cca8886
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00068.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00069.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00069.png
new file mode 100644
index 00000000..59d7a06b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00069.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00070.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00070.png
new file mode 100644
index 00000000..004b9c5b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00070.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00071.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00071.png
new file mode 100644
index 00000000..004b9c5b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00071.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00072.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00072.png
new file mode 100644
index 00000000..d8c4e568
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00072.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00073.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00073.png
new file mode 100644
index 00000000..86e12240
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00073.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00074.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00074.png
new file mode 100644
index 00000000..fdd858e9
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00074.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00078.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00078.png
new file mode 100644
index 00000000..a210b8ae
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00078.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00079.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00079.png
new file mode 100644
index 00000000..bd6ad00e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00079.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00080.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00080.png
new file mode 100644
index 00000000..bb75dc4f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00080.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00081.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00081.png
new file mode 100644
index 00000000..bb75dc4f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00081.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00082.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00082.png
new file mode 100644
index 00000000..d416ca3e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00082.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00083.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00083.png
new file mode 100644
index 00000000..609d38bc
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00083.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00084.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00084.png
new file mode 100644
index 00000000..099167e1
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00084.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00085.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00085.png
new file mode 100644
index 00000000..e77f80ce
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00085.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00086.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00086.png
new file mode 100644
index 00000000..e77f80ce
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00086.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00087.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00087.png
new file mode 100644
index 00000000..c2705096
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00087.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00088.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00088.png
new file mode 100644
index 00000000..39eea3c7
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00088.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00089.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00089.png
new file mode 100644
index 00000000..9f25a773
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00089.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00090.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00090.png
new file mode 100644
index 00000000..7bd0b4cb
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00090.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00091.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00091.png
new file mode 100644
index 00000000..7bd0b4cb
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00091.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00092.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00092.png
new file mode 100644
index 00000000..22ccc24d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00092.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00093.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00093.png
new file mode 100644
index 00000000..b2bf515a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00093.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00094.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00094.png
new file mode 100644
index 00000000..5ae854af
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00094.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00095.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00095.png
new file mode 100644
index 00000000..37d69653
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00095.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00096.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00096.png
new file mode 100644
index 00000000..37d69653
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00096.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00097.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00097.png
new file mode 100644
index 00000000..ddc6573a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00097.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00098.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00098.png
new file mode 100644
index 00000000..6e971b42
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00098.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00099.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00099.png
new file mode 100644
index 00000000..2c9d13f3
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00099.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00100.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00100.png
new file mode 100644
index 00000000..58b81fab
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00100.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00101.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00101.png
new file mode 100644
index 00000000..58b81fab
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00101.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00102.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00102.png
new file mode 100644
index 00000000..47d4e6ab
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00102.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00103.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00103.png
new file mode 100644
index 00000000..bb31cd0e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00103.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00104.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00104.png
new file mode 100644
index 00000000..08347c5b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00104.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00105.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00105.png
new file mode 100644
index 00000000..dd2542b8
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00105.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00106.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00106.png
new file mode 100644
index 00000000..dd2542b8
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00106.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00107.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00107.png
new file mode 100644
index 00000000..efaf7955
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00107.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00108.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00108.png
new file mode 100644
index 00000000..d2d497ff
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00108.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00109.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00109.png
new file mode 100644
index 00000000..b90df170
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00109.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00110.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00110.png
new file mode 100644
index 00000000..d6373332
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00110.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00111.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00111.png
new file mode 100644
index 00000000..d6373332
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00111.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00112.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00112.png
new file mode 100644
index 00000000..1e775b2a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00112.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00113.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00113.png
new file mode 100644
index 00000000..1ffd5503
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00113.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00114.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00114.png
new file mode 100644
index 00000000..716b84df
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00114.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00115.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00115.png
new file mode 100644
index 00000000..a322992b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00115.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00116.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00116.png
new file mode 100644
index 00000000..a322992b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00116.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00117.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00117.png
new file mode 100644
index 00000000..a9974226
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00117.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00118.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00118.png
new file mode 100644
index 00000000..ea4c4fba
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00118.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00119.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00119.png
new file mode 100644
index 00000000..7a2ef315
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00119.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00120.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00120.png
new file mode 100644
index 00000000..9e2bae09
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00120.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00121.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00121.png
new file mode 100644
index 00000000..9e2bae09
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00121.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00122.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00122.png
new file mode 100644
index 00000000..e56cff37
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00122.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00123.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00123.png
new file mode 100644
index 00000000..8d2ba382
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00123.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00124.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00124.png
new file mode 100644
index 00000000..5b7c6056
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00124.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00125.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00125.png
new file mode 100644
index 00000000..874852af
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00125.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00126.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00126.png
new file mode 100644
index 00000000..874852af
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00126.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00127.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00127.png
new file mode 100644
index 00000000..fc972249
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00127.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00128.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00128.png
new file mode 100644
index 00000000..e22c33fe
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00128.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00129.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00129.png
new file mode 100644
index 00000000..d8996117
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00129.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00130.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00130.png
new file mode 100644
index 00000000..3debf64c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00130.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00131.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00131.png
new file mode 100644
index 00000000..3debf64c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00131.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00132.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00132.png
new file mode 100644
index 00000000..db0dd799
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00132.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00133.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00133.png
new file mode 100644
index 00000000..ba18a796
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00133.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00134.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00134.png
new file mode 100644
index 00000000..b3291f77
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00134.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00135.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00135.png
new file mode 100644
index 00000000..845233f4
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00135.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00136.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00136.png
new file mode 100644
index 00000000..845233f4
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00136.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00137.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00137.png
new file mode 100644
index 00000000..819c3e7b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00137.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00139.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00139.png
new file mode 100644
index 00000000..0746fc61
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00139.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00140.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00140.png
new file mode 100644
index 00000000..039fb2cf
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00140.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00141.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00141.png
new file mode 100644
index 00000000..039fb2cf
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00141.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00142.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00142.png
new file mode 100644
index 00000000..8ec65a66
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00142.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00143.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00143.png
new file mode 100644
index 00000000..bc90844c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00143.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00144.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00144.png
new file mode 100644
index 00000000..7bc6c231
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00144.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00145.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00145.png
new file mode 100644
index 00000000..970fdd8b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00145.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00146.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00146.png
new file mode 100644
index 00000000..970fdd8b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00146.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00147.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00147.png
new file mode 100644
index 00000000..0b3ad49c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00147.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00148.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00148.png
new file mode 100644
index 00000000..32f9dbba
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00148.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00149.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00149.png
new file mode 100644
index 00000000..aba21f1f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00149.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00150.png b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00150.png
new file mode 100644
index 00000000..42e020e8
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_group/jiangbei_00150.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00000.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00000.png
new file mode 100644
index 00000000..18ab82f4
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00000.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00001.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00001.png
new file mode 100644
index 00000000..88044de6
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00001.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00002.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00002.png
new file mode 100644
index 00000000..1780792c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00002.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00003.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00003.png
new file mode 100644
index 00000000..015c677e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00003.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00004.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00004.png
new file mode 100644
index 00000000..793452e9
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00004.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00005.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00005.png
new file mode 100644
index 00000000..9bf1fac0
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00005.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00006.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00006.png
new file mode 100644
index 00000000..5697e075
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00006.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00007.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00007.png
new file mode 100644
index 00000000..5bf69f24
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00007.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00008.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00008.png
new file mode 100644
index 00000000..60d9962d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00008.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00009.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00009.png
new file mode 100644
index 00000000..f91399dd
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00009.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00010.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00010.png
new file mode 100644
index 00000000..8a5fdf36
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00010.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00011.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00011.png
new file mode 100644
index 00000000..6f2172ba
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00011.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00012.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00012.png
new file mode 100644
index 00000000..4efc70bf
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00012.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00013.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00013.png
new file mode 100644
index 00000000..2954e44a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00013.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00014.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00014.png
new file mode 100644
index 00000000..a1143e57
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00014.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00015.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00015.png
new file mode 100644
index 00000000..2ccaf3f7
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00015.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00016.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00016.png
new file mode 100644
index 00000000..211a359a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00016.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00017.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00017.png
new file mode 100644
index 00000000..21183a34
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00017.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00018.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00018.png
new file mode 100644
index 00000000..3ff7cc5a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00018.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00019.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00019.png
new file mode 100644
index 00000000..5f820654
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00019.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00020.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00020.png
new file mode 100644
index 00000000..5656809f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00020.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00021.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00021.png
new file mode 100644
index 00000000..0b1a803d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00021.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00022.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00022.png
new file mode 100644
index 00000000..a290a830
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00022.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00023.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00023.png
new file mode 100644
index 00000000..6428f6a5
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00023.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00024.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00024.png
new file mode 100644
index 00000000..dded8f7e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00024.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00025.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00025.png
new file mode 100644
index 00000000..ee79fa16
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00025.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00026.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00026.png
new file mode 100644
index 00000000..b3056971
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00026.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00027.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00027.png
new file mode 100644
index 00000000..c8d160e6
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00027.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00028.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00028.png
new file mode 100644
index 00000000..e91e9a82
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00028.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00029.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00029.png
new file mode 100644
index 00000000..5b13d36b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00029.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00030.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00030.png
new file mode 100644
index 00000000..bc339764
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00030.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00031.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00031.png
new file mode 100644
index 00000000..7974a07c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00031.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00032.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00032.png
new file mode 100644
index 00000000..ac9d7eda
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00032.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00033.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00033.png
new file mode 100644
index 00000000..36ade35a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00033.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00034.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00034.png
new file mode 100644
index 00000000..0f7efb18
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00034.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00035.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00035.png
new file mode 100644
index 00000000..383390fd
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00035.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00036.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00036.png
new file mode 100644
index 00000000..eb9710d4
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00036.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00037.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00037.png
new file mode 100644
index 00000000..b01cb53e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00037.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00038.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00038.png
new file mode 100644
index 00000000..fc23fb38
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00038.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00039.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00039.png
new file mode 100644
index 00000000..655d43fe
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00039.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00040.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00040.png
new file mode 100644
index 00000000..6b7fa2f7
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00040.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00041.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00041.png
new file mode 100644
index 00000000..df40718b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00041.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00042.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00042.png
new file mode 100644
index 00000000..1c5dd37a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00042.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00043.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00043.png
new file mode 100644
index 00000000..1dfd2df6
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00043.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00044.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00044.png
new file mode 100644
index 00000000..4dfc412d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00044.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00045.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00045.png
new file mode 100644
index 00000000..e7694b74
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00045.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00046.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00046.png
new file mode 100644
index 00000000..851d4397
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00046.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00047.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00047.png
new file mode 100644
index 00000000..9c059f23
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00047.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00048.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00048.png
new file mode 100644
index 00000000..18ab82f4
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00048.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00049.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00049.png
new file mode 100644
index 00000000..81b69fc6
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00049.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00050.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00050.png
new file mode 100644
index 00000000..6737a71c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00050.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00051.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00051.png
new file mode 100644
index 00000000..ee1c4f31
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00051.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00052.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00052.png
new file mode 100644
index 00000000..913a1730
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00052.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00053.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00053.png
new file mode 100644
index 00000000..48989cc2
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00053.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00054.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00054.png
new file mode 100644
index 00000000..869dbb88
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00054.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00055.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00055.png
new file mode 100644
index 00000000..d7121f09
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00055.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00056.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00056.png
new file mode 100644
index 00000000..18e15781
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00056.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00057.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00057.png
new file mode 100644
index 00000000..756e3b7f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00057.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00058.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00058.png
new file mode 100644
index 00000000..e242f49b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00058.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00059.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00059.png
new file mode 100644
index 00000000..dc4f5a65
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00059.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00060.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00060.png
new file mode 100644
index 00000000..6c6f413e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00060.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00061.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00061.png
new file mode 100644
index 00000000..cdabafed
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00061.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00062.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00062.png
new file mode 100644
index 00000000..7971d384
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00062.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00063.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00063.png
new file mode 100644
index 00000000..7ebb7c71
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00063.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00064.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00064.png
new file mode 100644
index 00000000..8eca4dcd
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00064.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00065.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00065.png
new file mode 100644
index 00000000..56890aa4
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00065.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00066.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00066.png
new file mode 100644
index 00000000..9afdc23f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00066.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00067.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00067.png
new file mode 100644
index 00000000..2926c08e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00067.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00068.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00068.png
new file mode 100644
index 00000000..ab9a1f0d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00068.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00069.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00069.png
new file mode 100644
index 00000000..1ec2aa88
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00069.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00070.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00070.png
new file mode 100644
index 00000000..7cdd92ff
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00070.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00071.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00071.png
new file mode 100644
index 00000000..b4801dfc
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00071.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00072.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00072.png
new file mode 100644
index 00000000..65bb005f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00072.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00073.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00073.png
new file mode 100644
index 00000000..d1ed2a81
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00073.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00074.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00074.png
new file mode 100644
index 00000000..8f70fbed
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00074.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00075.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00075.png
new file mode 100644
index 00000000..4f1d2d62
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00075.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00076.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00076.png
new file mode 100644
index 00000000..8c2c8954
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00076.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00077.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00077.png
new file mode 100644
index 00000000..5626e2b6
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00077.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00078.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00078.png
new file mode 100644
index 00000000..a8e6ca28
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00078.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00079.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00079.png
new file mode 100644
index 00000000..20026dfd
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00079.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00080.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00080.png
new file mode 100644
index 00000000..df79b3db
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00080.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00081.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00081.png
new file mode 100644
index 00000000..58641594
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00081.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00082.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00082.png
new file mode 100644
index 00000000..5599160e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00082.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00083.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00083.png
new file mode 100644
index 00000000..cc3496d5
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00083.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00084.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00084.png
new file mode 100644
index 00000000..96b9bb89
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00084.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00085.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00085.png
new file mode 100644
index 00000000..9062002d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00085.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00086.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00086.png
new file mode 100644
index 00000000..6c66e30d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00086.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00087.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00087.png
new file mode 100644
index 00000000..9d3c9ec2
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00087.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00088.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00088.png
new file mode 100644
index 00000000..11314c8c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00088.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00089.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00089.png
new file mode 100644
index 00000000..492d4a3b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00089.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00090.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00090.png
new file mode 100644
index 00000000..6eacfe68
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00090.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00091.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00091.png
new file mode 100644
index 00000000..6052f2bf
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00091.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00092.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00092.png
new file mode 100644
index 00000000..60208914
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00092.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00093.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00093.png
new file mode 100644
index 00000000..626794e9
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00093.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00094.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00094.png
new file mode 100644
index 00000000..3fa94f23
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00094.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00095.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00095.png
new file mode 100644
index 00000000..4939c23f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00095.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00096.png b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00096.png
new file mode 100644
index 00000000..18ab82f4
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_joinRoom/hecheng 1_00096.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00000.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00000.png
new file mode 100644
index 00000000..2cdd1516
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00000.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00001.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00001.png
new file mode 100644
index 00000000..3cf99d0c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00001.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00002.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00002.png
new file mode 100644
index 00000000..a44e77bf
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00002.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00003.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00003.png
new file mode 100644
index 00000000..e24ce766
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00003.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00004.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00004.png
new file mode 100644
index 00000000..1e76d5f8
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00004.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00005.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00005.png
new file mode 100644
index 00000000..9552dd87
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00005.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00006.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00006.png
new file mode 100644
index 00000000..d623d657
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00006.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00007.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00007.png
new file mode 100644
index 00000000..be5a133d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00007.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00008.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00008.png
new file mode 100644
index 00000000..3ccb6b74
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00008.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00009.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00009.png
new file mode 100644
index 00000000..a7570850
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00009.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00010.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00010.png
new file mode 100644
index 00000000..c342878d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00010.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00011.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00011.png
new file mode 100644
index 00000000..1e653990
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00011.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00012.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00012.png
new file mode 100644
index 00000000..ba354136
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00012.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00013.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00013.png
new file mode 100644
index 00000000..43f91d15
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00013.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00014.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00014.png
new file mode 100644
index 00000000..f5500c06
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00014.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00015.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00015.png
new file mode 100644
index 00000000..e78cd151
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00015.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00016.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00016.png
new file mode 100644
index 00000000..84194601
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00016.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00017.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00017.png
new file mode 100644
index 00000000..adec1bff
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00017.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00018.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00018.png
new file mode 100644
index 00000000..54e683fc
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00018.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00019.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00019.png
new file mode 100644
index 00000000..32df9658
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00019.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00020.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00020.png
new file mode 100644
index 00000000..576361b3
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00020.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00021.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00021.png
new file mode 100644
index 00000000..fec9396b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00021.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00022.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00022.png
new file mode 100644
index 00000000..b83a1ad7
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00022.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00023.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00023.png
new file mode 100644
index 00000000..ceee0e48
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00023.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00024.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00024.png
new file mode 100644
index 00000000..70cebab4
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00024.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00025.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00025.png
new file mode 100644
index 00000000..43df86cd
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00025.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00026.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00026.png
new file mode 100644
index 00000000..f0bfccf4
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00026.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00027.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00027.png
new file mode 100644
index 00000000..dd0b8d25
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00027.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00028.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00028.png
new file mode 100644
index 00000000..b286016f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00028.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00029.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00029.png
new file mode 100644
index 00000000..8d9cd6d1
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00029.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00030.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00030.png
new file mode 100644
index 00000000..871e9500
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00030.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00031.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00031.png
new file mode 100644
index 00000000..2fef07a2
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00031.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00032.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00032.png
new file mode 100644
index 00000000..5f0a07f3
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00032.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00033.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00033.png
new file mode 100644
index 00000000..8c9cf09e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00033.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00034.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00034.png
new file mode 100644
index 00000000..1106b235
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00034.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00035.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00035.png
new file mode 100644
index 00000000..917a01ac
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00035.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00036.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00036.png
new file mode 100644
index 00000000..ae83c5d2
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00036.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00037.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00037.png
new file mode 100644
index 00000000..b05742c6
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00037.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00038.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00038.png
new file mode 100644
index 00000000..ed5575eb
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00038.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00039.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00039.png
new file mode 100644
index 00000000..e891a5e3
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00039.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00040.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00040.png
new file mode 100644
index 00000000..7923fc8a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00040.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00041.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00041.png
new file mode 100644
index 00000000..0e5d0095
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00041.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00042.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00042.png
new file mode 100644
index 00000000..dc74ed42
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00042.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00043.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00043.png
new file mode 100644
index 00000000..4309852a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00043.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00044.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00044.png
new file mode 100644
index 00000000..476db8b9
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00044.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00045.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00045.png
new file mode 100644
index 00000000..5693961f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00045.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00046.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00046.png
new file mode 100644
index 00000000..908cb7d6
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00046.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00047.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00047.png
new file mode 100644
index 00000000..7ff79a7c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00047.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00048.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00048.png
new file mode 100644
index 00000000..aef3f858
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00048.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00049.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00049.png
new file mode 100644
index 00000000..016a6512
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00049.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00050.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00050.png
new file mode 100644
index 00000000..9e7d1422
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00050.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00051.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00051.png
new file mode 100644
index 00000000..50e0976e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00051.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00052.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00052.png
new file mode 100644
index 00000000..b1dd1d45
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00052.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00053.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00053.png
new file mode 100644
index 00000000..e643e4f2
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00053.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00054.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00054.png
new file mode 100644
index 00000000..450ee275
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00054.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00055.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00055.png
new file mode 100644
index 00000000..a578a135
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00055.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00056.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00056.png
new file mode 100644
index 00000000..d9fd5354
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00056.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00057.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00057.png
new file mode 100644
index 00000000..d0be74cb
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00057.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00058.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00058.png
new file mode 100644
index 00000000..78b8e66f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00058.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00059.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00059.png
new file mode 100644
index 00000000..d27398dc
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00059.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00060.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00060.png
new file mode 100644
index 00000000..4bc2e59a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00060.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00061.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00061.png
new file mode 100644
index 00000000..87b32eab
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00061.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00062.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00062.png
new file mode 100644
index 00000000..e213c501
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00062.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00063.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00063.png
new file mode 100644
index 00000000..c057cc7a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00063.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00064.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00064.png
new file mode 100644
index 00000000..1bf1216e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00064.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00065.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00065.png
new file mode 100644
index 00000000..63fb8f78
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00065.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00066.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00066.png
new file mode 100644
index 00000000..e3d2d7e9
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00066.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00067.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00067.png
new file mode 100644
index 00000000..6c6988d2
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00067.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00068.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00068.png
new file mode 100644
index 00000000..1853fb0c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00068.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00069.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00069.png
new file mode 100644
index 00000000..bbbe9f6a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00069.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00070.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00070.png
new file mode 100644
index 00000000..83520bc1
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00070.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00071.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00071.png
new file mode 100644
index 00000000..40fa91ce
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00071.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00072.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00072.png
new file mode 100644
index 00000000..e05fe06d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00072.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00073.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00073.png
new file mode 100644
index 00000000..8e764805
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00073.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00074.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00074.png
new file mode 100644
index 00000000..7ce082d4
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00074.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00075.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00075.png
new file mode 100644
index 00000000..a9965546
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00075.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00076.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00076.png
new file mode 100644
index 00000000..ba18f6b3
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00076.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00077.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00077.png
new file mode 100644
index 00000000..3a27867a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00077.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00078.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00078.png
new file mode 100644
index 00000000..5e990afc
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00078.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00079.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00079.png
new file mode 100644
index 00000000..04d63672
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00079.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00080.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00080.png
new file mode 100644
index 00000000..4e34c314
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00080.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00081.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00081.png
new file mode 100644
index 00000000..4d6f07cc
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00081.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00082.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00082.png
new file mode 100644
index 00000000..2a543496
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00082.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00083.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00083.png
new file mode 100644
index 00000000..8475926e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00083.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00084.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00084.png
new file mode 100644
index 00000000..74aaa0d7
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00084.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00085.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00085.png
new file mode 100644
index 00000000..d464417d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00085.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00086.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00086.png
new file mode 100644
index 00000000..ee0cb8b1
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00086.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00087.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00087.png
new file mode 100644
index 00000000..8a37053a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00087.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00088.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00088.png
new file mode 100644
index 00000000..6431954b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00088.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00089.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00089.png
new file mode 100644
index 00000000..6dd0c2b3
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00089.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00090.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00090.png
new file mode 100644
index 00000000..7f34536c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00090.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00091.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00091.png
new file mode 100644
index 00000000..17a04de2
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00091.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00092.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00092.png
new file mode 100644
index 00000000..7dbaeb1d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00092.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00093.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00093.png
new file mode 100644
index 00000000..0c2c89fb
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00093.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00094.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00094.png
new file mode 100644
index 00000000..e2fee37b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00094.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00095.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00095.png
new file mode 100644
index 00000000..2b0e2b42
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00095.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00096.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00096.png
new file mode 100644
index 00000000..5b3f477c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00096.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00097.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00097.png
new file mode 100644
index 00000000..3dcd1770
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00097.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00098.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00098.png
new file mode 100644
index 00000000..f88564a8
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00098.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00099.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00099.png
new file mode 100644
index 00000000..ee3598ed
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00099.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00100.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00100.png
new file mode 100644
index 00000000..f86997d9
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00100.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00101.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00101.png
new file mode 100644
index 00000000..5dff6bfc
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00101.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00102.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00102.png
new file mode 100644
index 00000000..285455be
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00102.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00103.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00103.png
new file mode 100644
index 00000000..98ee6090
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00103.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00104.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00104.png
new file mode 100644
index 00000000..8aab8525
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00104.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00105.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00105.png
new file mode 100644
index 00000000..cd1afa28
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00105.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00106.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00106.png
new file mode 100644
index 00000000..67bf6383
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00106.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00107.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00107.png
new file mode 100644
index 00000000..09d541c9
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00107.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00108.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00108.png
new file mode 100644
index 00000000..34bfbdbc
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00108.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00109.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00109.png
new file mode 100644
index 00000000..09a95525
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00109.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00110.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00110.png
new file mode 100644
index 00000000..06378780
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00110.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00111.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00111.png
new file mode 100644
index 00000000..afca8627
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00111.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00112.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00112.png
new file mode 100644
index 00000000..6f3da3b8
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00112.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00113.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00113.png
new file mode 100644
index 00000000..5c0d77f1
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00113.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00114.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00114.png
new file mode 100644
index 00000000..30479608
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00114.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00115.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00115.png
new file mode 100644
index 00000000..c3725a40
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00115.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00116.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00116.png
new file mode 100644
index 00000000..799a16f6
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00116.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00117.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00117.png
new file mode 100644
index 00000000..ef916445
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00117.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00118.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00118.png
new file mode 100644
index 00000000..b56868fd
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00118.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00119.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00119.png
new file mode 100644
index 00000000..c81b33e0
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00119.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00120.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00120.png
new file mode 100644
index 00000000..07b11ad7
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00120.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00121.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00121.png
new file mode 100644
index 00000000..ce7e453b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00121.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00122.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00122.png
new file mode 100644
index 00000000..bab0703f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00122.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00123.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00123.png
new file mode 100644
index 00000000..620ca1ac
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00123.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00124.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00124.png
new file mode 100644
index 00000000..968e6630
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00124.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00125.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00125.png
new file mode 100644
index 00000000..aa9753eb
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00125.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00126.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00126.png
new file mode 100644
index 00000000..04d52e8c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00126.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00127.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00127.png
new file mode 100644
index 00000000..31c77d39
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00127.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00128.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00128.png
new file mode 100644
index 00000000..40a83e2f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00128.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00129.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00129.png
new file mode 100644
index 00000000..448eca0f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00129.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00130.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00130.png
new file mode 100644
index 00000000..81484482
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00130.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00131.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00131.png
new file mode 100644
index 00000000..7ad57d9f
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00131.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00132.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00132.png
new file mode 100644
index 00000000..01978b9c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00132.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00133.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00133.png
new file mode 100644
index 00000000..095b6893
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00133.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00134.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00134.png
new file mode 100644
index 00000000..0d4b67d8
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00134.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00135.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00135.png
new file mode 100644
index 00000000..1a19c19d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00135.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00136.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00136.png
new file mode 100644
index 00000000..aece835b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00136.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00137.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00137.png
new file mode 100644
index 00000000..ed68abde
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00137.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00138.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00138.png
new file mode 100644
index 00000000..5ebd93c7
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00138.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00139.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00139.png
new file mode 100644
index 00000000..f5c9b6a5
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00139.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00140.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00140.png
new file mode 100644
index 00000000..797242f6
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00140.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00141.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00141.png
new file mode 100644
index 00000000..6eb01079
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00141.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00142.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00142.png
new file mode 100644
index 00000000..cbd93ca4
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00142.png differ
diff --git a/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00143.png b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00143.png
new file mode 100644
index 00000000..8f962a06
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/clip_renwu/renwu-AE_00143.png differ
diff --git a/wb_new_ui/assets/Lobby/images/index/bg_07.png b/wb_new_ui/assets/Lobby/images/index/bg_07.png
index 31e22b0a..272ee1f1 100644
Binary files a/wb_new_ui/assets/Lobby/images/index/bg_07.png and b/wb_new_ui/assets/Lobby/images/index/bg_07.png differ
diff --git a/wb_new_ui/assets/Lobby/images/index/head_bg@2x.png b/wb_new_ui/assets/Lobby/images/index/head_bg@2x.png
index 3f3840e8..b38e1936 100644
Binary files a/wb_new_ui/assets/Lobby/images/index/head_bg@2x.png and b/wb_new_ui/assets/Lobby/images/index/head_bg@2x.png differ
diff --git a/wb_new_ui/assets/Lobby/images/index/icon_zytb.png b/wb_new_ui/assets/Lobby/images/index/icon_zytb.png
index 400585b1..0d31ef3b 100644
Binary files a/wb_new_ui/assets/Lobby/images/index/icon_zytb.png and b/wb_new_ui/assets/Lobby/images/index/icon_zytb.png differ
diff --git a/wb_new_ui/assets/Lobby/images/movieClip/WeChat_20250524203341.mp4 b/wb_new_ui/assets/Lobby/images/movieClip/WeChat_20250524203341.mp4
new file mode 100644
index 00000000..7924f735
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/movieClip/WeChat_20250524203341.mp4 differ
diff --git a/wb_new_ui/assets/Lobby/mainbg.png b/wb_new_ui/assets/Lobby/mainbg.png
index 4a07d36f..cc2eea2b 100644
Binary files a/wb_new_ui/assets/Lobby/mainbg.png and b/wb_new_ui/assets/Lobby/mainbg.png differ
diff --git a/wb_new_ui/assets/Lobby/package.xml b/wb_new_ui/assets/Lobby/package.xml
index 739163bf..27256034 100644
--- a/wb_new_ui/assets/Lobby/package.xml
+++ b/wb_new_ui/assets/Lobby/package.xml
@@ -1,6 +1,7 @@
+
@@ -325,8 +326,580 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/Main_GroupInfo.xml b/wb_new_ui/assets/NewGroup/Main_GroupInfo.xml
index 81a5e0ac..5f9e0ef1 100644
--- a/wb_new_ui/assets/NewGroup/Main_GroupInfo.xml
+++ b/wb_new_ui/assets/NewGroup/Main_GroupInfo.xml
@@ -25,11 +25,11 @@
-
-
-
-
-
+
+
+
+
+
@@ -92,9 +92,9 @@
-
+
-
+
diff --git a/wb_new_ui/assets/NewGroup/Win_PlayerInfoForAdd.xml b/wb_new_ui/assets/NewGroup/Win_PlayerInfoForAdd.xml
index 6ba1ef58..42f69135 100644
--- a/wb_new_ui/assets/NewGroup/Win_PlayerInfoForAdd.xml
+++ b/wb_new_ui/assets/NewGroup/Win_PlayerInfoForAdd.xml
@@ -1,28 +1,31 @@
-
+
-
-
-
-
+
+
-
-
+
+
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/Win_PlayerInfoForAdd2.xml b/wb_new_ui/assets/NewGroup/Win_PlayerInfoForAdd2.xml
new file mode 100644
index 00000000..6ba1ef58
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/Win_PlayerInfoForAdd2.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/component/Lst_info/btn_layer_item.xml b/wb_new_ui/assets/NewGroup/component/Lst_info/btn_layer_item.xml
index 5d16bcb0..732ea797 100644
--- a/wb_new_ui/assets/NewGroup/component/Lst_info/btn_layer_item.xml
+++ b/wb_new_ui/assets/NewGroup/component/Lst_info/btn_layer_item.xml
@@ -1,28 +1,28 @@
-
+
-
-
-
-
+
+
+
+
-
+
-
+
-
+
diff --git a/wb_new_ui/assets/NewGroup/images/info/right_panel/bxg.png b/wb_new_ui/assets/NewGroup/images/info/right_panel/bxg.png
index e1869bf5..61dcbdea 100644
Binary files a/wb_new_ui/assets/NewGroup/images/info/right_panel/bxg.png and b/wb_new_ui/assets/NewGroup/images/info/right_panel/bxg.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberHpList.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberHpList.xml
new file mode 100644
index 00000000..b729c87e
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberHpList.xml
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberInviteAlone.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberInviteAlone.xml
new file mode 100644
index 00000000..3b9758a9
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberInviteAlone.xml
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList1.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList1.xml
index c72492b7..0b897fe4 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList1.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList1.xml
@@ -2,13 +2,13 @@
-
+
-
+
-
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_0.xml b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_0.xml
new file mode 100644
index 00000000..b47e9ad5
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_0.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_1.xml b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_1.xml
new file mode 100644
index 00000000..897d1b9d
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_1.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_2.xml b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_2.xml
new file mode 100644
index 00000000..cb28583c
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_2.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_3.xml b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_3.xml
new file mode 100644
index 00000000..ec959f7e
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_3.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_4.xml b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_4.xml
new file mode 100644
index 00000000..fcf760c3
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_4.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_5.xml b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_5.xml
new file mode 100644
index 00000000..f0b692a5
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_5.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_6.xml b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_6.xml
new file mode 100644
index 00000000..f035d6c4
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_6.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_7.xml b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_7.xml
new file mode 100644
index 00000000..a4f098cd
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_7.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_8.xml b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_8.xml
new file mode 100644
index 00000000..3a474d85
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_8.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_9.xml b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_9.xml
new file mode 100644
index 00000000..7356cca4
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_9.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_del.xml b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_del.xml
new file mode 100644
index 00000000..eeb3f03f
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_del.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_ok.xml b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_ok.xml
new file mode 100644
index 00000000..b58e505d
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btn_ok.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btnclose.xml b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btnclose.xml
new file mode 100644
index 00000000..7c4ab497
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/addMenberAlone/btnclose.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/Btn_back1.xml b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/Btn_back1.xml
new file mode 100644
index 00000000..18507efb
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/Btn_back1.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/Button4.xml b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/Button4.xml
new file mode 100644
index 00000000..61abd691
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/Button4.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/Button5.xml b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/Button5.xml
new file mode 100644
index 00000000..624c87a7
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/Button5.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/Head2.xml b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/Head2.xml
new file mode 100644
index 00000000..c9ff3909
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/Head2.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/btn_close.xml b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/btn_close.xml
new file mode 100644
index 00000000..10d1ef49
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/btn_close.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/btn_ref.xml b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/btn_ref.xml
new file mode 100644
index 00000000..54a697f3
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/btn_ref.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/btn_req.xml b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/btn_req.xml
new file mode 100644
index 00000000..5b1270cd
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/btn_req.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/item_member1.xml b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/item_member1.xml
new file mode 100644
index 00000000..11d7eebb
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/item_member1.xml
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/superior_btn.xml b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/superior_btn.xml
new file mode 100644
index 00000000..da5f6864
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/superior_btn.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 515.png b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 515.png
new file mode 100644
index 00000000..07a27b08
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 515.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 546.png b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 546.png
new file mode 100644
index 00000000..5bb2ebb0
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 546.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 548.png b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 548.png
new file mode 100644
index 00000000..c1c52814
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 548.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 549.png b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 549.png
new file mode 100644
index 00000000..c4dd7c7f
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 549.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 550.png b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 550.png
new file mode 100644
index 00000000..10dbc8cf
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 550.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 553.png b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 553.png
new file mode 100644
index 00000000..7144f7aa
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 553.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 554.png b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 554.png
new file mode 100644
index 00000000..e58fb6ab
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 554.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 557.png b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 557.png
new file mode 100644
index 00000000..11fa7cbd
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 557.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 558.png b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 558.png
new file mode 100644
index 00000000..bbf25398
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 558.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 5581.png b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 5581.png
new file mode 100644
index 00000000..d0c4e134
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 5581.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 559.png b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 559.png
new file mode 100644
index 00000000..f1b9fd0e
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 559.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 561.png b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 561.png
new file mode 100644
index 00000000..1a9ac020
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 561.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 562.png b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 562.png
new file mode 100644
index 00000000..d9091ed6
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 562.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 563.png b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 563.png
new file mode 100644
index 00000000..0b973998
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 563.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 567.png b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 567.png
new file mode 100644
index 00000000..4281e533
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 567.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 571.png b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 571.png
new file mode 100644
index 00000000..f5782470
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 571.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Vector.png b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Vector.png
new file mode 100644
index 00000000..fc547ca8
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Vector.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Frame 16.png b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Frame 16.png
new file mode 100644
index 00000000..030824f3
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Frame 16.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Frame 17.png b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Frame 17.png
new file mode 100644
index 00000000..6d74ac05
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Frame 17.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Frame 18.png b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Frame 18.png
new file mode 100644
index 00000000..bb9ce27e
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Frame 18.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Frame 19.png b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Frame 19.png
new file mode 100644
index 00000000..1a81d376
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Frame 19.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 448.png b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 448.png
new file mode 100644
index 00000000..3a00afc9
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 448.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 518.png b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 518.png
new file mode 100644
index 00000000..d1de3744
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 518.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 519.png b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 519.png
new file mode 100644
index 00000000..b4c850a1
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 519.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 545.png b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 545.png
new file mode 100644
index 00000000..6c503847
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 545.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 546.png b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 546.png
new file mode 100644
index 00000000..043a65a2
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 546.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 547.png b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 547.png
new file mode 100644
index 00000000..b16ebb78
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 547.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 548.png b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 548.png
new file mode 100644
index 00000000..5e3fbaec
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 548.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 549.png b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 549.png
new file mode 100644
index 00000000..8f2f2cbc
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 549.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 550.png b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 550.png
new file mode 100644
index 00000000..23250db1
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 550.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 551.png b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 551.png
new file mode 100644
index 00000000..fb523bf9
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 551.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 553.png b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 553.png
new file mode 100644
index 00000000..8015a71f
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 553.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Rectangle 347.png b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Rectangle 347.png
new file mode 100644
index 00000000..a548a4af
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Rectangle 347.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Rectangle 371.png b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Rectangle 371.png
new file mode 100644
index 00000000..b44ffd3b
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Rectangle 371.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/image.png b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/image.png
new file mode 100644
index 00000000..ed8806ea
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/image.png differ
diff --git a/wb_new_ui/assets/NewGroup/package.xml b/wb_new_ui/assets/NewGroup/package.xml
index 4a3e21d4..48a30140 100644
--- a/wb_new_ui/assets/NewGroup/package.xml
+++ b/wb_new_ui/assets/NewGroup/package.xml
@@ -843,6 +843,66 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file