123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- @import "../../../../src/theme.less";
- :host {
- ::ng-deep .ant-checkbox-wrapper + .ant-checkbox-wrapper{
- margin-left: 0!important;
- }
- .required{
- position: relative;
- &::before{
- font-family: icon_transport;
- font-size: 10px;
- content:'\e606';
- color: red;
- position: absolute;
- right: 100%;
- top: 50%;
- transform: translateY(-50%);
- margin-right: 2px;
- }
- }
- // 撤回工单
- .recallOrder {
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.4);
- z-index: 9999999;
- .modalBody {
- width: 350px;
- height: 220px;
- background: #fff;
- border-radius: 5px;
- padding: 10px 20px;
- color: #333;
- .title {
- width: 100%;
- text-align: center;
- font-size: 18px;
- position: relative;
- i {
- position: absolute;
- right: 0;
- top: 0;
- font-size: 20px;
- color: #666;
- cursor: pointer;
- padding: 0 5px;
- }
- }
- .content {
- width: 310px;
- height: 117px;
- background: #f9fafb;
- border: 1px solid #e5e9ed;
- border-radius: 5px;
- overflow: hidden;
- margin-top: 12px;
- div {
- text-align: center;
- margin: 0;
- &.icon {
- margin-top: 17px;
- i {
- color: #ff3b53;
- font-size: 30px !important;
- &.transport-wenhao {
- color: #f5a523;
- }
- }
- }
- &.defeat {
- color: #333;
- font-size: 18px;
- }
- &:nth-child(3) {
- font-size: 14px;
- color: #666;
- }
- }
- .conditions {
- height: 400px;
- overflow: auto;
- padding: 16px 20px;
- div {
- text-align: left;
- margin-bottom: 8px;
- }
- }
- }
- .btns {
- button {
- margin-top: 10px;
- margin-left: 5px;
- }
- .recDelBtn {
- width: 115px;
- }
- }
- }
- }
- // 初始化设置
- .init {
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.4);
- z-index: 99;
- .con {
- width: 832px;
- height: auto;
- background: #fff;
- border-radius: 5px;
- padding: 10px 20px;
- color: #333;
- .content {
- width: 100%;
- height: auto;
- .scopeTab{
-
- .tips{
- width: 100%;
- margin-top: 20px;
- font-weight: 500;
- }
- .scopeBox{
- display: flex;
- height: 60px;
- border-bottom: 1px solid #D9D9D9;
- .scopeTabItem{
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- border-right: 1px solid #D9D9D9;
- background-color: #fff;
- cursor: pointer;
- &:last-of-type{
- border-right: none;
- }
- &.active{
- background-color: #F0F6ED;
- }
- }
- }
- }
- .remin {
- font-size: 14px;
- color: #666;
- line-height: 48px;
- border-bottom: 1px solid #e5e9ed;
- }
- .boxes {
- color: #333;
- padding: 8px 12px;
- & > div:nth-child(1) {
- color: #333;
- text-align: left;
- }
- & > div:nth-child(2) {
- color: #666;
- text-align: left;
- }
- }
- }
- }
- }
- }
|