1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- @charset "utf-8";
- #my-answer {
- .user-action {
- .tip {
- font-size: 12px;
- color: #A7A7B7;
- span {
- color: #4299FF;
- cursor: pointer;
- margin: 0 5px;
- }
- i {
- font-size: 14px;
- cursor: pointer;
- }
- }
- .switch {
- height: 100%;
- }
- }
- .table-layout {
- padding: 20px 30px;
- .user-table {
- table {
- margin: 0;
- font-size: 12px;
- th.select {
- padding-left: 45px;
- }
- th {
- color: #686872;
- font-weight: 500;
- background: #FBFBFB;
- padding: 20px 15px;
- white-space: nowrap;
- overflow: hidden;
- }
- td {
- padding: 20px 15px;
- background: #FBFBFB;
- border-bottom: 1px solid #eee;
- }
- .group {
- display: inline-block;
- &.text-hidden {
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- }
- .sub {
- display: inline-block;
- }
- }
- }
- .answer-layout {
- border-bottom: 1px solid #eee;
- padding-top: 20px;
- padding-left: 15px;
- .title {
- font-size: 14px;
- line-height: 14px;
- margin-bottom: 20px;
- color: #303139;
- }
- .small-tag {
- display: inline-block;
- height: 16px;
- background: rgba(163, 207, 255, 1);
- border-radius: 2px;
- color: #fff;
- line-height: 16px;
- font-size: 10px;
- padding: 0 9px;
- }
- .desc {
- color: #303139;
- margin-bottom: 20px;
- }
- }
- }
- }
|