12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /* pages/main/component/Player/index.wxss */
- .player-container {
- width: calc(100vw - 32px - 16px);
- display: flex;
- flex-direction: row;
- padding-left: 16px;
- background: gainsboro;
- align-items: center;
- height:64px;
- background:rgba(249,249,251,1);
- border-radius:10px;
- position: relative;
- }
- .play-btn {
- width: 32px;
- height: 32px;
- background:linear-gradient(180deg,rgba(125,218,153,1) 0%,rgba(71,179,96,1) 100%);
- border-radius: 16px;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- }
- progress {
- width: calc(100% - 16px - 32px - 32px - 80px);
- margin-left: 16px;
- margin-right: 16px;
- }
- .timer {
- color: #2C3A51;
- font-size: 14px;
- text-align: right;
- vertical-align: middle;
- padding-right: 10px;
- width: 80px;
- }
- .tips {
- color: #7A7C91;
- font-size: 10px;
- position: absolute;
- left: 65px;
- top: 40px;
- }
|