123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445 |
- /* pages/edit/index.wxss */
-
- .operate-panel-bg {
- background-color: var(--weui-BG-0);
- backdrop-filter: blur(5px);
- border-top-left-radius: 1em;
- border-top-right-radius: 1em;
- position: fixed;
- padding-top: 15px;
- bottom: 0;
- width: 100%;
- color: #000;
- font-size: 32rpx;
- z-index: 999;
- height: 80vh;
- }
-
- .show-panel-anim {
- animation: showpanel 0.3s 1;
- animation-timing-function: linear;
- animation-fill-mode: forwards;
- height: 100%;
- }
-
- .hide-panel-anim {
- animation: hidepanel 0.3s 1;
- animation-timing-function: linear;
- animation-fill-mode: forwards;
- }
-
- .operate-list-main {
- width: 100%;
- padding: 0 0 0 0;
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- position: relative;
- }
-
- .filter-main{
- padding-bottom: 30rpx;
- }
-
- .operate-list-main .item {
- display: inline-block;
- height: 100%;
- padding: 20rpx 20rpx;
-
- }
- .operate-list-main .item-selected .desc {
- color: #ff584c;
- }
-
- .operate-list-main .item-selected .desc .marquee {
- display: inline-block;
- animation: marquee 8s linear infinite;
- }
-
- @keyframes marquee {
- 0% {
- transform: translate(0, 0);
- }
-
- 50% {
- transform: translate(-100%, 0);
- }
-
- 50.001% {
- transform: translate(100%, 0);
- }
-
- 100% {
- transform: translate(0, 0);
- }
- }
-
- .operate-list-main .item-selected .icon {
- border: 2rpx solid #ff584c;
- }
-
- .operate-list-main .icon {
- vertical-align: middle;
- width: 100rpx;
- height: 100rpx;
- overflow: hidden;
- border-radius: 50%;
- }
-
- .operate-list-main .music-more {
- width: 100rpx;
- height: 100rpx;
- overflow: hidden;
- border-radius: 50%;
- background-color: rgba(255, 255, 255, 0.1);
- display: inline-block;
- }
-
- .operate-list-main .music-more .music-more-icon {
- width: 60rpx;
- height: 60rpx;
- margin: 20rpx 20rpx;
- text-align: center;
- }
-
- .operate-list-main .desc {
- text-align: center;
- color: #fff;
- font-size: 24rpx;
- width: 100rpx;
- overflow: hidden;
- }
-
- .operate-list-main .slider-container {
- width: 100%;
- height: 200rpx;
- padding-top:30rpx;
- }
-
- .operate-list-main .slider-container .slider-item .slider-desc {
- display: inline-block;
- width: 15%;
- text-align: center;
- }
-
- .operate-list-main .slider-container .slider-item .slider-oper-area {
- display: inline-block;
- width: 85%;
- }
-
- .music-tab {
- width: 100%;
- /* margin-top: 80px; */
- padding-left: 10px;
- padding-right: 10px;
- /* border-bottom: 2rpx solid rgba(255, 255, 255, .1); */
- }
-
- .music-main-container {
- width: 100%;
- height: calc(100% - env(safe-area-inset-bottom));
- position: fixed;
- z-index: 1111;
- top: 0;
- left: 0;
- background-color: #1c1c1e;
- overflow: hidden;
- }
- .music-main-container.enter {
- animation: enter 0.2s ease-in both;
-
- /* animation-fill-mode: forwards; */
- }
- .music-main-container.exit {
- animation: exit 0.2s ease-in both;
- }
- @keyframes enter {
- from {
- transform: translateY(100%); /*设置为正数则底部弹出来,负数则相反*/
- }
-
- to {
- transform: translateY(0%);
- }
- }
-
- @-webkit-keyframes enter {
- from {
- transform: translateY(100%); /*设置为正数则底部弹出来,负数则相反*/
- }
-
- to {
- transform: translateY(0%);
- }
- }
-
- @keyframes exit {
- from {
- transform: translateY(0%); /*设置为正数则底部弹出来,负数则相反*/
- }
-
- to {
- transform: translateY(100%);
- }
- }
-
- @-webkit-keyframes exit {
- from {
- transform: translateY(0%); /*设置为正数则底部弹出来,负数则相反*/
- }
-
- to {
- transform: translateY(100%);
- }
- }
-
- .music-tab .tab-item {
- color:rgba(255, 255, 255, 0.5);
-
- font-size: 32rpx;
- display: inline-block;
- padding: 24rpx;
- text-align: center;
- /* width: 15%; */
- }
-
- .music-tab .tab-item:last-child {
- margin-right: 30px;
- }
-
- .music-tab .tab-list .active {
- /* border-bottom: 4rpx solid #ff584c; */
- color: #ff584c;
- font-weight: bold;
- position: relative;
- }
-
- .weui-search-bar{
- background-color: rgba(0,0,0,.3);
- }
- .subtitle{
- font-size: 10px;
- text-align: center;
- }
- .music-tab .tab-list .active::after {
- content: "";
- width: 30rpx;
- height: 4rpx;
- position: absolute;
- left: 50%;
- bottom: 0;
- margin-left: -15rpx;
- background: #ff584c;
- }
-
- .music-list-wrap {
- height: 100%;
- color: rgba(140, 140, 140, 1);
- padding: 0 30rpx;
- }
-
- .music-list-wrap .tips-error {
- margin-top: 160px;
- text-align: center;
- }
-
- .music-list-wrap .item {
- margin-top: 40rpx;
- height: 100rpx;
- vertical-align: center;
- position: relative;
- color: #fff;
- }
-
- .music-list-wrap .item-selected {
- color: #ff584c;
- }
-
- .music-list-wrap .item .desc {
- padding-left: 120rpx;
- line-height: 100rpx;
- }
-
- .music-list-wrap .item .icon-wrap {
- height: 100rpx;
- width: 100rpx;
- position: absolute;
- left: 0;
- top: 0;
- }
-
- .music-list-wrap .icon-select-wrap {
- height: 100rpx;
- width: 100rpx;
- position: absolute;
- right: 0;
- top: 0;
- }
-
- .icon-select-wrap .icon-selected {
- height: 60rpx;
- width: 120rpx;
- position: absolute;
- right: 30rpx;
- top: 20rpx;
- /* background: #ff584c; */
- text-align: center;
- line-height: 60rpx;
- color: #fff;
- }
-
- .music-list-wrap .item .icon-unselected {
- height: 60rpx;
- width: 60rpx;
- position: absolute;
- right: 20rpx;
- top: 20rpx;
- border-radius: 50%;
- border: 1px solid #fff;
- }
-
- .music-list-wrap .item .icon-cover {
- height: 100rpx;
- width: 100rpx;
- border-radius: 50%;
- }
-
- .music-list-wrap .item .icon-play {
- height: 50rpx;
- width: 50rpx;
- position: absolute;
- top: 25rpx;
- left: 25rpx;
- }
-
- .music-fixed-footer {
- position: fixed;
- bottom: 60rpx;
- width: 100%;
- }
-
- .btn-add-local-music {
- color: #ff584c;
- width: 90%;
- height: 96rpx;
- line-height: 96rpx;
- text-align: center;
- border: 2rpx solid #ff584c;
- margin: 0 auto;
- border-radius: 200rpx 200rpx 200rpx 200rpx;
- }
-
- .music-oper-tab {
- width: 100%;
- height: 100rpx;
- }
-
- .music-oper-tab .tab-item {
- width: 50%;
- height: 100rpx;
- display: inline-block;
- text-align: center;
- line-height: 100rpx;
- font-size: 32rpx;
- font-weight: bold;
- }
-
- .music-oper-tab .item-selected {
- color: #ff584c;
- }
-
- .item-selected .icon-cover {
- animation: spin 4s linear infinite;
- }
-
- /* .item .icon-wrap .icon-cover {
- border-color: pink !important ;
- } */
-
- @keyframes spin {
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
-
- /* .music-main-container {
- position: ;
- } */
-
- .music-main-container.enter {
- animation: enter 0.2s ease-in both;
-
- /* animation-fill-mode: forwards; */
- }
-
- .music-main-container.exit {
- animation: exit 0.2s ease-in both;
- }
-
- @keyframes enter {
- from {
- transform: translateY(100%); /*设置为正数则底部弹出来,负数则相反*/
- }
-
- to {
- transform: translateY(0%);
- }
- }
-
- @-webkit-keyframes enter {
- from {
- transform: translateY(100%); /*设置为正数则底部弹出来,负数则相反*/
- }
-
- to {
- transform: translateY(0%);
- }
- }
-
- @keyframes exit {
- from {
- transform: translateY(0%); /*设置为正数则底部弹出来,负数则相反*/
- }
-
- to {
- transform: translateY(100%);
- }
- }
-
- @-webkit-keyframes exit {
- from {
- transform: translateY(0%); /*设置为正数则底部弹出来,负数则相反*/
- }
-
- to {
- transform: translateY(100%);
- }
- }
-
- .scroll-wrap-list {
- padding-bottom: calc(120rpx + env(safe-area-inset-bottom));
- }
-
- .music-top-wrap {
- /* margin-bottom: env(safe-area-inset-bottom); */
- background-color: red;
- z-index: 9999;
- /* height: 3000px;
- */
- background-color: #1c1c1e;
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- }
-
- /* .scroll-change-bottom {
- padding-bottom: env(safe-area-inset-bottom);
- } */
|