12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- .careful-view{
- position: relative;
- width: auto;
- box-sizing: border-box;
- z-index: 12;
- }
- .grid{
- display: grid;
- grid-template-columns: repeat(2, 1fr);;
- grid-row-gap: 20px;
- grid-column-gap:50px;
- }
- .careful-list{
- width: 100%;
- max-height:600px;
- margin-top:30px;
- }
- .item-top{
- width: 100%;
- }
- .scroll-view{
- overflow-y: auto;
- }
- .careful-item .item-top {
- font-family: "Verdana Bold";
- font-weight: 700;
- font-size: 28px;
- color: #585858;
- .index-view{
- // font-family: "DINCondensed-Bold";
- font-family: "Verdana";
- margin-right:10px;
- }
- .name-view{
- max-width:150px;
- margin-right:15px;
- }
- .percent-view{
- font-family: "DINCondensed-Bold";
- opacity: 0.3;
- font-size:24px;
- }
-
- .area-view{
- font-family: "DINCondensed-Bold";
- font-weight: 700;
- color: #8D8D8D;
- font-size:26px;
- }
- }
- .item-top.active {
- color: #ff9f40;
- .area-view{
- color: #f5891c;
- }
- }
- .item-slider{
- width: 100%;
- .slider-style{
- margin:20px 16px
- }
- }
- .ai-btn{
- width: 80px;
- height: 84px;
- border-radius: 8px;
- background-image:linear-gradient(124deg, rgba(245, 201, 82, 0.2) 0%, rgba(239, 149, 57, 0.2) 100%);
- font-weight: 400;
- font-size: 24px;
- color: #f59d40;
- }
- /deep/ .el-slider__runway{
- .el-slider__bar{
- background-color: #A3A3A3;
- }
- .el-slider__button{
- background: #A5A5A5;
- border: 4px solid #fff;
- }
- }
- .active{
- /deep/ .el-slider__runway{
- .el-slider__bar{
- background-color: #FFAD5C;
- }
- .el-slider__button{
- background: #FF9B0A;
- border: 4px solid #fff;
- }
- }
- }
-
|