123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- 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: #FCFCFD;
- z-index: 99;
- }
- .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 {
- 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;
- }
|