123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- body {
- height: 100%;
- overflow: hidden;
- display: flex;
- flex-direction: column;
- }
- .viewport {
- background-color: #ffffff;
- height: 100%;
- position: relative;
- }
- .panel {
- margin-top: 0.625rem;
- }
- .panel .title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 2.8125rem;
- line-height: 1;
- padding: 0.9375rem 1.875rem 0.9375rem 0.1875rem;
- position: relative;
- }
- .panel .title uni-text {
- padding-left: 0.3125rem;
- font-size: 0.875rem;
- color: #333;
- font-weight: 600;
- border-left: 0.125rem solid #27ba9b;
- }
- .panel .title uni-navigator {
- font-size: 0.75rem;
- color: #666;
- }
- .panel .title .bln {
- border-left: 0;
- }
- .panel .label {
- height: auto;
- padding: 0.1875rem;
- }
- .arrow::after {
- position: absolute;
- top: 50%;
- right: 0.9375rem;
- content: "\e6c2";
- color: #ccc;
- font-family: "erabbit" !important;
- font-size: 1rem;
- transform: translateY(-50%);
- }
- /* 商品详情 */
- .detail {
- padding-left: 0.625rem;
- padding-bottom: 2.4375rem;
- margin-bottom: 0.625rem;
- }
- .detail .content {
- margin-left: -0.625rem;
- }
- .detail .content .image {
- width: 100%;
- }
- .detail .properties {
- padding: 0 0.625rem;
- font-size: 0.9375rem;
- }
- .detail .properties .item {
- display: flex;
- flex-direction: column;
- line-height: 2;
- margin: 0.3125rem;
- overflow: hidden;
- font-size: 0.8125rem;
- border-radius: 0.625rem;
- box-sizing: border-box;
- background-color: #fff;
- color: #333;
- box-shadow: 0 0 0.3125rem rgba(200, 200, 200, 0.5);
- margin-bottom: 0.625rem;
- padding-bottom: 0.3125rem;
- }
- .detail .properties .item .order_no_state {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- background-color: #eeeeee;
- padding: 0.625rem;
- }
- .detail .properties .item .order_no_state .order_state {
- font-size: 0.75rem;
- }
- .detail .properties .item .order_no_state .order_state .state-2 {
- color: #2979ff;
- }
- .detail .properties .item .order_no_state .order_state .state-3 {
- color: #1c67da;
- }
- .detail .properties .item .order_no_state .order_state .state-4 {
- color: #f3a73f;
- }
- .detail .properties .item .order_no_state .order_state .state-5 {
- color: #18bc37;
- }
- .detail .properties .item .order_no_state .order_state .state-6 {
- color: #f3a73f;
- }
- .detail .properties .item .order_no_state .order_state .state-7 {
- color: #01b075;
- }
- .detail .properties .item .info {
- padding: 0.3125rem 0.625rem;
- }
- .detail .properties .item .goods {
- margin: 0.3125rem 0.625rem;
- padding: 0.3125rem;
- border: 0.03125rem solid #eaeaea;
- border-radius: 0.3125rem;
- }
- /* 底部联系客户 */
- .contact-client {
- position: fixed;
- left: 0;
- right: 0;
- bottom: calc((var(--window-bottom)));
- z-index: 1;
- background-color: #fff;
- height: 2.25rem;
- border-top: 0.03125rem solid #eaeaea;
- display: flex;
- justify-content: space-between;
- align-items: center;
- box-sizing: content-box;
- }
- .contact-client .buttons {
- display: flex;
- background-color: #27ba9b;
- flex: 1;
- justify-content: center;
- }
- .contact-client .buttons > uni-view {
- width: 100%;
- text-align: center;
- line-height: 2.25rem;
- font-size: 0.8125rem;
- color: #fff;
- }
|