123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- page{
- padding: 0;
- margin: 0;
- }
- .dialog-generation {
- height: 100vh;
- background: linear-gradient(180deg, #181c3a 0%, #2a1c3a 100%);
- padding: 0;
- margin: 0;
- position: relative;
- font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
- background: url("../../static/makedetail/dialog-generation-bg.png") top
- center/100% 100% no-repeat;
- box-sizing: border-box;
- padding-top: var(--status-bar-height);
- padding-bottom: var(--window-bottom);
- box-sizing: border-box;
- }
- .subject-matter-ofText{
- width: 100vw;
- height: 100%;
- box-sizing: border-box;
- }
-
- .navbar {
- width: calc(100vw - 60rpx);
- height: 180rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 30rpx;
- // z-index: 99;
- // padding-top: var(--status-bar-height);
- .navbar-left {
- width: 435rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .back {
- width: 32rpx;
- height: 32rpx;
- }
- .elf-name {
- color: #fff;
- font-family: "CustomFont";
- font-size: 36rpx;
- transform: skewX(-5deg);
- }
- .deepseek {
- width: 168rpx;
- height: 36rpx;
- }
- }
- .navbar-right {
- width: 130rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .primary {
- width: 48rpx;
- height: 48rpx;
- }
- .createChat {
- width: 48rpx;
- height: 48rpx;
- }
- }
- }
- .navbar-reserveASeat {
- width: 100vw;
- height: calc(180rpx + var(--status-bar-height));
- }
- .chat-content {
- flex: 1;
- // overflow-y: auto;
- background: transparent;
- height: calc( 100% - 370rpx );
- width: 100vw;
- box-sizing: border-box;
- padding: 0 28rpx;
- }
- .chat-bubble {
- font-size: 32rpx;
- word-break: break-all;
- margin: 28rpx 0;
- }
- .chat-bubble.user {
- margin-left: calc( 100% - 514rpx );
- width: 514rpx;
- color: #fff;
- background: linear-gradient( 270deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.2 ) 100%);
- border-radius: 36rpx 36rpx 12rpx 36rpx;
- border: 1px solid rgba(255, 255, 255, 0.25);
- padding: 22rpx 32rpx 20rpx 34rpx;
- backdrop-filter: blur(10px);
- }
- .chat-bubble.ai {
- color: rgba(255,255,255,0.9);
- }
- .chat-bubble .chat-bubble span {
- color: #fff;
- }
- .bom-reserveASeat {
- width: 100vw;
- height: calc(190rpx + var(--window-bottom));
- }
- .bom-box {
- width: 100vw;
- height: calc(190rpx + var(--window-bottom));
- // position: fixed;
- bottom: 0;
- left: 0;
- padding-bottom: var(--window-bottom);
- box-sizing: border-box;
- padding-top: 30rpx;
- .input-bar {
- display: flex;
- min-height: 90rpx;
- width: 700rpx;
- background: rgba(255, 255, 255, 0.26);
- border-radius: 46rpx;
- border: 2rpx solid rgba(255, 255, 255, 0.25);
- margin: 0 25rpx;
- align-items: center;
- .input-box {
- flex: 1;
- height: 60rpx;
- border: none;
- outline: none;
- background: transparent;
- color: #fff;
- font-size: 30rpx;
- padding-left: 10rpx;
- }
- .send-btn {
- margin-left: 18rpx;
- background: linear-gradient(90deg, #ffb86c 0%, #ff6e7f 100%);
- color: #fff;
- border: none;
- border-radius: 32rpx;
- font-size: 30rpx;
- padding: 0 38rpx;
- height: 60rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- }
- .footer-tip {
- text-align: center;
- color: rgba(255, 255, 255, 0.5);
- font-size: 24rpx;
- width: 100vw;
- padding: 20rpx 0;
- }
- }
-
- .chat-content-empty{
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- image{
- width: 182rpx;
- height: 182rpx;
- }
- .chat-content-empty-title{
- font-family: "PingFang SC-Bold";
- font-weight: 400;
- font-size: 36rpx;
- color: rgba(255,255,255,0.9);
- padding-top: 8rpx;
- padding-bottom: 12rpx;
- }
- .chat-content-empty-desc{
- font-family:'PingFang SC-Medium';
- font-size: 28rpx;
- color: rgba(255,255,255,0.5);
- }
- }
|