123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- @charset "UTF-8";
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .shop_info {
- width: 100%;
- min-height: 100%;
- background-color: #fff;
- }
- .edit_name .name .hint {
- font-size: 28rpx;
- color: #fb231f;
- margin-left: 16rpx;
- padding: 30rpx 0 20rpx;
- }
- .edit_name .name input {
- width: 100%;
- background: #f9f9fb;
- height: 98rpx;
- padding-left: 20rpx;
- }
- .edit_name .name .notice {
- width: 690rpx;
- margin: 0 auto 162rpx;
- }
- .edit_name .name .notice view {
- padding-top: 5rpx;
- }
- .edit_name .name .notice view:first-child {
- font-size: 32rpx;
- font-weight: bold;
- padding: 40rpx 0 20rpx;
- }
- .edit_phone .phone_inp,
- .edit_phone .inp {
- width: 580rpx;
- height: 88rpx;
- background: #f8f8f8;
- padding: 0 30rpx;
- border-radius: 44rpx;
- box-sizing: border-box;
- }
- .edit_phone .inp {
- margin-bottom: 78rpx;
- }
- .edit_phone .inp input {
- width: 60%;
- height: 90%;
- }
- .edit_phone .phone_inp {
- margin: 94rpx 0 30rpx;
- }
- .edit_phone .old .hint {
- margin: 94rpx 0 30rpx;
- }
- .edit_ads {
- width: 690rpx;
- margin: 30rpx auto 0;
- }
- .edit_ads .sub_btn {
- margin-top: 50rpx;
- }
- .edit_ads .label {
- font-size: 32rpx;
- padding: 10rpx 0;
- color: #333;
- font-weight: 600;
- }
- .edit_ads .label text:last-child {
- color: #f00;
- margin-left: 4rpx;
- font-size: 45rpx;
- }
- .edit_ads input,
- .edit_ads .picker {
- height: 96rpx;
- line-height: 96rpx;
- background: #f8f8f8;
- border-radius: 8rpx;
- }
- .edit_ads .picker {
- padding-right: 30rpx;
- }
- .edit_ads .picker input {
- width: 90%;
- }
- .edit_ads input {
- font-size: 32rpx;
- padding-left: 30rpx;
- }
- .title {
- color: #999;
- font-size: 28rpx;
- padding: 30rpx 0;
- }
- .iconfont {
- font-size: 40rpx;
- color: #999;
- }
- .label {
- font-size: 28rpx;
- }
- .auth,
- .base_info {
- padding: 0 30rpx;
- box-sizing: border-box;
- }
- .base_info .info .wx_img {
- width: 300rpx;
- height: 300rpx;
- }
- .base_info .info > view {
- margin-bottom: 30rpx;
- }
- .base_info .info > view .inp {
- width: 75%;
- min-height: 72rpx;
- background: #f8f8f8;
- border-radius: 8rpx;
- padding: 0 15rpx;
- box-sizing: border-box;
- }
- .base_info .info > view input,
- .base_info .info > view textarea {
- width: 75%;
- font-size: 32rpx;
- }
- .base_info .info > view .iconfont {
- font-size: 35rpx;
- color: #999;
- }
- .base_info .info image {
- width: 68rpx;
- height: 68rpx;
- border-radius: 8rpx;
- margin-right: 20rpx;
- }
- .base_info .info .code_hint {
- color: #fb231f;
- font-size: 28rpx;
- margin-top: 30rpx;
- }
- .base_info .upload .up_title {
- font-size: 36rpx;
- font-weight: bold;
- }
- .base_info .upload .wx_icon {
- width: 250rpx;
- height: 250rpx;
- margin: 40rpx 0;
- }
- .block {
- width: 100%;
- height: 20rpx;
- background: #f9f9fb;
- }
- .auth .auth_con > view {
- margin-top: 30rpx;
- }
- .auth .auth_con .iconrenzheng {
- color: #fb231f;
- font-size: 45rpx;
- vertical-align: middle;
- margin-right: 5rpx;
- }
- .auth .auth_con .iconiconfontjiantou2 {
- font-size: 35rpx;
- vertical-align: -2rpx;
- }
|