| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- .container {
- // position: fixed;
- // right: 0;
- // left: 0;
- // top: 0;
- // bottom: 0;
- // overflow-y: scroll;
- }
- .line {
- width: 100%;
- height: 10px;
- background: #f5f5f5;
- }
- .chart-box {
- padding-bottom: 10px;
- }
- .popup-content {
- width: 100%;
- background: #ffffff;
- border-radius: 12px 12px 0 0;
- .close-btn {
- width: 40px;
- height: 40px;
- line-height: 40px;
- text-align: center;
- position: absolute;
- top: 5px;
- right: 5px;
- i {
- font-size: 15px;
- color: #949494;
- }
- }
- .bl-describe-con {
- padding: 21px 15px;
- .describe-title {
- font-size: 17px;
- color: #000000;
- text-align: center;
- }
- .describe-box {
- margin-top: 20px;
- .describe-tag {
- width: 100%;
- height: 21px;
- border-bottom: 1rpx solid #10aeff;
- span {
- line-height: 21px;
- padding: 0 13px;
- box-sizing: border-box;
- text-align: center;
- transform: skew(-20deg);
- background: #10aeff;
- display: inline-block;
- margin: 1px 0 0 4px;
- i {
- font-size: 14px;
- color: #ffffff;
- transform: skew(20deg);
- display: inline-block;
- }
- }
- }
- .describe-img {
- width: 80px;
- height: 80px;
- border-radius: 12px;
- margin-top: 12px;
- }
- .describe-text {
- width: 100%;
- max-height: 410px;
- overflow-y: scroll;
- font-size: 14px;
- color: #666666;
- margin-top: 12px;
- line-height: 23px;
- }
- }
- }
- }
|