12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- .detail-box {
- margin: -30rpx 20rpx 20rpx 20rpx;
- .detail-item {
- display: flex;
- flex-direction: column;
- border-radius: $card-border-radius;
- margin-bottom: 20rpx;
- background-color: #fff;
- padding: 20rpx;
- .index{
- height: 36rpx;
- width: 10rpx;
- border-radius: 100rpx;
- margin-left: -5rpx;
- }
- .name {
- font-size: 36rpx;
- line-height: 36rpx;
- font-weight: bold;
- margin-left: 15rpx;
- margin-bottom: 4rpx;
- }
- }
- .content-box {
- display: flex;
- flex-direction: column;
- .subtitle {
- font-size: 26rpx;
- color: $color-subtitle;
- }
- .subtitle-info{
- font-size: 30rpx;
- font-weight: bold;
- color: $color-title;
- }
-
- .content-detail-box{
- margin: 40rpx 0 0 0;
- padding: 20rpx;
- background-color: #f6f6f6;
- border-radius: 10rpx;
- .title-box{
- position: relative;
- top: -35rpx;
- width:fit-content;
- height: 36rpx;
- border-radius: 10rpx;
- padding: 5rpx 20rpx;
- }
- .content-detail {
- font-size: 30rpx;
- font-weight: bold;
- color: $color-title;
- word-break: break-all;
- }
- .option-box{
- display: flex;
- align-items: center;
- justify-content: center;
- width:120rpx;
- height: 50rpx;
- border-radius: 10rpx;
- padding: 5rpx;
- }
- .content-subtitle {
- font-size: 25rpx;
- font-weight: bold;
- color: #FFF;
- }
- }
- }
- }
- .flex {
- display: flex;
- align-items: center;
- }
- .block-tag-box {
- border-radius: 6rpx;
- border: 1rpx solid $color-mixblue;
- padding: 5rpx 14rpx;
- .block-tag {
- font-size: 22rpx;
- color: $color-mixblue;
- }
- }
|