123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- page {
- background-color: #ffffff;
- padding: 0;
- }
- .header {
- position: fixed;
- top: 0;
- left: 0;
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 100vw;
- height: 92rpx;
- background-color: #f6f7f8;
- z-index: 99;
- box-shadow: 0px -4rpx 16rpx 0px rgba(0, 0, 0, 0.05);
- }
- .header_title {
- font-size: 32rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- color: #000000;
- height: 52rpx;
- line-height: 52rpx;
- margin-left: 40rpx;
- font-weight: 550;
- }
- .head-bot-class {
- text-align: center !important;
- width: 140rpx !important;
- height: 52rpx !important;
- border-radius: 10rpx !important;
- margin-right: 20rpx !important;
- padding: 0 !important;
- font-size: 24rpx !important;
- }
- .head-bot-l {
- background: rgba(255, 182, 0, 0.1) !important;
- border: 2rpx solid rgba(255, 182, 0, 0.6) !important;
- box-sizing: border-box !important;
- color: #FFB600 !important;
- }
- .head-bot-r {
- background: linear-gradient(180deg, #FFDC00 0%, #FFB600 100%) !important;
- font-family: PingFangSC-Medium, PingFang SC !important;
- color: #FFFFFF !important;
- border: 0 !important;
- }
- /* 聊天可视区 */
- .chatFrame {
- width: 100vw;
- max-height: 100vh;
- }
- /* 粘底输入框 */
- .input-box {
- position: fixed;
- width: 100vw;
- background-color: #F6F7F8;
- left: 0;
- bottom: 0;
- z-index: 99;
- }
- .input-text {
- position: relative;
- width: 710rpx;
- height: 64rpx;
- line-height: 64rpx;
- background-color: #ffffff;
- border-radius: 32rpx;
- margin: 20rpx auto !important;
- padding: 0 25rpx 0;
- box-sizing: border-box;
- }
- /* 功能 */
- .functionalZone {
- display: flex;
- justify-content: space-around;
- height: 40rpx;
- width: 80vw;
- margin: 0 auto;
- padding-bottom: 26rpx;
- }
- .functionalZone image {
- height: 100%;
- }
- .multi-row {
- line-height: 44rpx;
- }
- .meme-box {
- width: 90vw;
- height: 385rpx;
- margin: 0 auto;
- padding-bottom: 15rpx;
- }
- .meme-item {
- float: left;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 12.5%;
- height: 80rpx;
- }
- .meme-item image {
- width: 50rpx;
- height: 50rpx;
- }
- .popup-class {
- width: 100vw;
- background-color: #F6F7F8;
- }
- /* 遮罩层 */
- .mask-layer {
- position: fixed;
- width: 100vw;
- height: 100vh;
- top: 0;
- left: 0;
- z-index: 9;
- }
- /* 群聊编辑按钮 */
- .compile {
- width: 118rpx !important;
- height: 52rpx !important;
- background: #FFB600 !important;
- border-radius: 10rpx;
- padding: 0;
- margin-right: 20rpx;
- font-size: 24rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- color: #FFFFFF;
- }
- /* 群聊按钮 */
- .gambit {
- position: absolute;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 710rpx;
- height: 100%;
- background: linear-gradient(180deg, #FFFFFF 0%, #F4F4F4 100%);
- box-shadow: 0px 0px 4rpx 0px rgba(0, 0, 0, 0.1);
- left: 0;
- top: 0;
- z-index: 9999999999999;
- font-size: 24rpx;
- color: rgba(0, 0, 0, 0.5);
- }
- .gambit-end {
- position: absolute;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 126rpx;
- height: 52rpx;
- background: #4BBECF;
- box-shadow: 0px 2rpx 4rpx 0px rgba(0, 0, 0, 0.15);
- border-radius: 32rpx;
- top: 6rpx;
- right: 6rpx;
- }
- .gambit-end image {
- width: 34rpx;
- height: 36rpx;
- z-index: 999999999;
- }
|