| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- body {
- color: var(--text-color);
- background: #000;
- padding: 20px;
- }
- .s-title {
- display: flex;
- justify-content: space-between;
- width: 100%;
- margin-bottom: 10px;
- }
- .s-title .tag {
- color: #aa00f5;
- font-size: 14px;
- padding: 2px;
- border: 1px solid #aa00f5;
- }
- .video-ctrl {
- width: 100%;
- margin-bottom: 10px;
- }
- .video-ctrl video {
- width: 100%;
- height: 300px;
- }
- .m-detail{
- display: flex;
- justify-content: space-between;
- }
- .detail-left{
- flex:2;
- }
- .detail-left img{
- width: 90%;
- }
- .detail-right{
- flex:3;
- margin-left: 10px;
- }
- .detail-right .detail-item{
- display: flex;
- justify-content: space-between;
- line-height: 2;
- align-items: center;
- margin-bottom: 5px;
- font-size: 16px;
- }
- .detail-right .detail-item .di-l{
- color: var(--sub-text-color);
- flex: 2;
- }
- .detail-right .detail-item .di-r{
- flex: 3;
- text-align: right;
- }
- .settting,.cancel{
- text-align: right;
- margin: 10px auto 20px;
- }
- .settting span{
- color:#fff;
- font-size: 14px;
- padding: 4px 10px;
- background: var(--sub-text-color);
- cursor: pointer;
- }
- .cancel span{
- color:var(--sub-text-color);
- font-size: 14px;
- padding: 4px 10px;
- background: #fff;
- cursor: pointer;
- }
- a {
- text-decoration: none;
- }
- a:hover {
- text-decoration: none;
- }
- .tcdPageCode {
- padding: 0 0 15px 0;
- color: #ccc;
- text-align: right;
- }
- .tcdPageCode a {
- display: inline-block;
- color: #000;
- display: inline-block;
- height: 25px;
- line-height: 25px;
- padding: 0 8px;
- border: 1px solid #ddd;
- margin: 0 4px;
- vertical-align: middle;
- background: #fff;
- }
- .tcdPageCode a:hover {
- text-decoration: none;
- border: 1px solid #428bca;
- }
- .tcdPageCode span.current {
- display: inline-block;
- height: 25px;
- line-height: 25px;
- padding: 0 8px;
- margin: 0 4px;
- color: #fff;
- background-color: #428bca;
- border: 1px solid #428bca;
- vertical-align: middle;
- }
- .tcdPageCode span.disabled {
- display: inline-block;
- height: 25px;
- line-height: 25px;
- padding: 0 8px;
- margin: 0 4px;
- color: #bfbfbf;
- background: #f2f2f2;
- border: 1px solid #bfbfbf;
- vertical-align: middle;
- }
|