1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- .title {
- font-size: 32px;
- margin-bottom: 16px;
- font-weight: bold;
- line-height: 44px;
- display: flex;
- align-items: center;
- i {
- display: inline-block;
- vertical-align: middle;
- width: 14px;
- height: 14px;
- border-radius: 50%;
- background-color: #4a90e2;
- margin-right: 10px;
- }
- }
- .desc {
- font-size: 30px;
- font-weight: 400;
- color: #4a4a4a;
- }
- .content {
- display: flex;
- padding: 20px;
- align-items: center;
- .left {
- width: 150px;
- margin: 0;
- font-size: 24px;
- font-weight: 400;
- color: #3b3b3b;
- }
- .right {
- flex: 1;
- }
- }
- .orderIcon {
- background: #12ceb3;
- width: 300px;
- position: absolute;
- top: 40px;
- right: -92px;
- text-align: center;
- font-size: 24px;
- transform: rotate(45deg);
- padding: 10px 0;
- color: #fff;
- }
- .pageCard {
- margin-top: 30px;
- overflow: hidden;
- border-radius: 26px;
- box-shadow: 2px 0 8px 0 rgba(0, 0, 0, 0.3);
- border: 1px solid #eee;
- position: relative;
- background: rgb(255, 255, 255);
- }
- .bottom {
- border-top: 1px solid #c0c0c0;
- padding: 38px;
- height: 100%;
- .bottomText {
- font-size: 24px;
- font-weight: 400;
- color: #4a4a4a;
- line-height: 34px;
- text-align: center;
- }
- }
- .btn {
- width: 120px;
- height: 56px;
- background: rgba(245, 166, 35, 0.75);
- border-radius: 5px;
- font-size: 24px;
- font-weight: 400;
- color: #ffffff;
- line-height: 56px;
- text-align: center;
- }
- .table2 {
- :global {
- .ant-table-thead {
- background: rgba(245, 166, 35, 0.14);
- }
- }
- }
|