123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- @font-face {
- font-display: swap;
- font-family: 'AlimamaShuHeiTi';
- src: url('@/assets/fonts/AlimamaShuHeiTi-Bold.woff2') format('woff2'),
- url('@/assets/fonts/AlimamaShuHeiTi-Bold.woff') format('woff'),
- url('@/assets/fonts/AlimamaShuHeiTi-Bold.ttf') format('ttf');
- font-weight: normal;
- font-style: normal;
- }
- @font-face {
- font-display: swap;
- font-family: 'D-DIN-PRO-700-Bold';
- src: url('@/assets/fonts/D-DIN-PRO-700-Bold.otf') format('opentype');
- font-weight: normal;
- font-style: normal;
- }
- @font-face {
- // font-display: swap;
- font-family: 'YouSheBiaoTiHei';
- src: url('@/assets/fonts/YouSheBiaoTiHei.ttf');
- // font-weight: normal;
- // font-style: normal;
- }
- @font-face {
- // font-display: swap;
- font-family: 'DingTalk';
- src: url('@/assets/fonts/DingTalk.ttf');
- // font-weight: normal;
- // font-style: normal;
- }
- // chat 布局相关
- .chat-ask_icon,
- .chat-answer_icon {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 32px;
- height: 32px;
- border: 1px solid #A8D3F1;
- border-radius: 50%;
- background-color: #ECF2FF;
- }
- .chat-answer_icon {
- border: 1px solid #E5ECF0;
- background: #fff;
- }
- .code-block-wrapper {
- padding: 10px 0;
- }
- #warning {
- .base-card-container {
- margin-bottom: 20px;
- }
- .warning-item-inner {
- position: relative;
- padding: 20px 8px 8px 8px;
- border-radius: 4px;
- background: #DDE5EF;
- .tips {
- position: absolute;
- width: 36px;
- height: 14px;
- top: 0;
- right: 0px;
- border-radius: 0px 4px 0px 4px;
- font-size: 8px;
- text-align: center;
- line-height: 14px;
- &_warning,
- &_being {
- color: #F44C49;
- background: #FFF0ED;
- }
- &_success {
- color: #51BF8E;
- background: #E9FAF2;
- }
- &_close {
- color: #999999;
- background: #D5D5D5;
- }
- }
- }
- .warning-info {
- line-height: 16px;
- font-size: 11px;
- color: #5E5E5E;
- dd {
- margin-top: 4px;
- }
- &_medium {
- line-height: 26px;
- font-size: 14px;
- color: #1A2029;
- }
- }
- // 回答区域卡片
- .waring-answer-wrapper {
- display: flex;
- justify-content: space-between;
- .message-inner {
- width: 194px;
- flex-shrink: 0;
- span {
- white-space: nowrap;
- }
- }
- .table-inner {
- @include flex(y, start, between);
- padding-left: 20px;
- border-left: 1px solid #F1F1F1;
- .warning-table {
- .title {
- margin-bottom: 8px;
- line-height: 16px;
- font-size: 12px;
- font-weight: bold;
- color: #1A2029;
- }
- }
- }
- }
- .radio-wrapper {
- .radio-btn-group {
- @include flex(x, center, center);
- font-size: 14px;
- text-align: center;
- color: #5E5E5E;
- .radio-btn {
- width: 62px;
- height: 28px;
- border-radius: 4px;
- background: #F4F6F8;
- font-size: 14px;
- line-height: 26px;
- cursor: pointer;
- &.active,
- &:hover {
- color: #2454FF;
- background: #E2F1FF;
- }
- &.active {
- background: #E2F1FF url('@/assets/images/chat/bg-raido-check.png') right bottom no-repeat;
- }
- }
- }
- }
- }
- .recode-card-item {
-
- &:hover, &_active {
- border-radius: 2px;
- background-color: #fff;
- box-shadow: 0.5px 0.5px 4px 0px #93A1B233;
- overflow: hidden;
- .content {
- color: #325DF3;
- }
- .del-icon {
- display: block;
- &:hover {
- color: red;
- }
- }
- &::before {
- position: absolute;
- top: 0;
- left: 0px;
- display: block;
- content: " ";
- width: 2px;
- height: 100%;
- background: #325DF3;
- }
- }
- }
- // pre code,
- // pre tt {
- // line-height: 1.65;
- // }
- // .highlight pre,
- // pre {
- // background-color: #fff;
- // }
- // code.hljs {
- // padding: 0;
- // }
- // .code-block {
- // &-wrapper {
- // position: relative;
- // padding-top: 24px;
- // }
- // &-header {
- // position: absolute;
- // top: 5px;
- // right: 0;
- // width: 100%;
- // padding: 0 1rem;
- // display: flex;
- // justify-content: flex-end;
- // align-items: center;
- // color: #b3b3b3;
- // &__copy {
- // cursor: pointer;
- // margin-left: 0.5rem;
- // user-select: none;
- // &:hover {
- // color: #65a665;
- // }
- // }
- // }
- // }
|