123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- @charset "UTF-8";
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 字体大小变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .tui-flex-1 {
- flex: 1;
- }
- .tui-popup-box {
- position: relative;
- box-sizing: border-box;
- min-height: 220rpx;
- padding: 24rpx 24rpx 0 24rpx;
- z-index: 9999;
- }
- .tui-scrollview-box {
- width: 100%;
- height: auto;
- float: left;
- box-sizing: border-box;
- }
- .tui-scrollview-box .ladder-main {
- width: 100%;
- border: 1px solid #FF457B;
- border-radius: 10rpx;
- }
- .tui-scrollview-box .ladder-main .ladder-item {
- width: 100%;
- height: 80rpx;
- float: left;
- border-bottom: 1px solid #FF457B;
- }
- .tui-scrollview-box .ladder-main .ladder-item:nth-child(1) .ladder-item-td {
- color: #333333;
- }
- .tui-scrollview-box .ladder-main .ladder-item:last-child {
- border-bottom: none;
- }
- .tui-scrollview-box .ladder-main .ladder-item .ladder-item-td {
- width: 50%;
- text-align: center;
- line-height: 80rpx;
- font-size: 24rpx;
- color: #FF457B;
- box-sizing: border-box;
- float: left;
- }
- .tui-scrollview-box .ladder-main .ladder-item .ladder-item-td:nth-child(1) {
- border-right: 1px solid #FF457B;
- }
- .tui-scrollview-box .box-title {
- font-size: 26rpx;
- color: #333333;
- text-align: left;
- line-height: 56rpx;
- }
- .tui-scrollview-box .box-title .txt {
- color: #FF457B;
- margin: 0 8rpx;
- }
- .tui-scrollview-box .box-text {
- font-size: 26rpx;
- color: #333333;
- text-align: left;
- line-height: 56rpx;
- }
- .tui-scrollview-box .box-text .txt {
- color: #ff2a2a;
- }
- .tui-scrollview-box .box-product {
- width: 100%;
- height: auto;
- margin-top: 20rpx;
- }
- .tui-scrollview-box .box-product .title {
- font-size: 24rpx;
- color: #333333;
- text-align: left;
- line-height: 54rpx;
- }
- .tui-scrollview-box .box-product .box-product-main {
- width: 100%;
- height: 136rpx;
- float: left;
- margin: 10rpx 0;
- }
- .tui-scrollview-box .box-product .box-product-main .image {
- width: 134rpx;
- height: 134rpx;
- border: 1px solid #EBEBEB;
- float: left;
- }
- .tui-scrollview-box .box-product .box-product-main .image image {
- width: 100%;
- height: 100%;
- display: block;
- }
- .tui-scrollview-box .box-product .box-product-main .info {
- width: 540rpx;
- height: 134rpx;
- float: left;
- margin-left: 16rpx;
- position: relative;
- }
- .tui-scrollview-box .box-product .box-product-main .info .name {
- width: 100%;
- float: left;
- line-height: 40rpx;
- font-size: 28rpx;
- color: #333333;
- text-overflow: ellipsis;
- display: -webkit-box;
- word-break: break-all;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- }
- .tui-scrollview-box .box-product .box-product-main .info .num {
- width: 100%;
- height: 44rpx;
- font-size: 24rpx;
- color: #333333;
- text-align: left;
- line-height: 44rpx;
- position: absolute;
- bottom: 0;
- left: 0;
- }
- .tui-popup-btn {
- width: 100%;
- height: auto;
- float: left;
- margin-top: 24rpx;
- }
- .tui-popup-btn .tui-button {
- width: 100%;
- height: 88rpx;
- background: linear-gradient(270deg, #f83c6c 0%, #fc32b4 100%);
- line-height: 88rpx;
- text-align: center;
- color: #FFFFFF;
- font-size: 28rpx;
- border-radius: 44rpx;
- }
|