160 lines
3.2 KiB
Plaintext
160 lines
3.2 KiB
Plaintext
@charset "UTF-8";
|
||
/**
|
||
* 这里是uni-app内置的常用样式变量
|
||
*
|
||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||
*
|
||
*/
|
||
/**
|
||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||
*
|
||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||
*/
|
||
/* 颜色变量 */
|
||
/* 行为相关颜色 */
|
||
/* 文字基本颜色 */
|
||
/* 背景颜色 */
|
||
/* 边框颜色 */
|
||
/* 尺寸变量 */
|
||
/* 文字尺寸 */
|
||
/* 图片尺寸 */
|
||
/* Border Radius */
|
||
/* 水平间距 */
|
||
/* 垂直间距 */
|
||
/* 透明度 */
|
||
/* 文章场景相关 */
|
||
page {
|
||
background-color: #f1f1f1;
|
||
font-size: 28rpx;
|
||
}
|
||
.header {
|
||
background: #fff;
|
||
height: 660rpx;
|
||
padding-bottom: 110rpx;
|
||
}
|
||
.header .bg {
|
||
width: 100%;
|
||
height: 490rpx;
|
||
padding-top: 310rpx;
|
||
background: linear-gradient(to bottom, #015eea, #00c0fa, white);
|
||
}
|
||
.box {
|
||
width: 650rpx;
|
||
height: 200rpx;
|
||
border-radius: 20rpx;
|
||
margin: 0 auto;
|
||
background: #fff;
|
||
box-shadow: 0 5rpx 20rpx 0rpx rgba(0, 0, 150, 0.2);
|
||
}
|
||
.box .box-hd {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
flex-direction: row;
|
||
justify-content: center;
|
||
margin-top: 15rpx;
|
||
}
|
||
.box .box-hd .avator {
|
||
width: 160rpx;
|
||
height: 160rpx;
|
||
background: #fff;
|
||
border: 5rpx solid #f1f1f1;
|
||
border-radius: 50%;
|
||
margin: 0 auto;
|
||
margin-top: -80rpx;
|
||
overflow: hidden;
|
||
}
|
||
.box .box-hd .avator ._img {
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
.box .box-hd .phone-number {
|
||
width: 100%;
|
||
text-align: center;
|
||
margin: 20rpx auto;
|
||
}
|
||
.box .box-bd {
|
||
display: flex;
|
||
flex-wrap: nowrap;
|
||
flex-direction: row;
|
||
justify-content: center;
|
||
}
|
||
.box .box-bd .item {
|
||
flex: 1 1 auto;
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
flex-direction: row;
|
||
justify-content: center;
|
||
border-right: 1px solid #f1f1f1;
|
||
margin: 15rpx 0;
|
||
}
|
||
.box .box-bd .item:last-child {
|
||
border: none;
|
||
}
|
||
.box .box-bd .item .icon {
|
||
width: 60rpx;
|
||
height: 60rpx;
|
||
}
|
||
.box .box-bd .item .icon ._img {
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
.box .box-bd .item .text {
|
||
width: 100%;
|
||
text-align: center;
|
||
margin-top: 10rpx;
|
||
}
|
||
.list-content {
|
||
background: #fff;
|
||
}
|
||
.list {
|
||
width: 100%;
|
||
border-bottom: 15rpx solid #f1f1f1;
|
||
background: #fff;
|
||
}
|
||
.list:last-child {
|
||
border: none;
|
||
}
|
||
.list .li {
|
||
width: 92%;
|
||
height: 100rpx;
|
||
padding: 0px 4%;
|
||
border-bottom: 1px solid #f3f3f3;
|
||
display: flex;
|
||
align-items: center;
|
||
margin: 0rpx auto;
|
||
}
|
||
.list .li.noborder {
|
||
border-bottom: 0;
|
||
}
|
||
.list .li .icon {
|
||
flex-shrink: 0;
|
||
width: 50rpx;
|
||
height: 50rpx;
|
||
}
|
||
.list .li .icon image {
|
||
width: 50rpx;
|
||
height: 50rpx;
|
||
}
|
||
.list .li .text {
|
||
padding-left: 20rpx;
|
||
width: 100%;
|
||
color: #666;
|
||
}
|
||
.list .li .to {
|
||
flex-shrink: 0;
|
||
width: 40rpx;
|
||
height: 40rpx;
|
||
}
|
||
.copyright {
|
||
margin: 20rpx auto;
|
||
width: 80%;
|
||
height: 60rpx;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
color: #9E9E9E;
|
||
font-size: 26rpx;
|
||
}
|
||
|