12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- @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;
- }
- }
- }
- .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;
- }
- .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;
- }
- }
- }
- }
|