|
@@ -0,0 +1,80 @@
|
|
|
|
+.greetingBox {
|
|
|
|
+ width: 100vw;
|
|
|
|
+ min-height: 100vh;
|
|
|
|
+ padding: 26rpx 20rpx;
|
|
|
|
+ background-color: #fcd9927c;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+}
|
|
|
|
+.greetingBox .template {
|
|
|
|
+ width: 100%;
|
|
|
|
+ padding: 20rpx 31rpx;
|
|
|
|
+ margin-bottom: 40rpx;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ background-color: white;
|
|
|
|
+ border-radius: 20rpx;
|
|
|
|
+ box-shadow: 0 2rpx 24rpx 0 rgba(252, 216, 146, 0.51);
|
|
|
|
+}
|
|
|
|
+.greetingBox .template .header {
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ justify-content: space-between;
|
|
|
|
+}
|
|
|
|
+.greetingBox .template .header .left .title {
|
|
|
|
+ font-size: 34rpx;
|
|
|
|
+ font-weight: bold;
|
|
|
|
+}
|
|
|
|
+.greetingBox .template .header .left .time {
|
|
|
|
+ font-size: 24rpx;
|
|
|
|
+ color: #666;
|
|
|
|
+}
|
|
|
|
+.greetingBox .template .header .right {
|
|
|
|
+ text-align: center;
|
|
|
|
+}
|
|
|
|
+.greetingBox .template .header .right .delete {
|
|
|
|
+ width: 24rpx;
|
|
|
|
+ height: 32rpx;
|
|
|
|
+}
|
|
|
|
+.greetingBox .template .header .right .text {
|
|
|
|
+ font-size: 24rpx;
|
|
|
|
+}
|
|
|
|
+.greetingBox .template .body {
|
|
|
|
+ margin: 24rpx 0rpx;
|
|
|
|
+ width: 650rpx;
|
|
|
|
+ height: 520rpx;
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ background-color: #D8D8D8;
|
|
|
|
+}
|
|
|
|
+.greetingBox .template .body .playBtn {
|
|
|
|
+ width: 84rpx;
|
|
|
|
+ height: 84rpx;
|
|
|
|
+}
|
|
|
|
+.greetingBox .template .footer .countBox {
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ justify-content: space-between;
|
|
|
|
+}
|
|
|
|
+.greetingBox .template .footer .countBox .box {
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+}
|
|
|
|
+.greetingBox .template .footer .countBox .box .icon {
|
|
|
|
+ width: 38rpx;
|
|
|
|
+ height: 34rpx;
|
|
|
|
+}
|
|
|
|
+.greetingBox .template .footer .countBox .box .num {
|
|
|
|
+ margin-left: 4rpx;
|
|
|
|
+ font-size: 26rpx;
|
|
|
|
+ color: #666;
|
|
|
|
+}
|
|
|
|
+.greetingBox .template .footer .handle {
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: space-between;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ margin-top: 28rpx;
|
|
|
|
+}
|
|
|
|
+.greetingBox .template .footer .handle .btn {
|
|
|
|
+ width: 294rpx;
|
|
|
|
+ height: 86rpx;
|
|
|
|
+}
|