1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- @charset "UTF-8";
- /* 需要放到文件最上面 */
- /* 水平间距 */
- /* 水平间距 */
- /*
- 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
- */
- /* 水平间距 */
- .detail {
- padding: 30rpx;
- }
- .detail .detail-box {
- background-color: #ffffff;
- border-radius: 16rpx;
- box-shadow: 0px 1px 12px rgba(3, 3, 3, 0.08);
- padding: 30rpx;
- position: relative;
- margin-bottom: 30rpx;
- }
- .detail .sub-title {
- display: flex;
- align-items: center;
- margin-left: -8rpx;
- }
- .detail .sub-title .sub-label {
- font-size: 32rpx;
- font-weight: 600;
- margin-left: 14rpx;
- }
- .detail .title-box {
- padding-left: 90rpx;
- position: relative;
- }
- .detail .title-box .title-icon {
- width: 70rpx;
- height: 70rpx;
- text-align: center;
- line-height: 70rpx;
- background: #08979c;
- border-radius: 70rpx;
- position: absolute;
- left: 0;
- top: 50%;
- margin-top: -35rpx;
- }
- .detail .title-box .title {
- font-size: 32rpx;
- font-weight: 600;
- }
- .detail .title-box .date {
- font-size: 24rpx;
- color: #8c8c8c;
- }
- .detail .other {
- margin-top: 20rpx;
- }
- .detail .other .item {
- margin-top: 10rpx;
- }
- .detail .other .label {
- color: #8c8c8c;
- font-size: 24rpx;
- }
- .detail .other .value {
- margin-top: 6rpx;
- font-weight: 400;
- }
- .detail .state {
- margin-top: 20rpx;
- display: flex;
- justify-content: space-between;
- }
- .detail .state .create {
- height: 48rpx;
- border-radius: 48rpx;
- border: 1px solid #08979c;
- display: flex;
- align-items: center;
- color: #08979c;
- padding: 0 10rpx;
- }
- .detail .state .create .name {
- font-size: 24rpx;
- flex: 1;
- max-width: 150rpx;
- min-width: 70rpx;
- overflow: hidden;
- margin-left: 10rpx;
- line-height: 36rpx;
- padding-right: 10rpx;
- }
|