123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- .content {
- // --padding-bottom: 50px;
- --background: #fff;
- .nav-data {
- position: fixed;
- top: 20px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- padding: 10px;
- color: white;
- z-index: 1;
- .room-data {
- background-color: rgb(0 0 0 / 40%);
- display: flex;
- width: 160px;
- justify-content: space-between;
- align-items: center;
- border-radius: 40px;
- padding: 4px;
- border: 1px solid rgb(255 255 255 / 30%);
- .avatar {
- width: 36px;
- height: 36px;
- }
- .profile-title {
- display: flex;
- flex-direction: column;
- align-items: start;
- justify-content: space-around;
- margin-left: 4px;
- flex: 1;
- .profile-name {
- font-size: 14px;
- }
- .level {
- background-color: #cc59de;
- text-align: center;
- font-size: 12px;
- border-radius: 20px;
- padding: 0px 6px;
- }
- }
- ion-icon {
- margin-left: 10px;
- font-size: 30px;
- }
- }
- .report,
- .exit {
- background-color: rgb(0 0 0 / 40%);
- color: white;
- border-radius: 50%;
- width: 36px;
- height: 36px;
- display: flex;
- align-items: center;
- justify-content: center;
- border: 1px solid rgb(255 255 255 / 30%);
- ion-icon {
- font-size: 26px;
- }
- }
- }
- .tools {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- padding: 10px;
- .swiper-wrapper {
- // height: 280px;
- // justify-content: end;
- }
- .row {
- display: flex;
- justify-content: space-between;
- .row-li {
- display: flex;
- justify-content: center;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- color: #fff;
- width: 100px;
- margin-bottom: 6px;
- .label {
- margin-top: 6px;
- font-size: 14px;
- }
- .icon-box {
- background-color: rgba(0, 0, 0, 0.4);
- // border: 1px solid rgba(255, 255, 255, 0.3);
- border-radius: 50%;
- padding: 4px;
- display: flex;
- align-items: center;
- justify-content: center;
- ion-icon {
- color: white;
- font-size: 30px;
- }
- .icon-tool {
- width: 30px;
- height: 30px;
- }
- img {
- width: 50px;
- height: 50px;
- background: white;
- border-radius: 50%;
- overflow: hidden;
- }
- }
- .action-icon {
- background-color: #ffffff;
- ion-icon {
- color: black !important;
- }
- }
- }
- .tips {
- background-color: rgba(0, 0, 0, 0.4);
- border-radius: 20px;
- color: white;
- padding: 6px;
- margin-bottom: 10px;
- font-size: 12px;
- span {
- color: #ffc409;
- }
- }
- }
- }
- .chat-template {
- // height: 370px;
- display: flex;
- flex-direction: column;
- justify-content: end;
- background: linear-gradient(to top, #000, #fff0);
- border-radius: 0 0 4px 4px;
- .chat-list{
- height: 160px;
- color: #fff;
- overflow-y: scroll;
- .tips{
- color:#b7000e;
- text-align: center;
- }
- .message{
- font-size: 12px;
- margin-bottom: 4px;
- }
- .slef_m{
- color: #ffc409;
- }
- }
- .footer-tool {
- display: flex;
- // background: white;
- padding: 0 4px;
- backdrop-filter: saturate(180%) blur(20px);
- background: rgb(255 255 255 / 0.8);
- border-radius: 4px;
- .input-bar {
- // width: 160px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- flex-shrink: 0;
- ion-icon {
- font-size: 30px;
- }
- .splice {
- margin: 0 2px;
- }
- }
- .tools-maxwid {
- width: 160px;
- }
- }
- .emoji-content {
- background: #fbfbfb;
- height: 160px;
- overflow-y: scroll;
- .emoji-box {
- display: flex;
- flex-wrap: wrap;
- width: 100%;
- .emoji-item {
- width: 30px;
- height: 30px;
- display: flex;
- justify-content: center;
- align-items: center;
- .emoji-img {
- width: 20px;
- height: 20px;
- }
- }
- .emoji-item__del {
- width: 30px;
- height: 30px;
- display: flex;
- justify-content: center;
- align-items: center;
- .emoji-img {
- width: 20px;
- height: 20px;
- }
- }
- }
- }
- }
- }
- .langh{
- height:200px !important;
- }
|