123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- .timerWrap {
- background-color: #fff;
- display: flex;
- flex-direction: column;
- align-items: center;
- border-radius: 0 0 16px 16px;
- .timerTop {
- width: 276px;
- height: 41px;
- background: #F5F6FA;
- border-radius: 8px;
- margin-top: 24px;
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-bottom: 24px;
- .timerTopPane {
- width: 50%;
- text-align: center;
- line-height: 41px;
- cursor: pointer;
- }
- .timerTopPaneActive {
- background: #198CFE;
- border-radius: 8px;
- color: #fff;
- }
- }
- }
- // 计时器
- .timerItemInfo {
- width: 692px;
- background: #A6D1FF;
- box-shadow: 0px 9px 0px 0px #CBD6DF;
- border-radius: 46px;
- border: 13px solid #EEF7FF;
- // margin-bottom: 40px;
- padding: 10px;
- .timerItemInset {
- min-height: 339px;
- border-radius: 28px 28px 38px 38px;
- background: #D8ECFE;
- }
- .timerItemInfoTop {
- width: 100%;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- .dot {
- width: 10px;
- height: 10px;
- background: #131415;
- border-radius: 28px;
- margin-bottom: 15px;
- margin: 7px 70px;
- }
- .dotTop {
- width: 10px;
- height: 74px;
- }
- .timerItemTopCore {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- h4 {
- font-size: 22px;
- font-weight: 600;
- color: #7CAEE1;
- line-height: 70px;
- }
- }
- }
- }
- .nowTimerWrap {
- margin: 35px 0 26px;
- width: 174px;
- line-height: 45px;
- height: 45px;
- width: 100%;
- text-align: center;
- font-size: 24px;
- font-weight: 400;
- color: rgba(19, 20, 21, .5);
- line-height: 33px;
- // padding-bottom: 20px;
- }
- .btnGroupModal {
- padding: 40px 0 32px;
- :global {
- .n-button {
- height: 47px;
- min-width: 156px;
- }
- }
- }
- .palyIcon {
- width: 11px;
- height: 14px;
- }
- .playText {
- margin-left: 10px;
- }
- .countInput {
- // width: 66px;
- // height: 33px;
- // background: #F5F6FA;
- // border-radius: 17px;
- margin: 0 16px;
- :global {
- .n-input__border {
- display: none;
- }
- .n-input__state-border {
- display: none;
- }
- .n-input {
- width: 66px;
- height: 33px;
- border-radius: 17px;
- overflow: hidden;
- .n-input-wrapper {
- text-align: center;
- background: #F5F6FA;
- padding: 0;
- }
- }
- }
- }
- .dotBtm {
- width: 100%;
- height: 33px;
- }
- .chioseWrap {
- margin: 35px 0 26px;
- // width: 174px;
- line-height: 45px;
- height: 45px;
- background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%);
- box-shadow: 2px 2px 0px 0px #A2CAEE;
- border-radius: 23px;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- :global {
- .n-input__input {
- line-height: 33px !important;
- height: 33px !important;
- }
- .n-input__input-el {
- line-height: 33px !important;
- height: 33px !important;
- }
- }
- .add {
- width: 16px;
- height: 16px;
- cursor: pointer;
- }
- .minus {
- width: 16px;
- height: 4px;
- cursor: pointer;
- }
- }
- .chioseHidden {
- visibility: hidden;
- }
- .numberWrap {
- border-radius: 16px;
- overflow: hidden;
- background-color: #fff;
- box-shadow: 4px 4px 0px 0px #A2CAEE;
- align-items: center;
- display: flex;
- flex-direction: row;
- }
|