/*----------------内容区域----------------*/
.wrap {
    max-width: 1920px;
    height: 1635px;
    padding-left: 173px;
    /*overflow-y: scroll;*/
    /*overflow-x: auto;*/
}


/*----------------内容区域----------------*/
.main-box {
    max-width: 1747px;
}


/*----------------内容区域----------------*/
.content {
    padding-top: 27px;
    width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.content-main {
    max-width: 997px;
}

/*----------------上传BOM----------------*/
.content-pricing{
    border-radius: 20px;
    height: 352px;
    background-image: url("/static/image/计价模块背景@2x.png");
    padding: 18px 23px;
    box-sizing: border-box;
}

.pricing-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.pricing-title-left {
    width: 198px;
    height: 22px;
    font-weight: bold;
    font-size: 22px;
    color: #333333;
}

.pricing-title-right {
    width: 248px;
    height: 14px;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
}

.pricing-from {
    margin-top: 12px;
    width: 950px;
    height: 278px;
    background: #FFFFFF;
    box-shadow: 0px 5px 35px 0px rgba(204,204,204,0.51);
    border-radius: 10px;
    border: 2px solid #FFFFFF;
}

.download {
    height: 14px;
    font-weight: 400;
    font-size: 14px;
    color: #FC8200;
    text-align: right;
    margin-right: 20px;
    margin-top: 20px;
    cursor: pointer;
}

.pricing-button {
    width: 227px;
    height: 56px;
    background: linear-gradient(90deg, #FFA205, #FF7201);
    border-radius: 10px;

    display: flex;
    align-items: center; /* 垂直居中 */

    margin: 0 auto;
    margin-top: 42px;
    cursor: pointer;
}

.button-icon {
    width: 33px;
    height: 28px;
    margin-left: 51px;
}

.button-text {
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
    margin-left: 14px;
}

.pricing-desc {
    margin-top: 24px;
    text-align: center;
    height: 20px;
    font-weight: bold;
    font-size: 20px;
    color: #333333;
}

.pricing-remark {
    margin-top: 11px;
    text-align: center;
    height: 14px;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
}

/*----------------配单流程----------------*/
.process-title {
    margin-top: 37px;
    width: 153px;
    height: 22px;
    font-weight: bold;
    font-size: 22px;
    color: #333333;
}


.process-detail {
    margin-top: 21px;

    width: 997px;
    height: 111px;
    background: #FFFFFF;
    box-shadow: 0px 1px 10px 0px rgba(204,204,204,0.31);
    border-radius: 10px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.process-image {
    width: 799.5px;
    height: 58px;
}

/*----------------配单服务----------------*/
.content-service {
    margin-top: 53px;
    margin-bottom: 76px;
}

.service-title {
    width: 153px;
    height: 22px;
    font-weight: bold;
    font-size: 22px;
    color: #333333;
}

.service-detail {
    margin-top: 21px;
}

.service-detail ul {
    display: flex;
    flex-wrap: wrap;
    gap: 29px;
}

.service-detail li {
    flex: 1 1 calc(50% - 29px); /* 每个格子占据三分之一的空间，减去间隙 */
    box-sizing: border-box; /* 包括padding和border在内的宽度计算 */

    height: 194px;
    position: relative;
}

.service-desc {
    position: absolute;
    left: 24px;
    bottom: 14px;
}

.service-desc1 {
    font-weight: bold;
    font-size: 24px;
    color: #FFFFFF;
    text-shadow: 0px 2px 8px rgba(86,86,86,0.19);
}

.service-desc2 {
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;
}

/*----------------广告----------------*/
.ad {
    width: 282px;
    height: 499px;
}

/*----------------弹窗表单----------------*/
.popup-form-item {
    display: flex;
    justify-content: flex-start;

    margin-bottom: 20px;
}

.popup-form-lable {
    width: 120px;
    text-align: right;
    margin-right: 5px;
    display: inline-block;
    line-height: 30px;
    vertical-align: top;
}

.popup-form-input {
    height: 30px;
    width: 300px;
    line-height: 30px;
    padding: 4px 6px;
    border: 1px solid #ddd;
}

.close-popup {
    text-align: center;
    width: 100px;
    height: 40px;
    border: 1px solid #DFE1E6;
    border-radius: 4px;
    display: inline-block;
    line-height: 40px;
    cursor: pointer;
}

.save-popup {
    text-align: center;
    width: 100px;
    height: 40px;
    background: #FFA205;
    border: 1px solid #FFA205;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    line-height: 40px;
    cursor: pointer;
}

#jump-cart {
    width: 150px;
    height: 43px;
    background: #FC8200;
    border-radius: 4px;
    color: #fff;
    text-align: center;
    line-height: 43px;
    cursor: pointer;
}