| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- .el-card {
- border: 0;
- }
- .goods-box {
- padding-bottom: 60px;
- }
- /* tab切换 start */
- .tabs-box {
- background: #fff;
- position: relative;
- padding: 0 38px;
- margin-bottom: 20px;
- border-radius: 4px;
- }
- .tabs-list {
- height: 48px;
- font-size: 14px;
- white-space: pre;
- margin-bottom: 0;
- font-weight: 700;
- }
- .tabs-list span {
- display: inline-block;
- height: 36;
- line-height: 36px;
- color: #000;
- cursor: pointer;
- margin-right: 30px;
- }
- .tabs-list .tabActive {
- color: #419EFB;
- border-bottom: 2px solid #419EFB;
- }
- /* tab切换 end */
- /* 基础设置 start */
- /* 商品内容 */
- .goods-basic .el-card__header {
- padding: 8px 20px;
- }
- /* 选择商品类型 */
- .select-type {
- position: relative;
- cursor: pointer;
- }
- .type-content {
- border: 1px solid #ededed;
- padding-left: 20px;
- border-radius: 4px;
- overflow: hidden;
- }
- .cont-lf {
- text-align: center;
- font-size: 14px;
- color: #333;
- font-weight: 700;
- }
- .cont-lf p {
- color: #999;
- font-size: 12px;
- font-weight: 400;
- }
- .type-content.active {
- border-color: #419EFB;
- color: #419EFB;
- }
- .type-content.active:after {
- width: 14px;
- height: 14px;
- display: block;
- content: "";
- position: absolute;
- bottom: -6px;
- border-radius: 50%;
- right: -7px;
- background: #419EFB;
- z-index: 10;
- }
- .icon-tick {
- position: absolute;
- right: -6px;
- bottom: -6px;
- z-index: 99;
- color: #fff;
- font-size: 12px;
- }
- /* 基础信息 */
- .el-form-item__label {
- padding-right: 20px;
- }
- .icon-close {
- position: absolute;
- top: -10px;
- left: 66px;
- }
- .more-setting {
- cursor: pointer;
- color: #419EFB;
- }
- /* 基础设置 end */
- /* 营销配置 start */
- /* 营销配置 end */
- /* 底部按钮 */
- .bottom-btns {
- position: fixed;
- width: calc(100% - 200px);
- height: 58px;
- bottom: 0;
- right: 0;
- background-color: #fff;
- z-index: 99;
- }
- .el-card__header {
- padding: 8px 20px;
- }
- .custom-confirm-width{
- width:700px;
- }
- .custom-confirm-width .el-message-box__header{
- text-align: center;
- position: relative;
- padding: 15px 15px 15px;
- border-bottom: 1px solid black;
- font-weight: bold;
- }
- .custom-confirm-width .title{
- font-size: 16px;
- }
- .custom-confirm-width .el-message-box__message{
- padding-top: 50px;
- }
- .custom-confirm-width .el-button--small{
- border-radius: 30px;
- width: 150px;
- }
- .custom-confirm-width .el-message-box__btns{
- padding: 70px 0px 40px;
- text-align: center;
- }
|