123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- #reply {
- .reply-box {
- background: #ffffff;
- padding: 10px;
- .hint {
- color: #da4224;
- background: #f4ffc1;
- p {
- padding: 10px;
- line-height: 20px;
- i {
- font-size: 20px;
- }
- }
- }
- .tabs {
- padding: 10px 0;
- .title {
- font-size: 20px;
- font-weight: bold;
- }
- .controls {
- .check-item {
- color: #676a6c;
- display: inline-block;
- margin-right: 10px;
- font-size: 16px;
- cursor: pointer;
- }
- }
- #myTabContent {
- padding-top: 20px;
- position: relative;
- .select {
- border: 1px dashed #ddd;
- width: 308px;
- height: auto;
- background: #eee;
- text-align: center;
- color: #333;
- cursor: pointer;
- :hover {
- color: #58b4ef;
- }
- p {
- height: 200px;
- line-height: 200px;
- }
- .delete {
- display: none;
- position: absolute;
- top: 20px;
- left: 285px;
- font-size: 20px;
- }
- }
- .btn {
- margin-top: 20px;
- display: inline-block;
- padding: 12px 50px;
- font-size: 16px;
- line-height: 20px;
- color: #fff;
- text-align: center;
- vertical-align: middle;
- cursor: pointer;
- background: #44b549;
- border: none;
- }
- }
- }
- }
- }
- .modal {
- .modal-header {
- background: #eeeeee;
- color: #333333;
- font-size: 16px;
- }
- .modal-body {
- padding: 0;
- .no-material {
- padding: 100px;
- text-align: center;
- display: none;
- }
- .have-material {
- padding: 10px;
- .seek {
- float: right;
- width: 200px;
- margin-right: 15px;
- }
- .material-table {
- margin-top: 60px;
- .table {
- th {
- background: none;
- border-bottom: none;
- &:first-child {
- width: 35px;
- }
- &:nth-child(2) {
- width: 45px;
- text-align: center;
- }
- }
- .no {
- text-align: center;
- }
- }
- }
- &.img-list {
- div {
- padding: 10px;
- img {
- display: block;
- width: 100%;
- height: 240px;
- }
- }
- .img-box {
- border: 1px solid #dddddd;
- position: relative;
- &:after {
- content: ' ';
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: rgba(0, 0, 0, .4);
- z-index: 100;
- text-align: center;
- padding-top: 100px;
- display: none;
- }
- &:hover:after {
- display: block;
- cursor: pointer;
- }
- }
- }
- }
- }
- }
|