missav timetcontroler adjustment for mobile

On the mobile end, adapt and optimize missav's time control to facilitate interaction.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         missav timetcontroler adjustment for mobile
// @namespace    http://tampermonkey.net/
// @version      2023-12-15
// @description  On the mobile end, adapt and optimize missav's time control to facilitate interaction.
// @author       CCC
// @match        https://missav.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=missav.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...

    let container = document.querySelector('.order-first >div > div:nth-child(2)');
    let spans = container.querySelectorAll('span');

    container.classList.add('flex-col')
    for (let i = 0; i < spans.length; i++) {
  // 对每个 span 元素进行操作,比如添加类名或修改样式
        spans[i].classList.add('pt-4');
    }
})();