123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273 |
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .fixed-top-box {
- width: 100%;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 1000;
- transition: all 0.5s;
- }
- .top-cont {
- width: 100%;
- height: 654rpx;
- position: relative;
- }
- .top-cont .bg {
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- z-index: 1;
- }
- .top-cont .top-inner {
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- z-index: 2;
- }
- .top-cont .top-inner .back-box {
- height: 88rpx;
- padding-left: 22rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 20rpx;
- }
- .top-cont .top-inner .back-box image {
- width: 40rpx;
- height: 40rpx;
- }
- .top-cont .top-inner .back-box .title {
- font-size: 36rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- }
- .top-cont .top-inner .available-points {
- margin-top: 140rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .top-cont .top-inner .available-points .label {
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- line-height: 1;
- }
- .top-cont .top-inner .available-points .num {
- font-size: 80rpx;
- font-family: Gilroy;
- font-weight: 500;
- color: #FFFFFF;
- line-height: 1;
- margin-top: 28rpx;
- }
- .top-cont .top-inner .singn-content {
- padding: 0 20rpx;
- margin-top: 50rpx;
- }
- .top-cont .top-inner .sign-in-box {
- height: 380rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- }
- .top-cont .top-inner .sign-in-box .inner {
- padding: 40rpx 30rpx;
- }
- .top-cont .top-inner .sign-in-box .inner .title-box {
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #666666;
- line-height: 1;
- }
- .top-cont .top-inner .sign-in-box .inner .title-box .num {
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: Bold;
- color: #FF7511;
- margin: 0 10rpx;
- line-height: 1;
- }
- .top-cont .top-inner .sign-in-box .inner .sign-list {
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-top: 40rpx;
- }
- .top-cont .top-inner .sign-in-box .inner .sign-list .item {
- display: flex;
- justify-content: center;
- }
- .top-cont .top-inner .sign-in-box .inner .sign-list .item .right {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .top-cont .top-inner .sign-in-box .inner .sign-list .item .right image {
- width: 44rpx;
- height: 44rpx;
- margin-bottom: 20rpx;
- }
- .top-cont .top-inner .sign-in-box .inner .sign-list .item .right .text {
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FF7511;
- line-height: 1;
- white-space: nowrap;
- }
- .top-cont .top-inner .sign-in-box .inner .sign-list .item .line {
- width: 34rpx;
- height: 4rpx;
- background: #F6CDA7;
- border-radius: 2rpx;
- margin-top: 22rpx;
- }
- .top-cont .top-inner .sign-in-box .inner .sign-list .item:first-child .line {
- display: none;
- }
- .top-cont .top-inner .sign-in-box .inner .sign-list .item.active .line {
- background: #FF8E3C;
- }
- .top-cont .top-inner .sign-in-box .sign-btn-box {
- padding: 0 14rpx;
- }
- .top-cont .top-inner .sign-in-box .sign-btn-box .btn {
- width: 100%;
- height: 88rpx;
- box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.05);
- background-color: #FF7511;
- border-radius: 44rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .top-cont .top-inner .sign-in-box .sign-btn-box .btn image {
- width: 32rpx;
- height: 32rpx;
- }
- .top-cont .top-inner .sign-in-box .sign-btn-box .btn .text {
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- line-height: 1;
- }
- .content {
- margin-top: 20rpx;
- padding: 0 20rpx 40rpx;
- }
- .content .points-cont {
- background-color: #FFFFFF;
- border-radius: 16rpx;
- }
- .content .points-cont .pub-tab-box {
- padding: 0 80rpx;
- }
- .content .points-cont .pub-tab-box .tab-inner {
- height: 88rpx;
- line-height: 88rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .content .points-cont .pub-tab-box .item {
- font-size: 28rpx;
- white-space: nowrap;
- line-height: 1;
- font-family: PingFang SC;
- font-weight: 500;
- color: #666666;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .content .points-cont .pub-tab-box .item.active {
- font-weight: bold;
- color: #333333;
- }
- .content .points-cont .pub-tab-box .item .text {
- position: relative;
- z-index: 1;
- }
- .content .points-cont .pub-tab-box .item .tab-bg {
- width: 72rpx;
- height: 28rpx;
- position: absolute;
- top: 17rpx;
- left: 50%;
- transform: translateX(-36rpx);
- z-index: -1;
- }
- .content .points-cont .point-list {
- padding: 0 30rpx;
- }
- .content .points-cont .point-list .item {
- padding: 30rpx 0;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-bottom: 1px solid #F0F0F0;
- }
- .content .points-cont .point-list .item:last-child {
- border-bottom: none;
- }
- .content .points-cont .point-list .item .left .title {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #111111;
- line-height: 1;
- }
- .content .points-cont .point-list .item .left .time {
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- line-height: 1;
- margin-top: 22rpx;
- }
- .content .points-cont .point-list .item .right .add {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #111111;
- }
- .content .points-cont .point-list .item .right .less {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #F56C6C;
- }
|