123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- @import './variables.scss';
- @import './mixin.scss';
- @import './transition.scss';
- @import './element-ui.scss';
- // @import './sidebar.scss';
- body {
- height: 100%;
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- text-rendering: optimizeLegibility;
- font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
- }
- label {
- font-weight: 700;
- }
- html {
- height: 100%;
- box-sizing: border-box;
- }
- #app {
- height: 100%;
- }
- *,
- *:before,
- *:after {
- box-sizing: inherit;
- // white-space: pre-wrap;
- }
- a:focus,
- a:active {
- outline: none;
- }
- a,
- a:focus,
- a:hover {
- cursor: pointer;
- color: inherit;
- text-decoration: none;
- }
- div:focus {
- outline: none;
- }
- .clearfix {
- &:after {
- visibility: hidden;
- display: block;
- font-size: 0;
- content: ' ';
- clear: both;
- height: 0;
- }
- }
- // main-container global css
- .app-container {
- padding: 20px;
- }
- // 重写分页样式
- .el-pagination {
- padding-top: 20px;
- }
- .el-message__icon {
- font-size: 20px;
- }
- .Book_flex {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- }
- .Book_flex_start {
- display: flex;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .Book_flex .insert_pinyin {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- cursor: pointer;
- margin-left: 15px;
- >img {
- width: 24px;
- height: 20px;
- margin-right: 8px;
- }
- >span {
- line-height: 24px;
- font-size: 14px;
- }
- }
- .Book_flex_start .insert_pinyin {
- display: flex;
- justify-content: flex-start;
- align-content: flex-start;
- cursor: pointer;
- margin-left: 15px;
- >img {
- width: 24px;
- height: 20px;
- margin-right: 8px;
- }
- >span {
- line-height: 24px;
- font-size: 14px;
- }
- }
- .Book_border_radius_6 {
- border-radius: 6px;
- }
- .Book_tm_index {
- font-size: 14px;
- margin: 0;
- }
- .Book_enter_container {
- padding: 20px 32px 20px 0px;
- border: 1px solid #d0d0d0;
- width: 80%;
- border-radius: 8px;
- .sentenceChoice_notice {
- font-size: 14px;
- color: red;
- line-height: 20px;
- margin-bottom: 10px;
- padding-left: 50px;
- }
- }
- .zhuanTtf {
- font-family: zhuan;
- }
- .Book_orange_color {
- color: #FFD46E;
- }
- .Big-Book-Maxwidth {
- .el-textarea {
- width: 100%;
- margin-right: 15px;
- }
- }
- .Big-Book {
- &-content {
- width: 100%;
- }
- &-main {
- width: 100%;
- }
- &-left-text {
- display: block;
- font-size: 14px;
- }
- &-con-top {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 8px;
- ;
- }
- }
- input::-webkit-input-placeholder {
- color: rgba($color: #000000, $alpha: 0.3);
- }
- input::-moz-placeholder {
- color: rgba($color: #000000, $alpha: 0.3);
- }
- input:-moz-placeholder {
- color: rgba($color: #000000, $alpha: 0.3);
- }
- input:-ms-input-placeholder {
- color: rgba($color: #000000, $alpha: 0.3);
- }
|