123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- .btns {
- display: flex;
- .unit,
- .start {
- height: 38px;
- }
- .unit {
- flex: none;
- margin-left: 10px;
- }
- .start {
- flex: 1;
- }
- }
- .tree {
- margin-top: 20px;
- padding-bottom: 100px;
- }
- .header-btns {
- margin: 0 -20px;
- padding: 0 20px 20px;
- border-bottom: 1px solid rgba(255,255,255,0.1600);;
- }
- .sign {
- padding: 20px 0;
- border-top: 1px solid rgba(255,255,255,0.1600);
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 0 !important;
- &:last-child {
- border-bottom: 1px solid rgba(255,255,255,0.1600);
- }
- }
- .content {
- display: flex;
- align-items: center;
- .cover {
- display: flex;
- position: relative;
- width: 48px;
- height: 48px;
- align-items: center;
- justify-content: center;
- color: #fff;
- font-size: 16px;
- margin-right: 10px;
- flex: none;
- img,
- &::before {
- position: absolute;
- left: 0;
- top: 0;
- bottom: 0;
- right: 0;
- }
-
- &::before{
- content: '';
- z-index: 2;
- background: rgba(0,0,0,0.5);
- }
- img {
- position: absolute;
- z-index: 1;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- }
- .preview {
- position: relative;
- z-index: 3;
- }
- }
- .title {
- p {
- font-size: 14px;
- }
- span {
- font-size: 12px;
- color: rgba(255,255,255,0.4000);
- }
- }
- }
- .action {
- color: #fff;
- font-size: 14px;
- flex: none;
- margin-left: 10px;
- }
- .countdown {
- font-size: 14px;
- color: rgba(255,255,255,0.6);
- background-color: var(--editor-toolbox-back);
- position: absolute;
- z-index: 99;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- padding: 30px 60px;
- pointer-events: none;
- p:not(:last-child) {
- margin-bottom: 15px;
- }
- .title {
- color: #fff;
- span {
- font-size: 32px;
- font-weight: bold;
- color: #00C8AF;
- margin-right: 14px;
- }
- }
- }
- .shot-ctrl {
- z-index: 2;
- .btn {
- flex: none;
- width: 160px;
- &:not(:last-child) {
- margin-right: 20px;
- }
- }
- .other {
- position: absolute;
- bottom: calc(100% + 120px);
- left: 50%;
- transform: translateX(-50%) ;
- .icon {
- margin: 20px;
- display: inline-block;
- width: 64px;
- height: 64px;
- border-radius: 50%;
- background-color: var(--editor-toolbox-back);
- color: rgba(255,255,255,0.6);
- font-size: 34px;
- text-align: center;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- }
- }
- .video-list {
- position: absolute;
- bottom: 100%;
- left: 0;
- width: 100%;
- height: 120px;
- overflow-x: auto;
- background-color: var(--editor-toolbox-back);
- .layout {
- display: flex;
- align-items: center;
- height: 100%;
- justify-content: space-around;
- }
- .cover {
- height: 80px;
- position: relative;
-
- &::before {
- position: absolute;
- left: 0;
- top: 0;
- bottom: 0;
- right: 0;
- content: '';
- z-index: 2;
- background: rgba(0,0,0,0.5);
- }
- .preview {
- position: absolute;
- z-index: 3;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- font-size: 22px;
- }
- }
- }
|