2025-03-24 18:05:54 +08:00
|
|
|
.bg-title {
|
2025-03-31 18:23:29 +08:00
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
2025-03-24 18:05:54 +08:00
|
|
|
}
|
2025-03-21 18:05:54 +08:00
|
|
|
|
|
|
|
.content-box {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
padding: 20rpx;
|
2025-04-14 15:59:06 +08:00
|
|
|
margin-left: 30rpx;
|
|
|
|
margin-right: 30rpx;
|
|
|
|
border-bottom-left-radius: 10rpx;
|
|
|
|
border-bottom-right-radius: 10rpx;
|
2025-04-30 16:19:07 +08:00
|
|
|
background-color: var(--white-color);
|
2025-03-21 18:05:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.container-title {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2025-04-14 15:59:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.title-box {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
padding: 0rpx 30rpx;
|
2025-03-21 18:05:54 +08:00
|
|
|
}
|
|
|
|
|
2025-05-06 17:55:29 +08:00
|
|
|
.msg-info-box {
|
|
|
|
width: 32rpx;
|
|
|
|
height: 32rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notice-point {
|
|
|
|
width: 8rpx;
|
|
|
|
height: 8rpx;
|
|
|
|
border-radius: 2rpx;
|
|
|
|
background-color: var(--red-color);
|
|
|
|
}
|
|
|
|
|
2025-03-21 18:05:54 +08:00
|
|
|
.title-func {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.create-btn {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2025-03-24 18:05:54 +08:00
|
|
|
flex: 2.5;
|
2025-04-29 17:38:52 +08:00
|
|
|
background-color: var(--btn-primary-color);
|
|
|
|
color: var(--text-brown-color);
|
2025-03-26 18:15:07 +08:00
|
|
|
border-radius: 10rpx;
|
2025-04-29 17:38:52 +08:00
|
|
|
font-weight: bold;
|
2025-03-26 18:15:07 +08:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.create-btn:active {
|
2025-04-29 17:38:52 +08:00
|
|
|
background-color: var(--btn-primary-color-active);
|
2025-03-21 18:05:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.buy-btn {
|
|
|
|
margin-left: 20rpx;
|
2025-03-26 18:15:07 +08:00
|
|
|
line-height: 78px;
|
|
|
|
width: 80px;
|
|
|
|
height: 78px;
|
|
|
|
border-radius: 4px;
|
2025-04-29 17:38:52 +08:00
|
|
|
background-color: var(--btn-green-color);
|
2025-03-26 18:15:07 +08:00
|
|
|
color: rgba(255, 255, 255, 1);
|
|
|
|
font-size: 18px;
|
2025-03-21 18:05:54 +08:00
|
|
|
text-align: center;
|
2025-03-26 18:15:07 +08:00
|
|
|
font-family: PingFangSC-regular;
|
|
|
|
}
|
|
|
|
|
|
|
|
.buy-btn:active {
|
2025-04-29 17:38:52 +08:00
|
|
|
background-color: var(--btn-green-color-active);
|
2025-03-21 18:05:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.notice-box {
|
2025-04-30 16:19:07 +08:00
|
|
|
background-color: var(--btn-primary-color);
|
2025-03-21 18:05:54 +08:00
|
|
|
margin-top: 20rpx;
|
2025-04-08 14:36:56 +08:00
|
|
|
border-radius: 3px;
|
2025-03-26 18:15:07 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
padding: 5px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notice-box .icon {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notice-box .txt {
|
|
|
|
height: 20px;
|
|
|
|
line-height: 17px;
|
2025-04-30 16:19:07 +08:00
|
|
|
color: var(--text-brown-color);
|
2025-03-26 18:15:07 +08:00
|
|
|
font-size: 12px;
|
|
|
|
text-align: left;
|
|
|
|
line-height: 20px;
|
|
|
|
font-family: PingFangSC-light;
|
|
|
|
margin-left: 15px;
|
2025-03-21 18:05:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.container-box {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2025-04-14 15:59:06 +08:00
|
|
|
padding: 20rpx;
|
|
|
|
border-top-left-radius: 10rpx;
|
|
|
|
border-top-right-radius: 10rpx;
|
2025-03-21 18:05:54 +08:00
|
|
|
margin-top: 20rpx;
|
2025-06-19 17:01:49 +08:00
|
|
|
background-color: var(--white-color);
|
2025-04-14 15:59:06 +08:00
|
|
|
box-shadow: 0rpx -6rpx 6rpx 0rpx rgba(206, 206, 206, 0.1);
|
2025-03-21 18:05:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.list-title-box {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
2025-04-14 15:59:06 +08:00
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-line {
|
2025-04-22 14:26:58 +08:00
|
|
|
width: 16rpx;
|
|
|
|
height: 34rpx;
|
|
|
|
border-radius: 34rpx;
|
2025-04-29 17:38:52 +08:00
|
|
|
background-color: var(--primary-color);
|
2025-03-21 18:05:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.list-title-txt {
|
2025-03-26 18:15:07 +08:00
|
|
|
line-height: 23px;
|
2025-04-29 17:38:52 +08:00
|
|
|
color: var(--text-color);
|
2025-03-26 18:15:07 +08:00
|
|
|
font-size: 16px;
|
|
|
|
font-family: TaipeiHei-bold;
|
|
|
|
font-weight: bold;
|
2025-04-14 15:59:06 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2025-03-21 18:05:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.list-title-btns {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
2025-03-24 18:05:54 +08:00
|
|
|
font-size: 28rpx;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-select {
|
2025-03-26 18:15:07 +08:00
|
|
|
line-height: 20px;
|
2025-04-29 17:38:52 +08:00
|
|
|
background-color: var(--primary-color-light);
|
|
|
|
color: var(--primary-color);
|
2025-03-26 18:15:07 +08:00
|
|
|
font-size: 14px;
|
|
|
|
text-align: center;
|
|
|
|
padding: 5px;
|
2025-04-29 17:38:52 +08:00
|
|
|
border: 1px solid var(--primary-color-light);
|
2025-03-24 18:05:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-normal {
|
2025-03-26 18:15:07 +08:00
|
|
|
line-height: 20px;
|
2025-04-29 17:38:52 +08:00
|
|
|
background-color: var(--white-color);
|
|
|
|
color: var(--text-color);
|
2025-03-26 18:15:07 +08:00
|
|
|
font-size: 14px;
|
|
|
|
text-align: center;
|
2025-04-29 17:38:52 +08:00
|
|
|
border: 1px solid var(--divider-color);
|
2025-03-26 18:15:07 +08:00
|
|
|
padding: 5px;
|
2025-03-21 18:05:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.list-tabs {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab-select {
|
2025-03-24 18:05:54 +08:00
|
|
|
white-space: nowrap;
|
2025-03-26 18:15:07 +08:00
|
|
|
line-height: 17px;
|
|
|
|
border-radius: 2px;
|
2025-04-29 17:38:52 +08:00
|
|
|
background-color: var(--btn-primary-color);
|
|
|
|
color: var(--text-brown-color);
|
2025-03-26 18:15:07 +08:00
|
|
|
font-size: 12px;
|
|
|
|
text-align: center;
|
|
|
|
padding: 2px 5px;
|
2025-03-24 18:05:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.tab-normal {
|
2025-03-26 18:15:07 +08:00
|
|
|
line-height: 17px;
|
|
|
|
border-radius: 2px;
|
|
|
|
background-color: rgba(248, 248, 248, 1);
|
|
|
|
color: rgba(154, 154, 154, 1);
|
|
|
|
font-size: 12px;
|
2025-03-21 18:05:54 +08:00
|
|
|
text-align: center;
|
|
|
|
white-space: nowrap;
|
2025-03-26 18:15:07 +08:00
|
|
|
padding: 2px 5px;
|
2025-03-21 09:02:29 +08:00
|
|
|
}
|
2025-03-21 18:05:54 +08:00
|
|
|
|
|
|
|
.item-margin {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.item-margin:nth-of-type(n+2) {
|
|
|
|
margin-left: 20rpx;
|
2025-03-21 09:02:29 +08:00
|
|
|
}
|
|
|
|
|
2025-03-21 18:05:54 +08:00
|
|
|
/* list */
|
|
|
|
.list-content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
2025-03-21 09:02:29 +08:00
|
|
|
}
|
|
|
|
|
2025-03-21 18:05:54 +08:00
|
|
|
.list-item {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
2025-04-29 17:38:52 +08:00
|
|
|
background-color: var(--gray-bg-color);
|
2025-03-26 18:15:07 +08:00
|
|
|
border-radius: 2px;
|
|
|
|
padding: 5px;
|
2025-04-14 15:59:06 +08:00
|
|
|
align-items: center;
|
2025-03-21 09:02:29 +08:00
|
|
|
}
|
|
|
|
|
2025-03-21 18:05:54 +08:00
|
|
|
.list-item:nth-of-type(n+2) {
|
|
|
|
margin-top: 20rpx;
|
2025-03-21 09:02:29 +08:00
|
|
|
}
|
|
|
|
|
2025-03-21 18:05:54 +08:00
|
|
|
.item-img {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
position: relative;
|
2025-03-21 09:02:29 +08:00
|
|
|
}
|
|
|
|
|
2025-03-26 18:15:07 +08:00
|
|
|
.item-img .cover {
|
2025-04-14 15:59:06 +08:00
|
|
|
width: 210rpx;
|
|
|
|
height: 136rpx;
|
2025-03-26 18:15:07 +08:00
|
|
|
border-radius: 2px;
|
2025-03-21 09:02:29 +08:00
|
|
|
}
|
|
|
|
|
2025-03-21 18:05:54 +08:00
|
|
|
.item-img-status {
|
|
|
|
text-align: center;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2025-04-14 15:59:06 +08:00
|
|
|
width: 210rpx;
|
2025-03-26 18:15:07 +08:00
|
|
|
font-size: 24rpx;
|
|
|
|
border-bottom-left-radius: 2px;
|
|
|
|
border-bottom-right-radius: 2px;
|
2025-03-21 09:02:29 +08:00
|
|
|
}
|
|
|
|
|
2025-04-14 15:59:06 +08:00
|
|
|
.status-gray {
|
2025-05-09 14:27:59 +08:00
|
|
|
background-color: var(--bg-gray-status-light-color);
|
2025-04-29 17:38:52 +08:00
|
|
|
color: var(--text-color);
|
2025-04-14 15:59:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.status-green {
|
2025-05-09 14:27:59 +08:00
|
|
|
background-color: var(--bg-green-status-light-color);
|
2025-04-29 17:38:52 +08:00
|
|
|
color: var(--text-color);
|
2025-04-14 15:59:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.status-yellow {
|
2025-04-29 17:38:52 +08:00
|
|
|
background-color: var(--primary-color-light);
|
|
|
|
color: var(--text-color);
|
2025-04-14 15:59:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.status-red {
|
2025-05-06 17:55:29 +08:00
|
|
|
background-color: var(--bg-red-deep-color);
|
2025-04-29 17:38:52 +08:00
|
|
|
color: var(--white-color);
|
2025-04-14 15:59:06 +08:00
|
|
|
}
|
|
|
|
|
2025-03-21 18:05:54 +08:00
|
|
|
.item-content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
flex: 1;
|
2025-04-03 10:44:12 +08:00
|
|
|
height: 72px;
|
2025-04-14 15:59:06 +08:00
|
|
|
padding-left: 16rpx;
|
|
|
|
min-width: 0;
|
2025-03-21 09:02:29 +08:00
|
|
|
}
|
2025-03-21 18:05:54 +08:00
|
|
|
|
|
|
|
.item-content-title {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
2025-03-26 18:15:07 +08:00
|
|
|
align-items: center;
|
2025-06-19 17:01:49 +08:00
|
|
|
min-width: 0;
|
2025-03-21 18:05:54 +08:00
|
|
|
}
|
|
|
|
|
2025-03-26 18:15:07 +08:00
|
|
|
|
2025-03-21 18:05:54 +08:00
|
|
|
.project-name {
|
2025-04-30 16:19:07 +08:00
|
|
|
color: var(--text-color);
|
2025-03-26 18:15:07 +08:00
|
|
|
font-size: 14px;
|
|
|
|
text-align: left;
|
|
|
|
font-weight: bold;
|
|
|
|
flex: 1;
|
2025-04-14 15:59:06 +08:00
|
|
|
display: block;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2025-03-21 18:05:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.project-status {
|
2025-04-29 17:38:52 +08:00
|
|
|
font-size: 24rpx;
|
2025-04-30 16:19:07 +08:00
|
|
|
color: var(--text-color);
|
2025-04-29 17:38:52 +08:00
|
|
|
font-weight: bold;
|
2025-04-03 10:44:12 +08:00
|
|
|
flex: .3;
|
|
|
|
text-align: center;
|
2025-04-14 15:59:06 +08:00
|
|
|
white-space: nowrap;
|
2025-03-21 18:05:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.project-aff {
|
2025-04-30 16:19:07 +08:00
|
|
|
color: var(--text-color);
|
2025-03-26 18:15:07 +08:00
|
|
|
margin-top: 2px;
|
|
|
|
font-size: 13px;
|
2025-03-21 18:05:54 +08:00
|
|
|
display: flex;
|
2025-03-26 18:15:07 +08:00
|
|
|
flex-direction: row;
|
2025-03-21 18:05:54 +08:00
|
|
|
justify-content: flex-start;
|
2025-03-26 18:15:07 +08:00
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-aff .icon {
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-aff .txt {
|
|
|
|
text-align: left;
|
|
|
|
margin-left: 3px;
|
2025-03-21 18:05:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.project-btns {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
2025-03-26 18:15:07 +08:00
|
|
|
align-items: flex-end;
|
2025-03-21 18:05:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.project-create-time {
|
|
|
|
font-size: 26rpx;
|
2025-04-29 17:38:52 +08:00
|
|
|
color: var(--text-color);
|
2025-03-21 18:05:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.project-btn {
|
2025-04-14 15:59:06 +08:00
|
|
|
font-size: 24rpx;
|
2025-04-29 17:38:52 +08:00
|
|
|
background-color: var(--primary-color);
|
2025-03-26 18:15:07 +08:00
|
|
|
color: white;
|
2025-04-03 10:44:12 +08:00
|
|
|
padding: 2px 10px;
|
2025-03-26 18:15:07 +08:00
|
|
|
border-radius: 10rpx;
|
|
|
|
}
|
|
|
|
|
2025-04-03 10:44:12 +08:00
|
|
|
.project-btn:active {
|
2025-04-29 17:38:52 +08:00
|
|
|
background-color: var(--primary-color-active);
|
2025-04-03 10:44:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.project-re-btn {
|
|
|
|
font-size: 12px;
|
2025-04-29 17:38:52 +08:00
|
|
|
background-color: var(--red-color);
|
2025-04-03 10:44:12 +08:00
|
|
|
color: white;
|
|
|
|
padding: 2px 5px;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-re-btn:active {
|
2025-04-29 17:38:52 +08:00
|
|
|
background-color: var(--red-color-light);
|
2025-04-03 10:44:12 +08:00
|
|
|
}
|
|
|
|
|
2025-03-26 18:15:07 +08:00
|
|
|
.project-btn-no {
|
|
|
|
font-size: 28rpx;
|
2025-04-29 17:38:52 +08:00
|
|
|
background-color: var(--gray-color);
|
2025-03-21 18:05:54 +08:00
|
|
|
color: white;
|
2025-03-26 18:15:07 +08:00
|
|
|
padding: 8rpx 30rpx 8rpx 30rpx;
|
|
|
|
border-radius: 10rpx;
|
|
|
|
}
|
|
|
|
|
2025-03-28 18:36:17 +08:00
|
|
|
|
|
|
|
.marquee-container {
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
2025-03-31 18:23:29 +08:00
|
|
|
margin-left: 5px;
|
2025-03-28 18:36:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.marquee-text {
|
|
|
|
display: inline-block;
|
2025-04-24 18:46:40 +08:00
|
|
|
animation: marquee 25s linear infinite;
|
2025-04-29 17:38:52 +08:00
|
|
|
color: var(--text-brown-color);
|
2025-04-22 14:26:58 +08:00
|
|
|
font-size: 24rpx;
|
2025-03-28 18:36:17 +08:00
|
|
|
margin-left: 15px;
|
2025-04-18 11:29:05 +08:00
|
|
|
transform: translateX(100%);
|
2025-03-28 18:36:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes marquee {
|
|
|
|
0% {
|
2025-04-24 18:46:40 +08:00
|
|
|
transform: translateX(0%);
|
2025-03-28 18:36:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: translateX(-100%);
|
|
|
|
}
|
2025-04-03 10:44:12 +08:00
|
|
|
}
|
|
|
|
|
2025-04-03 17:40:39 +08:00
|
|
|
.custom-dialog {
|
2025-06-19 17:01:49 +08:00
|
|
|
background-color: var(--divider-color);
|
2025-04-03 17:40:39 +08:00
|
|
|
}
|
|
|
|
|
2025-04-03 10:44:12 +08:00
|
|
|
.download-item {
|
|
|
|
display: flex;
|
2025-06-19 17:01:49 +08:00
|
|
|
flex-direction: column;
|
2025-04-29 17:38:52 +08:00
|
|
|
background-color: var(--white-color);
|
2025-06-19 17:01:49 +08:00
|
|
|
border-radius: 15rpx;
|
|
|
|
box-shadow: 0rpx 0rpx 0rpx 5rpx var(--bg-gray-input-color);
|
|
|
|
padding: 30rpx;
|
2025-04-03 17:40:39 +08:00
|
|
|
}
|
|
|
|
|
2025-06-19 17:01:49 +08:00
|
|
|
.download-item:nth-of-type(n+2),
|
|
|
|
.download-item:nth-last-of-type(n+2) {
|
|
|
|
margin-top: 20rpx;
|
2025-04-03 10:44:12 +08:00
|
|
|
}
|
2025-04-08 14:36:56 +08:00
|
|
|
|
|
|
|
.download-item:last-child {
|
2025-04-07 18:00:30 +08:00
|
|
|
margin-bottom: 80px;
|
|
|
|
}
|
2025-04-03 10:44:12 +08:00
|
|
|
|
|
|
|
.download-title {
|
2025-04-03 17:40:39 +08:00
|
|
|
display: flex;
|
2025-06-19 17:01:49 +08:00
|
|
|
flex-direction: row;
|
2025-04-03 17:40:39 +08:00
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.download-title-txt {
|
2025-06-19 17:01:49 +08:00
|
|
|
font-size: 32rpx;
|
2025-04-03 10:44:12 +08:00
|
|
|
font-weight: bold;
|
2025-06-19 17:01:49 +08:00
|
|
|
margin-left: 15rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.download-item-desc {
|
|
|
|
font-size: 24rpx;
|
|
|
|
margin-top: 10rpx;
|
2025-04-03 10:44:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.download-btn-box {
|
|
|
|
display: flex;
|
2025-06-19 17:01:49 +08:00
|
|
|
flex-direction: row;
|
2025-04-03 10:44:12 +08:00
|
|
|
justify-content: space-between;
|
2025-04-03 17:40:39 +08:00
|
|
|
align-items: center;
|
2025-06-19 17:01:49 +08:00
|
|
|
padding: 30rpx 0rpx 0rpx 0rpx;
|
2025-04-03 10:44:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.download-btn {
|
2025-04-03 17:40:39 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2025-06-19 17:01:49 +08:00
|
|
|
justify-content: center;
|
2025-04-03 17:40:39 +08:00
|
|
|
align-items: center;
|
2025-06-19 17:01:49 +08:00
|
|
|
padding: 15rpx;
|
2025-04-03 10:44:12 +08:00
|
|
|
border-radius: 5px;
|
2025-06-19 17:01:49 +08:00
|
|
|
flex: 1;
|
2025-04-03 10:44:12 +08:00
|
|
|
}
|
|
|
|
|
2025-06-19 17:01:49 +08:00
|
|
|
.download-btn:nth-child(2) {
|
|
|
|
margin-left: 40rpx;
|
2025-04-03 10:44:12 +08:00
|
|
|
}
|
|
|
|
|
2025-06-19 17:01:49 +08:00
|
|
|
.download-btn.blue {
|
|
|
|
background-color: var(--bg-blue-shallow-color);
|
|
|
|
color: var(--text-blue-color);
|
2025-04-03 10:44:12 +08:00
|
|
|
}
|
|
|
|
|
2025-06-19 17:01:49 +08:00
|
|
|
.download-btn.gray {
|
|
|
|
background-color: var(--bg-gray-input-light-color);
|
|
|
|
color: var(--text-brown-color);
|
|
|
|
}
|
2025-04-03 17:40:39 +08:00
|
|
|
|
2025-06-19 17:01:49 +08:00
|
|
|
.download-btn.red {
|
|
|
|
background-color: var(--bg-red-shallow-color);
|
|
|
|
color: var(--text-red-color);
|
2025-04-03 10:44:12 +08:00
|
|
|
}
|
|
|
|
|
2025-06-19 17:01:49 +08:00
|
|
|
.download-btn-txt {
|
|
|
|
font-size: 24rpx;
|
|
|
|
text-align: center;
|
|
|
|
margin-left: 10rpx;
|
|
|
|
}
|
2025-04-03 10:44:12 +08:00
|
|
|
|
2025-06-19 17:01:49 +08:00
|
|
|
.download-btn:active {
|
|
|
|
background-color: #d1d1d0;
|
2025-04-03 10:44:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-06-19 17:01:49 +08:00
|
|
|
|
|
|
|
|
|
|
|
.bg-blue {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background-color: var(--bg-blue-shallow-color);
|
|
|
|
width: 72rpx;
|
|
|
|
height: 72rpx;
|
|
|
|
border-radius: 15rpx;
|
2025-04-03 10:44:12 +08:00
|
|
|
}
|
|
|
|
|
2025-06-19 17:01:49 +08:00
|
|
|
.bg-yellow {
|
2025-04-03 10:44:12 +08:00
|
|
|
display: flex;
|
2025-06-19 17:01:49 +08:00
|
|
|
flex-direction: column;
|
2025-04-03 10:44:12 +08:00
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2025-06-19 17:01:49 +08:00
|
|
|
background-color: var(--bg-primary-shallow-color);
|
|
|
|
width: 72rpx;
|
|
|
|
height: 72rpx;
|
|
|
|
border-radius: 15rpx;
|
2025-04-03 10:44:12 +08:00
|
|
|
}
|
|
|
|
|
2025-06-19 17:01:49 +08:00
|
|
|
.bg-green {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background-color: var(--bg-green-light-color);
|
|
|
|
width: 72rpx;
|
|
|
|
height: 72rpx;
|
|
|
|
border-radius: 15rpx;
|
2025-04-03 10:44:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-06-19 17:01:49 +08:00
|
|
|
|
|
|
|
.bg-gray {
|
|
|
|
background-color: var(--bg-gray-input-color);
|
|
|
|
}
|
|
|
|
|
2025-04-03 10:44:12 +08:00
|
|
|
.download-desc {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2025-06-19 17:01:49 +08:00
|
|
|
background-color: var(--white-color);
|
|
|
|
padding: 30rpx;
|
|
|
|
border-radius: 15rpx;
|
|
|
|
margin-top: 20rpx;
|
2025-04-03 10:44:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.link-title {
|
2025-06-19 17:01:49 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 28rpx;
|
2025-04-03 10:44:12 +08:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2025-06-19 17:01:49 +08:00
|
|
|
.link-box {
|
|
|
|
background-color: var(--bg-gray-input-light-color);
|
|
|
|
border-radius: 15rpx;
|
|
|
|
padding: 10rpx;
|
|
|
|
margin-top: 10rpx;
|
|
|
|
}
|
|
|
|
|
2025-04-03 10:44:12 +08:00
|
|
|
.link {
|
|
|
|
margin-top: 5px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
word-break: break-all;
|
|
|
|
width: 85vw;
|
|
|
|
font-size: 14px;
|
2025-06-19 17:01:49 +08:00
|
|
|
color: var(--text-blue-color);
|
2025-04-03 10:44:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.custom-tips {
|
|
|
|
margin-top: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hint {
|
|
|
|
font-size: 14px;
|
|
|
|
text-align: center;
|
2025-04-29 17:38:52 +08:00
|
|
|
color: var(--primary-color);
|
2025-04-03 10:44:12 +08:00
|
|
|
font-weight: bold;
|
2025-04-07 18:00:30 +08:00
|
|
|
}
|
2025-06-19 17:01:49 +08:00
|
|
|
|
|
|
|
.download-notes {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
border-left: 8rpx solid var(--blue-color);
|
|
|
|
border-radius: 5rpx;
|
|
|
|
background-color: var(--bg-blue-shallow-color);
|
|
|
|
font-size: 24rpx;
|
|
|
|
margin-bottom: 10rpx;
|
|
|
|
padding: 20rpx;
|
|
|
|
box-shadow: 0rpx 0rpx 0rpx 5rpx var(--divider-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.notes-title-box {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
color: var(--text-blue-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.notes-content-box {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
color: var(--text-blue-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.weui-half-screen-dialog__ft {
|
|
|
|
height: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.weui-half-screen-dialog__bd {
|
|
|
|
padding-bottom: 20rpx;
|
|
|
|
}
|