123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- // AI禁忌事项
- .page {
- background-color: #f2f2f2;
- height: calc(100% - 114px);
- width: 100vw;
- overflow-y: scroll;
- }
- .footer {
- position: fixed;
- bottom: 60px;
- width: 100vw;
- }
- .chat-container {
- padding: 10px;
- }
- .message-container {
- display: flex;
- align-items: flex-start;
- margin-bottom: 10px;
- }
- .message-container-mine {
- display: flex;
- align-items: flex-start;
- margin-bottom: 10px;
- flex-direction: row-reverse;
- }
- .avatar-left {
- width: 40px;
- height: 40px;
- border-radius: 50%;
- margin-right: 10px;
- }
- .avatar-right {
- width: 40px;
- height: 40px;
- border-radius: 50%;
- margin-left: 10px;
- }
- .message-box-left {
- background-color: #fff;
- border-radius: 10px;
- padding: 10px;
- max-width: 70%;
- }
- .message-box-right {
- background-color: #95ec69;
- border-radius: 10px;
- padding: 10px;
- max-width: 70%;
- }
- .message-content {
- word-wrap: break-word;
- }
- .send-container {
- display: flex;
- align-items: center;
- padding: 10px;
- background-color: #f2f2f2;
- }
- .message-input {
- flex: 1;
- padding: 8px;
- border: none;
- border-radius: 20px;
- background-color: #fff;
- }
- .send-button {
- padding: 8px 15px;
- border: none;
- border-radius: 20px;
- background-color: #38c1f5;
- color: white;
- font-weight: bold;
- cursor: pointer;
- margin-left: 10px;
- }
- .navfooter {
- width: 100%;
- height: 120px;
- }
- .question {
- font-weight: bold;
- margin-bottom: 10px;
-
- }
-
- .question-label {
- font-size: 18px;
- }
-
- .option {
- margin-bottom: 8px;
- }
-
- .option-label {
- font-size: 16px;
- }
-
|