| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- /* 公告详情 */
- .notice-detail {
- background: #f9f9f9;
- padding-bottom: 40px;
- }
- .notice-detail .notic-box {
- display: flex;
- align-items: flex-start;
- }
- .notice-detail .notic-box .det {
- flex: 1;
- background: #fff;
- padding: 30px;
- /* margin-right: 20px; */
- min-height: 420px;
- }
- .notice-detail .notic-box .det .tit {
- font-size: 20px;
- font-weight: 600;
- margin-bottom: 20px;
- }
- .notice-detail .notic-box .det .time-box {
- display: flex;
- align-items: center;
- color: #999;
- padding-bottom: 20px;
- border-bottom: 1px solid #eee;
- }
- .notice-detail .notic-box .det .time-box .time {
- font-family: arial;
- }
- .notice-detail .notic-box .det .con {
- margin-top: 20px;
- font-size: 12px;
- color: #999;
- line-height: 20px;
- word-break: break-word;
- }
- .notice-detail .notic-box .list-box {
- background: #fff;
- width: 350px;
- }
- .notice-detail .notic-box .list-box .more {
- display: flex;
- align-items: center;
- height: 20px;
- padding: 20px;
- background: #f2f2f2;
- cursor: pointer;
- }
- .notice-detail .notic-box .list-box .more:hover {
- background: #eee;
- }
- .notice-detail .notic-box .list-box .more .text {
- font-size: 16px;
- flex: 1;
- }
- .notice-detail .notic-box .list-box .more .arrow {
- width: 16px;
- height: 16px;
- border-radius: 50%;
- background: #333;
- position: relative;
- margin-top: 3px;
- }
- .notice-detail .notic-box .list-box .more .arrow::after {
- position: absolute;
- top: 5px;
- left: 5px;
- display: block;
- content: " ";
- font-size: 0;
- width: 4px;
- height: 4px;
- border: 1px solid #fff;
- border-width: 1px 1px 0 0;
- -webkit-transform: rotate(45deg);
- -moz-transform: rotate(45deg);
- transform: rotate(45deg);
- }
- .notice-detail .notic-box .list-box .list .item {
- padding: 20px 30px;
- cursor: pointer;
- position: relative;
- }
- .notice-detail .notic-box .list-box .list .item::after {
- position: absolute;
- bottom: 0;
- left: 30px;
- right: 30px;
- display: block;
- width: auto;
- height: 1px;
- content: " ";
- font-size: 0;
- background: #eee;
- }
- .notice-detail .notic-box .list-box .list .item:hover {
- background: #fcfcfc;
- }
- .notice-detail .notic-box .list-box .list .item:last-child::after {
- height: 0;
- }
- .notice-detail .notic-box .list-box .list .item .tit {
- font-weight: 600;
- font-size: 14px;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 1;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .notice-detail .notic-box .list-box .list .item .time {
- color: #999;
- margin-top: 10px;
- }
- .notice-detail .notic-box .list-box .list .item.arrow-box {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 26px;
- }
- .notice-detail .notic-box .list-box .list .item .prev-arrow,
- .notice-detail .notic-box .list-box .list .item .next-arrow {
- width: 26px;
- height: 26px;
- border-radius: 50%;
- background: #eee;
- position: relative;
- margin: 0 15px;
- cursor: pointer;
- }
- .notice-detail .notic-box .list-box .list .item .prev-arrow.disable,
- .notice-detail .notic-box .list-box .list .item .next-arrow.disable {
- opacity: 0.5;
- cursor: not-allowed;
- }
- .notice-detail .notic-box .list-box .list .item .prev-arrow::after,
- .notice-detail .notic-box .list-box .list .item .next-arrow::after {
- position: absolute;
- display: block;
- content: " ";
- font-size: 0;
- width: 6px;
- height: 6px;
- border: 1px solid #333;
- -webkit-transform: rotate(45deg);
- -moz-transform: rotate(45deg);
- transform: rotate(45deg);
- }
- .notice-detail .notic-box .list-box .list .item .prev-arrow::after {
- left: 11px;
- top: 9px;
- border-width: 0 0 1px 1px;
- }
- .notice-detail .notic-box .list-box .list .item .next-arrow::after {
- left: 9px;
- top: 9px;
- border-width: 1px 1px 0 0;
- }
- /* 公告详情 end */
|