123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /* components/step/step.wxss */
- /* 垂直方向布局,水平居中 **/
- .flex-column {
- display: flex;
- flex-flow: column nowrap;
- align-items: center;
- justify-content: left;
- }
- /* 水平方向布局,垂直居中 **/
- .flex-row {
- display: flex;
- flex-flow: row nowrap;
- align-items: center;
- justify-content: center;
- }
- .ct-wx-step{
- background: #FFFFFF;
- padding: 12px 0px;
- }
- .ct-wx-cell-list{
- padding: 0 12px;
- }
- .ct-wx-cell-line{
- padding-left: 12px;
- color: #666666;
- font-size: 12px;
- margin-left: 5px;
- border-left: 1px solid #E4E4E4;
- height: auto;
- }
- .last{
- color: #333333;
- border-left: 1px solid #FFB93F;
- }
- .default{
- background: #E4E4E4;
- }
- .piont-last{
- background: #FFB93F;
- }
- .ct-wx-cell-point{
- border-radius: 20%;
- width: 10px;
- height: 10px;
- border-radius: 50%;
- opacity: 1;
- }
|