|
|
@@ -0,0 +1,108 @@
|
|
|
+/* 盒子 */
|
|
|
+.header-box {
|
|
|
+ width: 100vw;
|
|
|
+ background-color: #ffffff;
|
|
|
+ padding: 20rpx 24rpx 30rpx;
|
|
|
+ border-radius: 0px 0px 20rpx 20rpx;
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
+
|
|
|
+/* 居中标题 */
|
|
|
+.venter-the-title {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ height: 44rpx;
|
|
|
+ width: 100%;
|
|
|
+ font-size: 32rpx;
|
|
|
+ text-align: center;
|
|
|
+ color: #000000;
|
|
|
+ margin: 30rpx 0 20rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.venter-the-title>text {
|
|
|
+ display: inline-block;
|
|
|
+ padding: 0 20rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.venter-the-title>view {
|
|
|
+ width: 44rpx;
|
|
|
+ height: 4rpx;
|
|
|
+ background: #4DC2D4;
|
|
|
+ border-radius: 2rpx;
|
|
|
+ opacity: 0.5;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+.title-and-userMessage {
|
|
|
+ width: 100%;
|
|
|
+ margin-left: 6rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.header-title {
|
|
|
+ font-size: 32rpx;
|
|
|
+ color: #000000;
|
|
|
+}
|
|
|
+
|
|
|
+.header-userMessage {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ height: 28rpx;
|
|
|
+ margin-top: 10rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.header-userMessage-img {
|
|
|
+ width: 28rpx;
|
|
|
+ height: 28rpx;
|
|
|
+ background-color: aqua;
|
|
|
+ border-radius: 50%;
|
|
|
+}
|
|
|
+
|
|
|
+.header-userMessage-textMsg {
|
|
|
+ font-size: 20rpx;
|
|
|
+ color: #333333;
|
|
|
+ opacity: .7;
|
|
|
+ margin-left: 8rpx;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+/* 数据,按钮 插槽样式 */
|
|
|
+.dataAndBut {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between !important;
|
|
|
+ align-items: center;
|
|
|
+ flex-wrap: nowrap;
|
|
|
+ margin-top: 14rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.dataAndBut_data {
|
|
|
+ flex: 1;
|
|
|
+ display: flex;
|
|
|
+ font-size: 24rpx;
|
|
|
+ color: #000000;
|
|
|
+ margin-left: 16rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.dataAndBut_data>text {
|
|
|
+ color: #4DC2D4;
|
|
|
+ text-decoration: underline;
|
|
|
+ margin-left: 8rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.dataAndBut_but {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ margin-right: 6rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.custom-slotBut {
|
|
|
+ height: 44rpx !important;
|
|
|
+ background: linear-gradient(180deg, #84E3EC 0%, #4DC2D4 100%) !important;
|
|
|
+ box-shadow: 0px 0px 12rpx 0px rgba(0, 0, 0, 0.1) !important;
|
|
|
+ border-radius: 10rpx !important;
|
|
|
+ color: 20rpx !important;
|
|
|
+ padding: 0 14rpx !important;
|
|
|
+ border: 0 !important;
|
|
|
+}
|