123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- .navigateTitle {
- width: 100%;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- }
- .titleTime {
- position: absolute;
- left: 2.25rem;
- top: 0.15rem;
- height: 0.5rem;
- font-size: 0.26rem;
- line-height: 0.26rem;
- display: flex;
- align-items: flex-end;
- }
- .title {
- font-size: 0.32rem;
- margin-bottom: 0.16rem;
- font-weight: bold;
- line-height: 0.44rem;
- display: flex;
- align-items: center;
- i {
- display: inline-block;
- vertical-align: middle;
- width: 0.14rem;
- height: 0.14rem;
- border-radius: 50%;
- background-color: #4a90e2;
- margin-right: 0.1rem;
- }
- }
- .desc {
- font-size: 0.3rem;
- font-weight: 400;
- color: #4a4a4a;
- }
- .content {
- display: flex;
- padding: 0.2rem;
- align-items: center;
- .left {
- width: 1.5rem;
- margin: 0;
- font-size: 0.3rem;
- font-weight: 400;
- color: #3b3b3b;
- }
- .right {
- flex: 1;
- }
- }
- .orderIcon {
- background: #12ceb3;
- width: 3rem;
- position: absolute;
- top: 0.4rem;
- right: -0.92rem;
- text-align: center;
- font-size: 0.24rem;
- transform: rotate(45deg);
- padding: 0.1rem 0;
- color: #fff;
- }
- .pageCard {
- padding: 0.2rem;
- padding-bottom: 0;
- margin-top: 0.3rem;
- overflow: hidden;
- border-radius: 0.26rem;
- box-shadow: 0.02rem 0 0.08rem 0 rgba(0, 0, 0, 0.3);
- border: 0.01rem solid #eee;
- background: rgb(255, 255, 255);
- }
- .bottom {
- border-top: 0.01rem solid #c0c0c0;
- padding: 0.38rem;
- height: 100%;
- .bottomText {
- font-size: 0.24rem;
- font-weight: 400;
- color: #4a4a4a;
- line-height: 0.34rem;
- text-align: center;
- }
- }
- .btnOrange {
- width: 1.2rem;
- height: 0.56rem;
- background: rgba(245, 166, 35, 0.75);
- border-radius: 0.05rem;
- font-size: 0.24rem;
- font-weight: 400;
- color: #ffffff;
- line-height: 0.56rem;
- text-align: center;
- }
- .btnBlue {
- width: 1.2rem;
- height: 0.56rem;
- background: rgba(74, 144, 226, 0.75);
- border-radius: 0.05rem;
- font-size: 0.24rem;
- font-weight: 400;
- color: #ffffff;
- line-height: 0.56rem;
- text-align: center;
- }
- .bottomBtn {
- margin: 0.2rem auto 0;
- width: 2.6rem;
- height: 0.46rem;
- background: url('@/assets/smart/btn1.png') no-repeat;
- background-size: 100% 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 0.26rem;
- color: #ffffff;
- &.active {
- i {
- background-image: url('@/assets/smart/btn-arr2.png');
- }
- }
- i {
- flex-shrink: 1;
- width: 0.2rem;
- height: 0.1rem;
- margin-left: 4px;
- background: url('@/assets/smart/btn-arr1.png') no-repeat center;
- background-size: 100% 100%;
- }
- }
- .bottomBtn2 {
- .bottomBtn;
- background-image: url('@/assets/smart/btn2.png');
- }
- .table1 {
- :global {
- .ant-table-thead {
- background: rgb(177, 210, 243);
- }
- .ant-table-thead > tr > th {
- color: #4a4a4a;
- }
- }
- }
- .table2 {
- :global {
- .ant-table-thead {
- background: rgb(251, 222, 174);
- }
- .ant-table-thead > tr > th {
- color: #4a4a4a;
- }
- }
- }
- .taskTable {
- :global {
- .ant-table-thead {
- background: rgba(155, 151, 151, 0.2);
- }
- .ant-table-thead > tr > th {
- color: rgba(59, 59, 59, 1);
- font-weight: 600;
- }
- }
- }
|