| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311 |
- @charset "UTF-8";
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .card_time_tag {
- width: 100%;
- display: flex;
- align-items: center;
- padding-top: 10rpx;
- border-top: 1rpx solid #f5f5f5;
- }
- .time_tag {
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 36rpx;
- color: #82848a;
- flex: 1;
- }
- .u-mask-zoom {
- -webkit-transform: scale(1, 1);
- transform: scale(1, 1);
- }
- .calendar {
- display: flex;
- align-items: flex-end;
- justify-content: center;
- height: 100%;
- margin-top: 20rpx;
- }
- .calendar .content {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- width: 100%;
- background-color: #fff;
- border-top-left-radius: 24rpx;
- border-top-right-radius: 24rpx;
- }
- .calendar .content .title {
- display: flex;
- flex-direction: row;
- align-items: center;
- height: 76rpx;
- width: 100%;
- background-color: #f3f4f6;
- justify-content: space-between;
- border-radius: 40rpx;
- margin-bottom: 20rpx;
- }
- .calendar .content .title .left {
- color: #666666;
- font-size: 30rpx;
- padding-left: 30rpx;
- }
- .calendar .content .title .sure {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 120rpx;
- height: 100%;
- background-color: #c4c4c4;
- color: #fff;
- font-size: 30rpx;
- border-radius: 50rpx;
- }
- .calendar .content picker-view {
- width: 100%;
- height: 480rpx;
- }
- .calendar .content picker-view .item {
- display: flex;
- align-items: center;
- justify-content: center;
- color: #333333;
- font-size: 32rpx;
- font-weight: bold;
- }
- .calendar .content picker-view .uni-picker-view-wrapper uni-picker-view-column {
- display: flex;
- align-items: center;
- justify-content: center;
- color: #333333;
- font-size: 32rpx;
- font-weight: bold;
- }
- .calendar .content picker-view .uni-picker-view-wrapper uni-picker-view-column .uni-picker-view-group .uni-picker-view-content {
- text-align: center;
- line-height: 110rpx;
- }
- .calendar .content picker-view .uni-picker-view-wrapper uni-picker-view-column .uni-picker-view-group .uni-picker-view-content .item {
- display: flex;
- align-items: center;
- justify-content: center;
- color: #333333;
- font-size: 32rpx;
- font-weight: bold;
- }
- .calendar .content .bottom {
- height: 110rpx;
- width: calc(100% - 31rpx);
- display: flex;
- align-items: center;
- justify-content: flex-end;
- padding-right: 31rpx;
- background-color: #FFFFFF;
- }
- .calendar .content .bottom .switch {
- background-color: #E6E6E6;
- width: 180rpx;
- height: 70rpx;
- display: flex;
- flex-direction: row;
- border-radius: 35rpx;
- justify-content: space-around;
- align-items: center;
- position: relative;
- }
- .calendar .content .bottom .switch .left {
- position: absolute;
- z-index: 1;
- left: 25%;
- font-size: 28rpx;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- }
- .calendar .content .bottom .switch .right {
- color: #333333;
- font-size: 28rpx;
- position: absolute;
- right: 0;
- -webkit-transform: translateX(-25%);
- transform: translateX(-25%);
- color: #333333;
- z-index: 1;
- }
- .calendar .content .bottom .switch .bg {
- background-color: #EB344A;
- color: #333333;
- height: 70rpx;
- border-radius: 40rpx;
- width: 90rpx;
- position: absolute;
- top: 0;
- z-index: 0;
- }
- .calendar .content .bottom .switch .active {
- color: #FFFFFF;
- }
- .calendar .content .bottom .switch .lunar {
- left: 90rpx;
- -webkit-animation: switchsolar 500ms;
- animation: switchsolar 500ms;
- }
- @-webkit-keyframes switchsolar {
- 0% {
- left: 0;
- }
- 100% {
- left: 90rpx;
- }
- }
- @keyframes switchsolar {
- 0% {
- left: 0;
- }
- 100% {
- left: 90rpx;
- }
- }
- .calendar .content .bottom .switch .solar {
- left: 0;
- -webkit-animation: switchlunar 500ms;
- animation: switchlunar 500ms;
- }
- @-webkit-keyframes switchlunar {
- 0% {
- left: 90rpx;
- }
- 100% {
- left: 0;
- }
- }
- @keyframes switchlunar {
- 0% {
- left: 90rpx;
- }
- 100% {
- left: 0;
- }
- }
- .head_calendar {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 20rpx;
- }
- .card_tag {
- display: flex;
- width: fit-content;
- width: -webkit-fit-content;
- width: -moz-fit-content;
- border: 1rpx solid #e9e9e9;
- border-radius: 40rpx;
- }
- .tab_item {
- font-size: 30rpx;
- min-width: 140rpx;
- height: 64rpx;
- color: #b1b1b1;
- }
- .activate_tab {
- color: #d5bd9d;
- background-color: #010101;
- border-radius: 40rpx;
- }
- .today_card {
- width: 80rpx;
- }
- .today_box {
- width: 80rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 64rpx;
- color: #d5bd9d;
- background-color: #010101;
- border-radius: 40rpx;
- }
- .range_hint {
- display: flex;
- justify-content: center;
- font-size: 32rpx;
- margin-top: 30rpx;
- }
- .saving_time {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- }
- .icon-yiwen {
- color: #82848a;
- font-size: 40rpx;
- }
- .saving_title {
- color: #82848a;
- font-size: 32rpx;
- padding: 0rpx 10rpx;
- }
- .confirm_title {
- margin-top: 20rpx;
- border-radius: 40rpx;
- color: #d5bd9d;
- width: 100%;
- height: 80rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: #010101;
- }
- .card_four_box {
- width: 100%;
- margin-bottom: 50rpx;
- }
- .card_prin {
- display: flex;
- align-items: center;
- justify-content: space-around;
- flex-wrap: wrap;
- margin-top: 20rpx;
- }
- .cipal_box_flex {
- flex: 0 0 25%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .cipal_box {
- display: flex;
- justify-content: center;
- align-items: center;
- color: #fff;
- width: 120rpx;
- height: 120rpx;
- font-size: 50rpx;
- border-radius: 50%;
- background-color: #b8b8b8;
- margin-bottom: 20rpx;
- }
- .activate_cipal {
- background-color: #b2955d;
- }
|