2025-04-02 17:33:46 +08:00
|
|
|
.super-card {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
height: calc(100% - 400rpx);
|
|
|
|
|
|
|
|
.scroll-x {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.super-card-container {
|
|
|
|
/* 设置背景图和白色背景 */
|
|
|
|
background: url("/static/index/clearmountain.png") center/cover, rgba(255, 255, 255, 0.5);
|
|
|
|
/* 使用 screen 混合模式,让图像与白色混合变淡 */
|
|
|
|
background-blend-mode: screen;
|
|
|
|
isolation: isolate;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 1650rpx;
|
|
|
|
height: 920rpx;
|
|
|
|
border-radius: 20rpx;
|
|
|
|
border: 2rpx solid #fff;
|
|
|
|
box-shadow: 10rpx 10rpx 20px rgba(0, 0, 0, 0.1);
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.super-card-time {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
// background-color: rgb(233, 239, 257);
|
|
|
|
height: 80rpx;
|
|
|
|
width: 100rpx;
|
|
|
|
border-right: 1rpx solid transparent;
|
|
|
|
border-image: repeating-linear-gradient(180deg, #0184db 0px, #0184db 6rpx, transparent 6rpx, transparent 12rpx) 1;
|
|
|
|
font-weight: 700;
|
|
|
|
z-index: -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.super-card-time-und {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: 100rpx;
|
|
|
|
flex-direction: column;
|
|
|
|
border-right: 1rpx solid transparent;
|
|
|
|
border-image: repeating-linear-gradient(180deg, #0184db 0px, #0184db 6rpx, transparent 6rpx, transparent 12rpx) 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.super-card-time-card {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
height: 209rpx;
|
|
|
|
width: calc(100%);
|
|
|
|
transition: all 0.8s;
|
|
|
|
border-image: repeating-linear-gradient(90deg, #0184db 0px, #0184db 6rpx, transparent 6rpx, transparent 12rpx) 1;
|
|
|
|
flex-direction: column;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.right-container {
|
|
|
|
width: calc(100% - 235rpx);
|
|
|
|
height: 100vh;
|
|
|
|
transition: opacity 1s ease;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.move-font {
|
|
|
|
position: absolute;
|
|
|
|
font-size: 35rpx;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doctorsay-container-view {
|
|
|
|
width: 100%;
|
|
|
|
height: 1220rpx;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.doctorsay-container-items {
|
|
|
|
width: 310rpx;
|
|
|
|
height: 1220rpx;
|
|
|
|
|
|
|
|
.doctorsay-container-up {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
.doctorsay-container-card {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background-color: rgb(221, 234, 250);
|
|
|
|
width: 130rpx;
|
|
|
|
height: 130rpx;
|
|
|
|
margin: 0 18rpx 15rpx 0rpx;
|
|
|
|
border-radius: 30rpx;
|
|
|
|
border: 2rpx solid rgb(221, 234, 250);
|
2025-04-11 17:23:45 +08:00
|
|
|
box-shadow: 5px 5px 10px rgba(105, 129, 178,0.2);
|
2025-04-02 17:33:46 +08:00
|
|
|
|
|
|
|
/* 右下角阴影 */
|
|
|
|
.doctorsay-container-card-img {
|
|
|
|
width: 75rpx;
|
|
|
|
height: 75rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doctorsay-container-card-font {
|
|
|
|
font-size: 30rpx;
|
2025-04-11 17:23:45 +08:00
|
|
|
margin-top: -10rpx;
|
2025-04-02 17:33:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.doctorsay-container-card-font-dark {
|
|
|
|
font-size: 30rpx;
|
|
|
|
color: #FFFFFF;
|
2025-04-11 17:23:45 +08:00
|
|
|
margin-top: -10rpx;
|
2025-04-02 17:33:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.doctorsay-container-down {
|
|
|
|
background-color: rgba(221, 234, 250);
|
|
|
|
backdrop-filter: blur(8rpx);
|
|
|
|
width: 290rpx;
|
|
|
|
height: 900rpx;
|
|
|
|
border-radius: 30rpx;
|
|
|
|
margin-top: 0rpx;
|
2025-04-11 17:23:45 +08:00
|
|
|
box-shadow: 5px 5px 10px rgba(105, 129, 178,0.8);
|
2025-04-02 17:33:46 +08:00
|
|
|
|
|
|
|
/* 右下角阴影 */
|
|
|
|
.doctorsay-container-scroll {
|
|
|
|
height: 770rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doctorsay-top {
|
|
|
|
height: 80rpx;
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
|
|
|
.doctorsay-top-gun {
|
|
|
|
margin-top: 37rpx;
|
|
|
|
margin-left: 40rpx;
|
|
|
|
margin-right: 20rpx;
|
|
|
|
width: 13rpx;
|
|
|
|
height: 35rpx;
|
|
|
|
background: linear-gradient(to bottom, #04BCED, #0160CE);
|
|
|
|
border-radius: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doctorsay-top-font {
|
|
|
|
font-size: 34rpx;
|
|
|
|
font-weight: 700;
|
|
|
|
margin-top: 34rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.doctorsay-container-button {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
height: 90rpx;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.doctorsay-container-text-target {
|
|
|
|
color: #016AD1;
|
|
|
|
background-color: #c9e8ff;
|
2025-04-11 17:23:45 +08:00
|
|
|
border-radius: 25rpx;
|
2025-04-02 17:33:46 +08:00
|
|
|
border: 2rpx solid #fff;
|
|
|
|
width: 300rpx;
|
|
|
|
height: 100rpx;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 45rpx;
|
|
|
|
transition: all 0.4s ease-in-out;
|
2025-04-11 17:23:45 +08:00
|
|
|
box-shadow: 5px 5px 10px rgba(105, 129, 178,0.2);
|
2025-04-02 17:33:46 +08:00
|
|
|
z-index: 20;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doctorsay-container-text {
|
|
|
|
background-color: #f3f6fc;
|
|
|
|
border: 2rpx solid #fff;
|
2025-04-11 17:23:45 +08:00
|
|
|
border-radius: 25rpx;
|
2025-04-02 17:33:46 +08:00
|
|
|
width: 250rpx;
|
|
|
|
height: 75rpx;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
|
|
|
transition: all 0.4s ease-in-out;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 30rpx;
|
|
|
|
// background: linear-gradient(to right, #dcdcf9 0%, #dbdcf8 100%);
|
2025-04-11 17:23:45 +08:00
|
|
|
box-shadow: 5px 5px 10px rgba(105, 129, 178,0.2);
|
2025-04-02 17:33:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.doctorsay-container-button-gun {
|
|
|
|
position: absolute;
|
|
|
|
top: 19rpx;
|
|
|
|
left: 1rpx;
|
|
|
|
width: 10rpx;
|
|
|
|
height: 50rpx;
|
|
|
|
background: linear-gradient(to bottom, #04BCED, #0160CE);
|
|
|
|
border-radius: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doctorsay-container-button-uplight {
|
|
|
|
position: absolute;
|
|
|
|
top: 40rpx;
|
|
|
|
left: 20rpx;
|
|
|
|
width: 250rpx;
|
|
|
|
height: 50rpx;
|
|
|
|
z-index: 21;
|
|
|
|
transition: all 0.4s ease-in-out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.doctorsay-container-container {
|
|
|
|
border: 2rpx solid #fff;
|
|
|
|
width: 1726rpx;
|
|
|
|
height: 1340rpx;
|
|
|
|
/* 设置背景图和白色背景 */
|
|
|
|
background: url("/static/index/lightbgcnew.png") center/cover, rgba(255, 255, 255, 0.3);
|
|
|
|
backdrop-filter: blur(20rpx);
|
|
|
|
/* 使用 screen 混合模式,让图像与白色混合变淡 */
|
|
|
|
background-blend-mode: screen;
|
|
|
|
border-radius: 30rpx;
|
|
|
|
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
|
|
|
|
/* 右下角阴影 */
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
.super-card-end {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.super-end-father {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.super-end-items-all {
|
|
|
|
width: calc(100% - 85rpx);
|
|
|
|
height: 200rpx;
|
|
|
|
margin-left: 40rpx;
|
|
|
|
margin-right: 40rpx;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.super-end-items {
|
|
|
|
display: flex;
|
|
|
|
width: calc(100% - 85rpx);
|
|
|
|
height: 200rpx;
|
|
|
|
|
|
|
|
.super-end-items-father {
|
|
|
|
margin-right: 20rpx;
|
|
|
|
width: 150rpx;
|
|
|
|
height: 150rpx;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
position: relative;
|
|
|
|
background: linear-gradient(to bottom right, #fff 0%, #dcdcf9 50%, #dbdcf8 100%);
|
2025-04-11 17:23:45 +08:00
|
|
|
border-radius: 30rpx;
|
2025-04-02 17:33:46 +08:00
|
|
|
border: 2rpx solid #fff;
|
2025-04-11 17:23:45 +08:00
|
|
|
box-shadow: 10rpx 10rpx 20rpx rgba(105, 129, 178,0.2);
|
2025-04-02 17:33:46 +08:00
|
|
|
transition: all 1.5s ease-in-out;
|
|
|
|
|
|
|
|
.super-end-items-father-close-father {
|
|
|
|
width: 40rpx;
|
|
|
|
height: 40rpx;
|
|
|
|
border-radius: 50%;
|
|
|
|
display: flex;
|
|
|
|
background-color: #0184db;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
position: absolute;
|
|
|
|
top: 0rpx;
|
|
|
|
right: 0rpx;
|
|
|
|
z-index: 10;
|
|
|
|
// background-color: #fff;
|
|
|
|
// background: linear-gradient(to bottom right, #fff 0%, #e5d3fb 50%, #cfd9f6 100%);
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.super-end-items-img-father {
|
|
|
|
width: 100rpx;
|
|
|
|
height: 100rpx;
|
|
|
|
border-radius: 50%;
|
|
|
|
// margin-bottom: 5rpx;
|
|
|
|
display: flex;
|
|
|
|
// background-color: #fff;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
/* 让正方形变成圆 */
|
|
|
|
.super-end-items-img {
|
|
|
|
width: 85rpx;
|
|
|
|
height: 85rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.super-end-items-img-father-active {
|
|
|
|
width: 100rpx;
|
|
|
|
height: 100rpx;
|
|
|
|
border-radius: 50%;
|
|
|
|
display: flex;
|
|
|
|
// background-color: #fff;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
animation: shake 0.5s infinite;
|
|
|
|
|
|
|
|
/* 让正方形变成圆 */
|
|
|
|
.super-end-items-img {
|
|
|
|
width: 85rpx;
|
|
|
|
height: 85rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.super-end-items-font {
|
|
|
|
margin-top: -10rpx;
|
|
|
|
font-size: 25rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.super-end-font-father {
|
|
|
|
display: flex;
|
|
|
|
// margin: 20rpx 0;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
margin-bottom: 10rpx;
|
|
|
|
|
|
|
|
.super-end-font-gun {
|
|
|
|
margin-left: 40rpx;
|
|
|
|
margin-right: 20rpx;
|
|
|
|
margin-top: 5rpx;
|
|
|
|
width: 13rpx;
|
|
|
|
height: 40rpx;
|
|
|
|
background: linear-gradient(to bottom, #04BCED, #0160CE);
|
|
|
|
border-radius: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.super-end-font-font {
|
|
|
|
font-size: 38rpx;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.doctorsay-container-title {
|
|
|
|
width: 100%;
|
|
|
|
height: 105rpx;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
.doctorsay-container-right {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
width: 400rpx;
|
|
|
|
|
|
|
|
.doctorsay-container-juzhen {
|
|
|
|
background: linear-gradient(to right bottom, #00c9ff, #0076ff);
|
|
|
|
color: #fff;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
padding: 10rpx 20rpx;
|
|
|
|
border-radius: 20rpx;
|
|
|
|
font-size: 27rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doctorsay-container-button-father {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.doctorsay-container-button-target {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background-color: #3FA9F5;
|
|
|
|
color: #fff;
|
|
|
|
width: 140rpx;
|
|
|
|
height: 60rpx;
|
|
|
|
margin-right: 20rpx;
|
|
|
|
font-size: 28rpx;
|
|
|
|
border-radius: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doctorsay-container-button {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background-color: #fff;
|
|
|
|
width: 140rpx;
|
|
|
|
height: 60rpx;
|
|
|
|
margin-right: 20rpx;
|
|
|
|
font-size: 28rpx;
|
|
|
|
border-radius: 10rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.doctorsay-container-right-kuai-cheng {
|
|
|
|
background-color: #FFDBA1;
|
|
|
|
height: 35rpx;
|
|
|
|
width: 35rpx;
|
|
|
|
border-radius: 7rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doctorsay-container-right-kuai-zi {
|
|
|
|
background-color: #7B61FF;
|
|
|
|
height: 35rpx;
|
|
|
|
width: 35rpx;
|
|
|
|
border-radius: 7rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doctorsay-container-kuai-font {
|
|
|
|
font-size: 32rpx;
|
|
|
|
margin-left: 10rpx;
|
|
|
|
margin-right: 25rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.doctorsay-container-left {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.doctorsay-container-share {
|
|
|
|
background: linear-gradient(to right bottom, #00c9ff, #0076ff);
|
|
|
|
color: #fff;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
padding: 10rpx 20rpx;
|
|
|
|
border-radius: 20rpx;
|
|
|
|
font-size: 27rpx;
|
|
|
|
margin-left: 20rpx;
|
|
|
|
margin-top: -3rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doctorsay-container-left-gun {
|
|
|
|
margin-top: 7rpx;
|
|
|
|
margin-left: 40rpx;
|
|
|
|
margin-right: 20rpx;
|
|
|
|
width: 13rpx;
|
|
|
|
height: 40rpx;
|
|
|
|
background: linear-gradient(to bottom, #04BCED, #0160CE);
|
|
|
|
border-radius: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doctorsay-container-left-font {
|
|
|
|
font-size: 38rpx;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.right-container-title-nav {
|
|
|
|
margin-top: 75rpx;
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
margin-left: 20rpx;
|
|
|
|
|
|
|
|
.right-icons {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
float: right;
|
|
|
|
height: 70rpx;
|
|
|
|
margin-right: 40rpx;
|
|
|
|
|
|
|
|
.right-icons-font {
|
|
|
|
margin-left: 10rpx;
|
|
|
|
margin-right: 10rpx;
|
|
|
|
font-size: 35rpx;
|
|
|
|
margin-top: -30rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right-icons-font-dark {
|
|
|
|
color: #fff;
|
|
|
|
margin-left: 10rpx;
|
|
|
|
margin-right: 10rpx;
|
|
|
|
font-size: 35rpx;
|
|
|
|
margin-top: -30rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right-icons-img {
|
|
|
|
width: 80rpx;
|
|
|
|
height: 80rpx;
|
|
|
|
margin-left: 10rpx;
|
|
|
|
margin-right: 10rpx;
|
|
|
|
margin-top: -40rpx;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.right-icons-img-icon {
|
|
|
|
width: 60rpx;
|
|
|
|
height: 80rpx;
|
|
|
|
margin-top: -10rpx;
|
|
|
|
margin-left: 8rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.right-container-title-no {
|
|
|
|
font-size: 35rpx;
|
|
|
|
margin-right: 20rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right-container-title-no-dark {
|
|
|
|
font-size: 35rpx;
|
|
|
|
background: linear-gradient(to bottom, #FFFFFF, #B2C8E2);
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
color: transparent;
|
|
|
|
margin-right: 20rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right-container-title-class {
|
|
|
|
font-size: 35rpx;
|
|
|
|
font-weight: 800;
|
|
|
|
margin-left: 20rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right-container-title-class-dark {
|
|
|
|
font-size: 35rpx;
|
|
|
|
font-weight: 800;
|
|
|
|
margin-left: 20rpx;
|
|
|
|
background: linear-gradient(to bottom, #FFFFFF, #B2C8E2);
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right-container-title-class-anhei-button {
|
|
|
|
float: right;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
border-radius: 30rpx;
|
|
|
|
margin-right: 30rpx;
|
|
|
|
width: 200rpx;
|
|
|
|
height: 50rpx;
|
|
|
|
background-color: black;
|
|
|
|
border: 2rpx solid;
|
|
|
|
|
|
|
|
.right-container-title-class-anhei {
|
2025-04-16 17:32:42 +08:00
|
|
|
font-size: 30rpx;
|
2025-04-02 17:33:46 +08:00
|
|
|
font-weight: 800;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-time-delete {
|
|
|
|
width: 55rpx;
|
|
|
|
height: 55rpx;
|
|
|
|
border-radius: 50%;
|
|
|
|
display: flex;
|
|
|
|
background-color: #fff;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
position: absolute;
|
|
|
|
top: 0rpx;
|
|
|
|
right: 0rpx;
|
|
|
|
z-index: 10;
|
|
|
|
background-color: #02abfe;
|
|
|
|
color: #fff;
|
|
|
|
z-index: 999;
|
|
|
|
font-size: 50rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-time {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.title-time-time {
|
|
|
|
font-size: 32rpx;
|
|
|
|
margin-left: 40rpx;
|
|
|
|
margin-top: 12rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-time-button {
|
|
|
|
position: absolute;
|
|
|
|
top: -4rpx;
|
|
|
|
right: -4rpx;
|
|
|
|
width: 65rpx;
|
|
|
|
height: 60rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-time-zhejiao {
|
|
|
|
position: absolute;
|
|
|
|
top: 0rpx;
|
|
|
|
left: 5rpx;
|
|
|
|
width: 40rpx;
|
|
|
|
height: 40rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-time-font {
|
|
|
|
position: absolute;
|
|
|
|
top: 7rpx;
|
|
|
|
right: 5rpx;
|
|
|
|
font-size: 20rpx;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-delete {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
backdrop-filter: blur(1rpx);
|
|
|
|
background-color: rgba(89, 109, 154, 0.4);
|
|
|
|
/* 添加毛玻璃效果 */
|
|
|
|
z-index: 999;
|
|
|
|
|
|
|
|
.popup-delete-content {
|
|
|
|
position: absolute;
|
|
|
|
right: 515rpx;
|
|
|
|
display: flex;
|
|
|
|
// justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
width: 800rpx;
|
|
|
|
height: 500rpx;
|
|
|
|
background: url("/static/index/lightbgcnew.png") center/cover, rgba(255, 255, 255, 0.7);
|
|
|
|
background-blend-mode: screen;
|
|
|
|
border: 2rpx solid #fff;
|
|
|
|
/* 使用 screen 混合模式,让图像与白色混合变淡 */
|
|
|
|
border-radius: 30rpx;
|
|
|
|
box-shadow: 10rpx 10rpx 20rpx rgba(0, 0, 0, 0.1);
|
|
|
|
transition: opacity 0.4s ease;
|
|
|
|
|
|
|
|
.popup-delete-img {
|
|
|
|
width: 250rpx;
|
|
|
|
height: 230rpx;
|
|
|
|
margin-top: 40rpx;
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-delete-text {
|
|
|
|
font-size: 30rpx;
|
|
|
|
color: #42474E;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-delete-button {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
height: 90rpx;
|
|
|
|
margin-top: 30rpx;
|
|
|
|
|
|
|
|
.popup-delete-button-left {
|
|
|
|
background-color: rgb(2, 171, 254);
|
|
|
|
width: 200rpx;
|
|
|
|
height: 80rpx;
|
|
|
|
border-radius: 40rpx;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-delete-button-right {
|
|
|
|
background-color: #ced9e8;
|
|
|
|
width: 200rpx;
|
|
|
|
height: 80rpx;
|
|
|
|
border-radius: 40rpx;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
margin-right: 20rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-overlay {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
/* 添加毛玻璃效果 */
|
|
|
|
z-index: 999;
|
|
|
|
|
|
|
|
.popup-overlay-content {
|
|
|
|
position: absolute;
|
|
|
|
display: flex;
|
|
|
|
// justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: 800rpx;
|
|
|
|
height: 390rpx;
|
|
|
|
background-color: #fff;
|
|
|
|
border-radius: 30rpx;
|
|
|
|
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.4s ease;
|
|
|
|
|
|
|
|
.popup-overlay-content-left {
|
|
|
|
// background-color: red;
|
|
|
|
height: 100%;
|
|
|
|
width: 350rpx;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
.popup-overlay-content-left-img {
|
|
|
|
width: 280rpx;
|
|
|
|
height: 180rpx;
|
|
|
|
margin-top: -30rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-overlay-content-left-font {
|
|
|
|
// margin-top: 20rpx;
|
|
|
|
font-size: 30rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-overlay-content-right {
|
|
|
|
height: 100%;
|
|
|
|
width: 450rpx;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.time-font {
|
|
|
|
font-size: 50rpx;
|
|
|
|
margin-top: 100rpx;
|
|
|
|
margin-bottom: 10rpx;
|
|
|
|
font-weight: 700;
|
|
|
|
background: linear-gradient(to bottom, #7080A1, #263556);
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.time-text {
|
|
|
|
margin-left: 10rpx;
|
|
|
|
font-size: 30rpx;
|
|
|
|
// font-weight: 700;
|
|
|
|
width: 380rpx;
|
|
|
|
margin-bottom: 50rpx;
|
|
|
|
line-height: 35rpx;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.right-richang {
|
|
|
|
background-color: #FFC363;
|
|
|
|
position: absolute;
|
|
|
|
top: 108rpx;
|
|
|
|
right: 50rpx;
|
|
|
|
padding: 5rpx;
|
|
|
|
border-radius: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right-richangnot {
|
|
|
|
background-color: #7B61FF;
|
|
|
|
position: absolute;
|
|
|
|
top: 108rpx;
|
|
|
|
right: 50rpx;
|
|
|
|
padding: 5rpx;
|
|
|
|
border-radius: 10rpx;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right-crush {
|
|
|
|
position: absolute;
|
|
|
|
top: 20rpx;
|
|
|
|
right: 20rpx;
|
|
|
|
width: 70rpx;
|
|
|
|
height: 70rpx;
|
|
|
|
animation: shake 0.5s 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-song {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
backdrop-filter: blur(1rpx);
|
|
|
|
background-color: rgba(89, 109, 154, 0.4);
|
|
|
|
/* 添加毛玻璃效果 */
|
|
|
|
z-index: 999;
|
|
|
|
|
|
|
|
.popup-song-contain {
|
|
|
|
position: absolute;
|
|
|
|
right: 270rpx;
|
|
|
|
width: 1296rpx;
|
|
|
|
background: url("/static/index/clearmountain.png") center/cover, rgba(255, 255, 255, 0.7);
|
|
|
|
/* 使用 screen 混合模式,让图像与白色混合变淡 */
|
|
|
|
background-blend-mode: screen;
|
|
|
|
border: 2rpx solid #fff;
|
|
|
|
/* 使用 screen 混合模式,让图像与白色混合变淡 */
|
|
|
|
background-blend-mode: screen;
|
|
|
|
border-radius: 40rpx;
|
|
|
|
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.4s ease;
|
|
|
|
|
|
|
|
.shu-container-left {
|
|
|
|
display: flex;
|
|
|
|
margin-top: 70rpx;
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
|
|
|
.shu-container-left-gun {
|
|
|
|
margin-top: 5rpx;
|
|
|
|
margin-left: 40rpx;
|
|
|
|
margin-right: 20rpx;
|
|
|
|
width: 13rpx;
|
|
|
|
height: 35rpx;
|
|
|
|
background: linear-gradient(to bottom, #04BCED, #0160CE);
|
|
|
|
border-radius: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shu-container-left-font {
|
|
|
|
font-size: 35rpx;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-song-father {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.shu-up-img {
|
|
|
|
position: absolute;
|
|
|
|
top: -70rpx;
|
|
|
|
left: 305rpx;
|
|
|
|
width: 700rpx;
|
|
|
|
height: 80rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shu-up-font {
|
|
|
|
position: absolute;
|
|
|
|
top: -50rpx;
|
|
|
|
left: 390rpx;
|
|
|
|
display: flex;
|
|
|
|
color: rgb(255, 90, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
.arrayindex {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
width: 100%;
|
|
|
|
// height: 200rpx;
|
|
|
|
margin-left: 30rpx;
|
|
|
|
margin-right: 30rpx;
|
|
|
|
|
|
|
|
.arrayindex-one {
|
|
|
|
width: 385rpx;
|
|
|
|
height: 100rpx;
|
|
|
|
margin-left: 20rpx;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
background-color: rgb(241, 245, 252);
|
|
|
|
border-radius: 20rpx;
|
|
|
|
border: 1rpx solid rgb(109, 131, 179);
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 29rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.arrayindex-one-target {
|
|
|
|
width: 385rpx;
|
|
|
|
height: 100rpx;
|
|
|
|
margin-left: 20rpx;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
background: linear-gradient(to right, #00c9ff, #0076ff);
|
|
|
|
color: #fff;
|
|
|
|
border-radius: 20rpx;
|
|
|
|
border: 1rpx solid rgb(2, 171, 254);
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 29rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.ri-img {
|
|
|
|
position: absolute;
|
|
|
|
top: -4rpx;
|
|
|
|
right: -4rpx;
|
|
|
|
width: 60rpx;
|
|
|
|
height: 60rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.time-father {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-left: 30rpx;
|
|
|
|
margin-right: 30rpx;
|
|
|
|
|
|
|
|
.time-one {
|
|
|
|
width: 100rpx;
|
|
|
|
height: 100rpx;
|
|
|
|
margin-left: 20rpx;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
background-color: rgb(241, 245, 252);
|
|
|
|
border-radius: 20rpx;
|
|
|
|
border: 1rpx solid rgb(109, 131, 179);
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 29rpx;
|
|
|
|
box-shadow: 5rpx 5rpx 10rpx rgba(105, 129, 178, 0.4)
|
|
|
|
}
|
|
|
|
|
|
|
|
.time-one-target {
|
|
|
|
width: 100rpx;
|
|
|
|
height: 100rpx;
|
|
|
|
margin-left: 20rpx;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
background: linear-gradient(to right, #00c9ff, #0076ff);
|
|
|
|
color: #fff;
|
|
|
|
border-radius: 20rpx;
|
|
|
|
border: 1rpx solid #fff;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 29rpx;
|
|
|
|
box-shadow: 5rpx 5rpx 10rpx rgba(105, 129, 178, 0.4)
|
|
|
|
}
|
|
|
|
|
|
|
|
.time-one-hui {
|
|
|
|
width: 100rpx;
|
|
|
|
height: 100rpx;
|
|
|
|
margin-left: 20rpx;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
background-color: #c2c9d3;
|
|
|
|
// color: #fff;
|
|
|
|
border-radius: 20rpx;
|
|
|
|
border: 1rpx solid #fff;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 29rpx;
|
|
|
|
box-shadow: 5rpx 5rpx 10rpx rgba(105, 129, 178, 0.4)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-father {
|
|
|
|
height: 200rpx;
|
|
|
|
width: calc(100%-80rpx);
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
margin-left: 40rpx;
|
|
|
|
margin-right: 40rpx;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
border-top: 1rpx solid rgb(230, 230, 230);
|
|
|
|
|
|
|
|
.button-father-right {
|
|
|
|
background: linear-gradient(to right, #00c9ff, #0076ff);
|
|
|
|
width: 200rpx;
|
|
|
|
height: 80rpx;
|
|
|
|
border-radius: 40rpx;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-father-wrong {
|
|
|
|
background-color: #c2c9d3;
|
|
|
|
width: 200rpx;
|
|
|
|
height: 80rpx;
|
|
|
|
border-radius: 40rpx;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.month-father {
|
|
|
|
display: flex;
|
|
|
|
width: calc(100% - 60rpx);
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-left: 30rpx;
|
|
|
|
margin-right: 30rpx;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
|
|
|
.month-one {
|
|
|
|
width: 75rpx;
|
|
|
|
height: 75rpx;
|
|
|
|
margin-left: 20rpx;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
background-color: rgb(241, 245, 252);
|
|
|
|
border-radius: 20rpx;
|
|
|
|
border: 1rpx solid rgb(109, 131, 179);
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 29rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.month-one-target {
|
|
|
|
width: 75rpx;
|
|
|
|
height: 75rpx;
|
|
|
|
margin-left: 20rpx;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
background: linear-gradient(to right, #00c9ff, #0076ff);
|
|
|
|
color: #fff;
|
|
|
|
border-radius: 20rpx;
|
|
|
|
border: 1rpx solid #fff;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 29rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.week-father {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-left: 30rpx;
|
|
|
|
margin-right: 30rpx;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
|
|
|
.week-one {
|
|
|
|
width: 200rpx;
|
|
|
|
height: 100rpx;
|
|
|
|
margin-left: 20rpx;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
background-color: rgb(241, 245, 252);
|
|
|
|
border-radius: 20rpx;
|
|
|
|
border: 1rpx solid rgb(109, 131, 179);
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 29rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.week-one-target {
|
|
|
|
width: 200rpx;
|
|
|
|
height: 100rpx;
|
|
|
|
margin-left: 20rpx;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
background: linear-gradient(to right, #00c9ff, #0076ff);
|
|
|
|
color: #fff;
|
|
|
|
border-radius: 20rpx;
|
|
|
|
border: 1rpx solid #fff;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 29rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.radio-father {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-left: 75rpx;
|
|
|
|
margin-right: 30rpx;
|
|
|
|
|
|
|
|
.radio-circle {
|
|
|
|
margin-top: 2rpx;
|
|
|
|
width: 30rpx;
|
|
|
|
height: 30rpx;
|
|
|
|
border-radius: 50%;
|
|
|
|
border: 2rpx solid black;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.radio-circle-target {
|
|
|
|
position: relative;
|
|
|
|
margin-top: 2rpx;
|
|
|
|
width: 30rpx;
|
|
|
|
height: 30rpx;
|
|
|
|
border-radius: 50%;
|
|
|
|
border: 2rpx solid rgb(2, 171, 254);
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.radio-circle-target::after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
width: 20rpx;
|
|
|
|
height: 20rpx;
|
|
|
|
background-color: rgb(2, 171, 254);
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.radio-font {
|
|
|
|
margin-left: 15rpx;
|
|
|
|
margin-right: 60rpx;
|
|
|
|
font-size: 29rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-time-border {
|
|
|
|
margin-top: 4rpx;
|
|
|
|
margin-left: 4rpx;
|
|
|
|
// border: 1rpx solid black;
|
|
|
|
width: calc(100% - 8rpx);
|
|
|
|
height: calc(100% - 8rpx);
|
|
|
|
border-radius: 20rpx;
|
|
|
|
display: flex;
|
|
|
|
// justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-time-border-red {
|
|
|
|
background-color: #dae8fa;
|
|
|
|
width: calc(100%);
|
|
|
|
height: calc(100%);
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
/* 调整 box-shadow 使其向下投影 */
|
|
|
|
box-shadow: 0px 20rpx 40rpx #dae8fa;
|
|
|
|
|
|
|
|
background:
|
|
|
|
linear-gradient(to right, red, red) top left / 60rpx 8rpx no-repeat,
|
|
|
|
/* 左上角垂直 */
|
|
|
|
linear-gradient(to bottom, red, red) top left / 8rpx 60rpx no-repeat,
|
|
|
|
/* 右上角水平 */
|
|
|
|
linear-gradient(to left, red, red) top right / 60rpx 8rpx no-repeat,
|
|
|
|
/* 右上角垂直 */
|
|
|
|
linear-gradient(to bottom, red, red) top right / 8rpx 60rpx no-repeat,
|
|
|
|
/* 左下角水平 */
|
|
|
|
linear-gradient(to right, red, red) bottom left / 60rpx 8rpx no-repeat,
|
|
|
|
/* 左下角垂直 */
|
|
|
|
linear-gradient(to top, red, red) bottom left / 8rpx 60rpx no-repeat,
|
|
|
|
/* 右下角水平 */
|
|
|
|
linear-gradient(to left, red, red) bottom right / 60rpx 8rpx no-repeat,
|
|
|
|
/* 右下角垂直 */
|
|
|
|
linear-gradient(to top, red, red) bottom right / 8rpx 60rpx no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-time-border-big {
|
|
|
|
transform: scale(1.5);
|
|
|
|
transform-origin: top;
|
|
|
|
/* 将页面内容放大1.2倍 */
|
|
|
|
border-top: 0rpx solid #fff;
|
|
|
|
transition: transform 0.5s ease-out, opacity 0.5s ease-out;
|
|
|
|
z-index: 999;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
height: 209rpx;
|
|
|
|
width: calc(100%);
|
|
|
|
border-image: repeating-linear-gradient(90deg, #0184db 0px, #0184db 6rpx, transparent 6rpx, transparent 12rpx) 1;
|
|
|
|
flex-direction: column;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-time-border-big-top {
|
|
|
|
transform: scale(1.5);
|
|
|
|
transform-origin: top;
|
|
|
|
/* 将页面内容放大1.2倍 */
|
|
|
|
border-top: 0rpx solid #fff;
|
|
|
|
transition: transform 0.5s ease-out, opacity 0.5s ease-out;
|
|
|
|
z-index: 999;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
height: 209rpx;
|
|
|
|
width: calc(100%);
|
|
|
|
border-image: repeating-linear-gradient(90deg, #0184db 0px, #0184db 6rpx, transparent 6rpx, transparent 12rpx) 1;
|
|
|
|
flex-direction: column;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-time-border-blue {
|
|
|
|
background-color: #dae8fa;
|
|
|
|
width: calc(100%);
|
|
|
|
height: calc(100%);
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
/* 调整 box-shadow 使其向下投影 */
|
|
|
|
box-shadow: 0px 20rpx 40rpx #dae8fa;
|
|
|
|
background:
|
|
|
|
/* 左上角水平 */
|
|
|
|
linear-gradient(to right, #0184db, #0184db) top left / 60rpx 8rpx no-repeat,
|
|
|
|
/* 左上角垂直 */
|
|
|
|
linear-gradient(to bottom, #0184db, #0184db) top left / 8rpx 60rpx no-repeat,
|
|
|
|
/* 右上角水平 */
|
|
|
|
linear-gradient(to left, #0184db, #0184db) top right / 60rpx 8rpx no-repeat,
|
|
|
|
/* 右上角垂直 */
|
|
|
|
linear-gradient(to bottom, #0184db, #0184db) top right / 8rpx 60rpx no-repeat,
|
|
|
|
/* 左下角水平 */
|
|
|
|
linear-gradient(to right, #0184db, #0184db) bottom left / 60rpx 8rpx no-repeat,
|
|
|
|
/* 左下角垂直 */
|
|
|
|
linear-gradient(to top, #0184db, #0184db) bottom left / 8rpx 60rpx no-repeat,
|
|
|
|
/* 右下角水平 */
|
|
|
|
linear-gradient(to left, #0184db, #0184db) bottom right / 60rpx 8rpx no-repeat,
|
|
|
|
/* 右下角垂直 */
|
|
|
|
linear-gradient(to top, #0184db, #0184db) bottom right / 8rpx 60rpx no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.title-time-border-yellow {
|
|
|
|
margin: 10rpx;
|
|
|
|
border: 2rpx solid #d0d8e0;
|
|
|
|
background: linear-gradient(to bottom, #fff1db, #ffe2b2);
|
|
|
|
width: calc(100% - 20rpx);
|
|
|
|
height: calc(100% - 20rpx);
|
|
|
|
border-radius: 20rpx;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
box-shadow: 8rpx 8rpx 16rpx rgba(255, 138, 0, 0.7);
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-time-border-yellow-active-transparent {
|
|
|
|
margin: 10rpx;
|
|
|
|
border: 4rpx dashed rgb(255, 138, 0);
|
|
|
|
background: linear-gradient(to bottom, #fff1db, #ffe2b2);
|
|
|
|
width: calc(100% - 26rpx);
|
|
|
|
height: calc(100% - 26rpx);
|
|
|
|
border-radius: 20rpx;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
opacity: 0.3;
|
|
|
|
box-shadow: 8rpx 8rpx 16rpx rgba(255, 138, 0, 0.7);
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-time-border-yellow-active {
|
|
|
|
margin: 10rpx;
|
|
|
|
border: 1rpx solid #dae8fa;
|
|
|
|
background: linear-gradient(to bottom, #fff1db, #ffe2b2);
|
|
|
|
width: calc(100% - 20rpx);
|
|
|
|
height: calc(100% - 20rpx);
|
|
|
|
border-radius: 20rpx;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
animation: shakesmall 0.8s infinite;
|
|
|
|
box-shadow: 8rpx 8rpx 16rpx rgba(255, 138, 0, 0.7);
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-time-border-pouple-active-transparent {
|
|
|
|
margin: 10rpx;
|
|
|
|
border: 4rpx dashed #7B61FF;
|
|
|
|
background: linear-gradient(to bottom, #f1eeff, #e3deff);
|
|
|
|
width: calc(100% - 26rpx);
|
|
|
|
height: calc(100% - 26rpx);
|
|
|
|
border-radius: 20rpx;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
opacity: 0.3;
|
|
|
|
box-shadow: 8rpx 8rpx 16rpx rgba(123, 97, 255, 0.7);
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-time-border-pouple {
|
|
|
|
margin: 10rpx;
|
|
|
|
border: 1rpx solid #dae8fa;
|
|
|
|
background: linear-gradient(to bottom, #f1eeff, #e3deff);
|
|
|
|
width: calc(100% - 20rpx);
|
|
|
|
height: calc(100% - 20rpx);
|
|
|
|
border-radius: 20rpx;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
box-shadow: 8rpx 8rpx 16rpx rgba(123, 97, 255, 0.7);
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-time-border-pouple-active {
|
|
|
|
margin: 10rpx;
|
|
|
|
border: 1rpx solid #dae8fa;
|
|
|
|
background: linear-gradient(to bottom, #f1eeff, #e3deff);
|
|
|
|
width: calc(100% - 20rpx);
|
|
|
|
height: calc(100% - 20rpx);
|
|
|
|
border-radius: 20rpx;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
animation: shakesmall 1s infinite;
|
|
|
|
box-shadow: 8rpx 8rpx 16rpx rgba(123, 97, 255, 0.7);
|
|
|
|
}
|
|
|
|
|
|
|
|
.down-icons {
|
|
|
|
margin-top: 10rpx;
|
|
|
|
width: 100%;
|
|
|
|
height: 60rpx;
|
|
|
|
background-color: rgb(255, 216, 126);
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
margin: 0 5rpx;
|
|
|
|
font-size: 20rpx;
|
|
|
|
padding: 5rpx 10rpx;
|
|
|
|
background-color: rgb(255, 138, 0);
|
|
|
|
color: #fff;
|
|
|
|
border-radius: 5rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes shake {
|
|
|
|
0% {
|
|
|
|
transform: rotate(-10deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
25% {
|
|
|
|
transform: rotate(10deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
transform: rotate(-10deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
75% {
|
|
|
|
transform: rotate(10deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: rotate(-10deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes shakesmall {
|
|
|
|
0% {
|
|
|
|
transform: rotate(-2deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
25% {
|
|
|
|
transform: rotate(2deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
transform: rotate(-2deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
75% {
|
|
|
|
transform: rotate(2deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: rotate(-2deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.boom {
|
|
|
|
position: absolute;
|
|
|
|
top: 80rpx;
|
|
|
|
left: 0rpx;
|
|
|
|
// background-color: #fff;
|
|
|
|
width: 42rpx;
|
|
|
|
height: 840rpx;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
// justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
overflow: hidden;
|
|
|
|
z-index: 10;
|
|
|
|
|
|
|
|
.boom-son {
|
|
|
|
height: 210rpx;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 30rpx;
|
|
|
|
letter-spacing: 5rpx;
|
|
|
|
writing-mode: vertical-rl;
|
|
|
|
/* 竖排文字,从右往左 */
|
|
|
|
text-align: center;
|
|
|
|
z-index: 10;
|
|
|
|
/* 确保文字在容器内居中 */
|
|
|
|
background: linear-gradient(to bottom, #ffe2b2, #e3deff);
|
|
|
|
// z-index: -1;
|
|
|
|
border-bottom-right-radius: 40rpx;
|
|
|
|
border-top-right-radius: 40rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.boom-son-target {
|
|
|
|
height: 210rpx;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 30rpx;
|
|
|
|
letter-spacing: 5rpx;
|
|
|
|
writing-mode: vertical-rl;
|
|
|
|
/* 竖排文字,从右往左 */
|
|
|
|
text-align: center;
|
|
|
|
z-index: 10;
|
|
|
|
/* 确保文字在容器内居中 */
|
|
|
|
background: linear-gradient(to bottom, #ff8a00, #eceaff);
|
|
|
|
border-bottom-right-radius: 40rpx;
|
|
|
|
border-top-right-radius: 40rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-share {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
backdrop-filter: blur(1rpx);
|
|
|
|
background-color: rgba(89, 109, 154, 0.4);
|
|
|
|
/* 添加毛玻璃效果 */
|
|
|
|
z-index: 999;
|
|
|
|
|
|
|
|
.popup-share-content {
|
|
|
|
position: absolute;
|
|
|
|
right: 515rpx;
|
|
|
|
display: flex;
|
|
|
|
// justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
// align-items: center;
|
|
|
|
width: 800rpx;
|
|
|
|
height: 380rpx;
|
|
|
|
background: url("/static/index/lightbgcnew.png") center/cover, rgba(255, 255, 255, 0.7);
|
|
|
|
background-blend-mode: screen;
|
|
|
|
border: 2rpx solid #fff;
|
|
|
|
/* 使用 screen 混合模式,让图像与白色混合变淡 */
|
|
|
|
border-radius: 30rpx;
|
|
|
|
box-shadow: 10rpx 10rpx 20rpx rgba(0, 0, 0, 0.1);
|
|
|
|
transition: opacity 0.4s ease;
|
|
|
|
|
|
|
|
.popup-share-title {
|
|
|
|
margin: 30rpx 30rpx;
|
|
|
|
font-size: 40rpx;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.popup-share-img {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
width: 200rpx;
|
|
|
|
height: 200rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-share-upcontent {
|
|
|
|
margin: 0 30rpx;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
.popup-share-font {
|
|
|
|
font-size: 35rpx;
|
|
|
|
color: gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-share-gray {
|
|
|
|
background-color: #D3D3D3;
|
|
|
|
width: calc(100% - 60rpx);
|
|
|
|
height: 2rpx;
|
|
|
|
margin: 110rpx 30rpx 0 30rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-share-downcontent {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0 30rpx;
|
|
|
|
|
|
|
|
.popup-downcontent-img {
|
|
|
|
width: 70rpx;
|
|
|
|
height: 70rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-downcontent-font {
|
|
|
|
font-size: 27rpx;
|
|
|
|
margin-left: 20rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-share-downcontent-left {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-share-downcontent-button {
|
|
|
|
background: linear-gradient(to right bottom, #00c9ff, #0076ff);
|
|
|
|
color: #fff;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
padding: 15rpx 30rpx;
|
|
|
|
border-radius: 20rpx;
|
|
|
|
font-size: 32rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|