| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- @charset "UTF-8";
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .uni-flex, .uni-flex-row, .uni-list-box, .uni-media-box, .uni-footer, .uni-flex-column, .uni-content {
- display: flex;
- }
- .uni-flex-row, .uni-list-box, .uni-media-box, .uni-footer {
- flex-direction: row;
- box-sizing: border-box;
- }
- .uni-flex-column, .uni-content {
- flex-direction: column;
- }
- .uni-color-gary {
- color: #3b4144;
- }
- /* 标题 */
- .uni-title {
- display: flex;
- margin-bottom: 8px;
- font-size: 16;
- font-weight: bold;
- color: #3b4144;
- }
- .uni-title-sub {
- display: flex;
- font-size: 14px;
- font-weight: 500;
- color: #3b4144;
- }
- /* 描述 额外文本 */
- .uni-note {
- margin-top: 10px;
- color: #999;
- font-size: 12px;
- }
- /* 列表内容 */
- .uni-list-box {
- flex: 1;
- margin-top: 10px;
- }
- /* 略缩图 */
- .uni-thumb {
- flex-shrink: 0;
- margin-right: 10px;
- width: 125px;
- height: 75px;
- border-radius: 6px;
- overflow: hidden;
- border: 1px #f5f5f5 solid;
- }
- .uni-thumb image {
- width: 100%;
- height: 100%;
- }
- .uni-media-box {
- border-radius: 6px;
- overflow: hidden;
- }
- .uni-media-box .uni-thumb {
- margin: 0;
- margin-left: 4px;
- flex-shrink: 1;
- width: 33%;
- border-radius: 0;
- }
- .uni-media-box .uni-thumb:first-child {
- margin: 0;
- }
- /* 内容 */
- .uni-content {
- justify-content: space-between;
- }
- /* 列表footer */
- .uni-footer {
- justify-content: space-between;
- margin-top: 12px;
- }
- .uni-footer-text {
- font-size: 12px;
- color: #999;
- margin-left: 5px;
- }
- /* 标签 */
- .uni-tag {
- flex-shrink: 0;
- padding: 0 5px;
- border: 1px #c8c7cc solid;
- margin-right: 5px;
- border-radius: 3px;
- background: #f8f8f8;
- color: #333;
- font-size: 12px;
- }
- /* 链接 */
- .uni-link {
- margin-left: 10px;
- color: #333;
- text-decoration: underline;
- }
- page {
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- background-color: #efeff4;
- min-height: 100%;
- height: auto;
- }
- .toptalbar {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- background-color: whitesmoke;
- padding-top: 30rpx;
- height: 70rpx;
- margin-left: 6rpx;
- margin-right: 6rpx;
- }
- .tableLab {
- width: 20%;
- text-align: center;
- margin-left: 14rpx;
- margin-right: 14rpx;
- height: 70rpx;
- line-height: 70rpx;
- font-size: 26rpx;
- color: darkgray;
- }
- .tableselect {
- border-bottom-width: 6rpx;
- border-bottom-style: solid;
- border-bottom-color: #E02F73;
- color: #E02F73;
- font-size: 34rpx;
- }
- .tips {
- color: #67c23a;
- font-size: 14px;
- line-height: 40px;
- text-align: center;
- background-color: #f0f9eb;
- height: 0;
- opacity: 0;
- -webkit-transform: translateY(-100%);
- transform: translateY(-100%);
- transition: all 0.3s;
- }
- .tips-ani {
- -webkit-transform: translateY(0);
- transform: translateY(0);
- height: 40px;
- opacity: 1;
- }
- .shop {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .list .uni-list--waterfall .uni-list {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- padding: 5rpx;
- box-sizing: border-box;
- }
- .list .uni-list--waterfall .uni-list .uni-list-item--waterfall {
- width: 50%;
- box-sizing: border-box;
- }
- .list .uni-list--waterfall .uni-list .uni-list-item--waterfall .uni-list-item__container {
- padding: 0rpx;
- flex-direction: column;
- }
- .item_content2 {
- background: white;
- display: flex;
- flex-direction: column;
- width: 100%;
- }
- .buyct {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- }
- .storeimage {
- width: 100%;
- height: 240rpx;
- }
- .buyimage {
- width: 200rpx;
- height: 160rpx;
- }
- .buyBT {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- }
- .buyBTR {
- display: flex;
- flex-direction: row;
- justify-content: flex-end;
- align-items: center;
- }
- .buyBTL {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- }
- .msText {
- padding-left: 10rpx;
- text-align: left;
- font-size: 22rpx;
- line-height: 32rpx;
- width: 100%;
- }
- .dianpuming {
- font-size: 30rpx;
- line-height: 32rpx;
- height: 32rpx;
- font-weight: bold;
- }
- .xingxing {
- width: 30rpx;
- height: 30rpx;
- }
- .pingfentext {
- font-size: 26rpx;
- line-height: 40rpx;
- height: 40rpx;
- color: black;
- }
- .spnametext {
- font-size: 26rpx;
- line-height: 40rpx;
- height: 40rpx;
- padding-right: 20rpx;
- color: darkgray;
- }
- .youhuixinxi {
- font-size: 30rpx;
- padding: 6rpx;
- padding-left: 12rpx;
- padding-right: 12rpx;
- background-color: #F1F1F1;
- color: black;
- border-radius: 16rpx;
- margin-left: 20rpx;
- }
- .quzhifuText {
- font-size: 30rpx;
- padding: 6rpx;
- padding-left: 12rpx;
- padding-right: 12rpx;
- background-color: black;
- color: white;
- border-radius: 16rpx;
- margin-left: 20rpx;
- }
- .stateText {
- font-size: 26rpx;
- color: darkgray;
- }
|