12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /* pages/details/details.wxss */
- .bground{
- background:#000;
- color:white;
- height:100%;
- width:100%;
- position:fixed;
- top:0;
- left:0;
- right:0;
- }
- .top{
- width:95%;
- height:18%;
- background:#1C1C1C;
- position:relative;
- /* top:50px; */
- margin:5% auto;
- border-radius:3px;
- }
- .topTitle{
- padding:10px;
- }
- .topText{
- padding:10px;
- position:absolute;
- bottom:5px;
- }
- .titleBig{
- font-size:1.8rem;
- font-weight:bold;
- }
- .titleSmall{
- color:#78777D;
- margin-left:30px;
- }
- .line{
- width:100%;
- height:1rpx;
- background:#2C2C2C;
- }
- .textOne{
- font-weight:bold;
- }
- .textTwo{
- color:#DC3329;
- margin-left:20px;
- }
- .middleCharts{
- width:95%;
- height:40%;
- background:#1C1C1C;
- /* position:relative;
- top:50px; */
- margin:5% auto;
- border-radius:3px;
- }
- #mychart{
- margin:0 auto;
- }
- .buttonText{
- width:95%;
- height:20%;
- background:#1C1C1C;
- /* position:relative;
- top:50px; */
- margin:5% auto;
- border-radius:3px;
- }
- .nextText{
- /* width:90%; */
- /* height:5%; */
- background:#1C1C1C;
- border-radius:3px;
- margin:0 auto;
- }
|