| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- #review_Email {
- .crm_search {
- .search_action_btn {
- .delete {
- background-color: #a1a1a1;
- }
- .delete.active {
- background-color: #368fec;
- }
- }
- .chooseLang {
- margin-top: 2px;
- margin-right: 10px;
- > span {
- border: 1px solid #dcdfe6;
- padding: 0 8px;
- min-width: 100px;
- display: inline-block;
- height: 32px;
- line-height: 32px;
- box-sizing: border-box;
- text-align: center;
- }
- span.active {
- background-color: #368fec;
- border-color: #368fec;
- color: #ffffff;
- }
- }
- }
- .merchant-search-bar {
- display: flex;
- align-items: center;
- gap: 8px;
- width: 350px; // 或你喜欢的宽度
- margin-bottom: 18px;
- margin-left: 25%;
- }
- .el-table .state {
- display: inline-block;
- min-width: 80px;
- max-width: 150px;
- box-sizing: border-box;
- line-height: 1.5;
- border-radius: 2px;
- padding: 2px 10px;
- color: #ffffff;
- }
- .uploadBox {
- padding: 25px;
- @include bg_gray_7();
- .title {
- display: flex;
- justify-content: space-between;
- .tit {
- font-weight: bold;
- }
- .demo {
- @include font_blue_btn_1();
- }
- }
- .input-all {
- margin: 15px 0;
- }
- .upload {
- display: flex;
- align-items: center;
- }
- .btn-foot {
- text-align: right;
- }
- }
- .crm_verified_info_mask_trading {
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(43, 48, 67, 0.65);
- z-index: 88;
- }
- .business-edit-form {
- .el-form-item {
- margin-bottom: 18px;
- }
- .el-input,
- .el-select,
- .el-date-picker {
- width: 100%;
- }
- .el-form-item__label {
- font-weight: 500;
- }
- .el-row {
- margin-bottom: 0;
- }
- .el-col {
- margin-bottom: 0;
- }
- .custom-options{
- position: absolute;
- width: 100%;
- max-height: 300px;
- overflow-y: auto;
- background: white;
- border: 1px solid #dcdfe6;
- border-top: none;
- z-index: 100;
- box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
- border-radius: 0 0 4px 4px;
- }
- }
- }
- .avatar-uploader .el-upload {
- border: 1px dashed #d9d9d9;
- border-radius: 6px;
- cursor: pointer;
- position: relative;
- overflow: hidden;
- }
- .avatar-uploader .el-upload:hover {
- border-color: #409eff;
- }
- .id-uploader {
- width: 400px;
- height: 200px;
- border-radius: 16px;
- overflow: hidden;
- border: 1px #979797 dashed;
- .avatar {
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- }
- .id-uploader {
- :deep(.el-upload) {
- width: 400px;
- height: 200px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- }
- .id-uploader .el-upload-list__item {
- width: 400px;
- height: 200px;
- }
- .avatar-uploader-icon {
- font-size: 28px;
- color: #8c939d;
- width: 80px;
- height: 80px;
- line-height: 80px;
- text-align: center;
- }
- .avatar {
- width: 80px;
- height: 80px;
- display: block;
- }
|