.service .box1 {
    padding: 80px 0 120px;
    background-color: #F3F3F3;
}

.service .box1 .box-c {
    display: flex;
    justify-content: space-between;
}

.service .box1 .box-c .l {
    width: 200px;
}

.service .box1 .box-c .l .item:not(:last-child) {
    margin-bottom: 20px;
}

.service .box1 .box-c .l .item {
    line-height: 60px;
    background: #F8F8F8;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 17px;
    font-family: MiSans-Bold;
    font-size: 18px;
    color: #222222;
    transition: all .6s;
}

.service .box1 .box-c .l .item:hover {
    color: #E00011;
}

.service .box1 .box-c .l .item.active {
    background-color: #E00011;
    color: #fff;
}

.service .box1 .box-c .l .item .iconfont {
    font-size: 24px;
}

.service .box1 .box-c .r {
    flex: 1;
    margin-left: 40px;
}

.service .box1 .box-c .r .rBox1 {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 35px 30px 48px;
}

.service .box1 .box-c .r .rBox1 .title {
    font-family: MiSans-Bold;
    font-size: 18px;
    color: #222222;
    line-height: 30px;
}

.service .box1 .box-c .r .rBox1 .title span {
    color: #E00011;
}

.service .box1 .box-c .r .rBox1 .text-box {
    font-size: 16px;
    color: #999999;
    line-height: 30px;
    margin-top: 18px;
}

.service .box1 .box-c .r .rBox2 {
    margin-top: 34px;
}

.service .box1 .box-c .r .rBox2 .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service .box1 .box-c .r .rBox2 li {
    padding: 27px 22px;
    background: #FFFFFF;
    border-radius: 5px;
}

.service .box1 .box-c .r .rBox2 li .text-title {
    font-family: MiSans-Bold;
    font-size: 18px;
    color: #222222;
    line-height: 30px;
}

.service .box1 .box-c .r .rBox2 li .text-des {
    font-size: 16px;
    color: #999999;
    line-height: 30px;
    margin-top: 3px;
}

.service .box1 .box-c .r .rBox1 .btn,
.service .box1 .box-c .r .rBox2 li .btn {
    display: inline-block;
    font-size: 16px;
    color: #999999;
    margin-top: 40px;
    line-height: 38px;
    padding: 0 28px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #DEDEDE;
    transition: all .6s;
}

.service .box1 .box-c .r .rBox1 .btn {
    margin-top: 30px;
}
.service .box1 .box-c .r .rBox1 .btn,
.service .box1 .box-c .r .rBox1 .btn:hover,
.service .box1 .box-c .r .rBox2 li .btn:hover {
    background-color: #E00011;
    border-color: #E00011;
    color: #fff;
}

.form-modal .form-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    border-radius: 5px;
    padding: 30px 30px 50px;
    width: 960px;
    max-width: 94%;
}

.form-modal form {
    max-height: 68vh;
    width: calc(100% + 30px);
    overflow: auto;
    padding-right: 30px;
}

.form-modal .form-content h2 {
    font-family: MiSans-Bold;
    color: #222222;
    line-height: 1;
    margin-bottom: .67em;
}

.form-modal .form-content .item:not(:last-child) {
    margin-bottom: 33px;
}

.form-modal .form-content .input-controls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.form-modal .form-content .input-controls .input-group {
    height: 50px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #DEDEDE;
    display: flex;
    align-items: center;
    padding: 0 14px;
}

.form-modal .form-content .input-controls .input-group1 {
    grid-column: 1/3;
}

.form-modal .form-content .input-controls .input-label {
    line-height: 30px;
    font-family: MiSans;
    margin-bottom: 0;
    margin-right: 14px;
}

.form-modal .form-content .input-controls .input-label span {
    color: #E00011;
}

.form-modal .form-content .input-controls .input-group select,
.form-modal .form-content .input-controls .input-group input {
    flex: 1;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    line-height: 30px;
}

.form-modal .form-content .input-controls .input-group input::placeholder {
    color: #CCCCCC;

}

.form-modal .form-content .select-controls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
}

.form-modal .form-content .item label {
    display: block;
    font-family: MiSans-Bold;
    font-size: 16px;
    color: #222222;
    line-height: 1;
    margin-bottom: 20px;
}

.form-modal .form-content .item label span {
    color: #999999;
    font-family: MiSans;
}

.form-modal .form-content .item .btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.form-modal .form-content .item .btns .btn {
    min-width: 100px;
    padding: 0 20px;
    line-height: 38px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #DEDEDE;
    font-size: 16px;
    color: #666666;
    text-align: center;
    transition: all .6s;
}

.form-modal .form-content .item .btns .btn.active,
.form-modal .form-content .item .btns .btn:hover {
    background: #E00011;
    border-color: #E00011;
    color: #fff;
}

.form-modal .form-content .item .textarea {
    height: 120px;
    width: 100%;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #DEDEDE;
    padding: 18px 24px;
    font-family: MiSans;
    font-weight: 400;
    font-size: 16px;
    color: #333;
    line-height: 30px;
    display: block;
    outline: none;
    resize: none;
}

.form-modal .form-content .item .textarea::placeholder {
    color: #CCCCCC;
}

.form-modal .form-content .upload-section .uploadBox {
    display: flex;
    align-items: center;
}

.form-modal .form-content .upload-section .uploadBtn {
    padding: 0 39px;
    line-height: 50px;
    background: #E00011;
    border-radius: 5px;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
}

.form-modal .form-content .upload-section .uploadList {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-modal .form-content .upload-section .uploadList .pic {
    position: relative;
    border-radius: 5px;
    border: 1px solid #DEDEDE;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-modal .form-content .upload-section .uploadList .pic .deleteBtn {
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(50%, -50%);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E00011;
    color: #fff;
    text-align: center;
    cursor: pointer;
}

.form-modal .form-content .upload-section .uploadList .pic .deleteBtn .iconfont {
    font-size: 12px;
}

.form-modal .form-content .upload-section .uploadList .pic img {
    max-width: 100%;
    max-height: 100%;
}

.form-modal .form-content .upload-section .tips {
    flex: 1;
    margin-left: 18px;
    font-family: MiSans;
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    line-height: 24px;
}

.form-modal .form-content .submit-btn {
    display: inline-block;
    padding: 0 28px;
    line-height: 50px;
    background: #E00011;
    border-radius: 5px;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
    margin-top: 41px;
}

@media (max-width:1199px) {
    .service .box1 {
        padding: 80px 0;
    }
}

@media (max-width:1024px) {
    .service .box1 .box-c {
        flex-direction: column;
    }

    .service .box1 {
        padding: 70px 0;
    }

    .service .box1 .box-c .r {
        flex: none;
        margin-left: 0;
        margin-top: 40px;
    }
    .service .box1 .box-c .l{
        width: 100%;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
    .service .box1 .box-c .l .item:not(:last-child){
        margin-bottom: 0;
    }
    .service .box1 .box-c .l .item{
        line-height: 50px;
    }
    .service .box1 .box-c .l .item .iconfont{
        margin-left: 10px;
    }
}

@media (max-width: 768px) {
    .service .box1 .box-c .l .item{
        font-size: 16px;
        line-height: 45px;
    }
    .service .box1 {
        padding: 60px 0;
    }

    .service .box1 .box-c .r {
        margin-top: 35px;
    }
    .service .box1 .box-c .r .rBox1{
        padding: 30px 20px 45px;
    }
    .form-modal .form-content .select-controls,
    .form-modal .form-content .input-controls{
        grid-template-columns: repeat(1,1fr);
    }
    .form-modal .form-content .input-controls .input-group1{
        grid-column: 1/1;
    }
    .form-modal .form-content .upload-section .tips,
    .form-modal .form-content .input-controls .input-group select, .form-modal .form-content .input-controls .input-group input{
        font-size: 14px;
    }
    .form-modal .form-content .item label{
        font-size: 14px;
        margin-bottom: 10px;
    }
    .form-modal .form-content .input-controls .input-group{
        height: 45px;
    }
    .form-modal .form-content .item .textarea{
        padding: 8px 14px;
        font-size: 14px;
    }
    .form-modal .form-content .upload-section .uploadBtn{
        line-height: 45px;
        padding: 0 28px;
    }
    .form-modal .form-content .submit-btn{
        line-height: 45px;
        margin-top: 35px;
    }
    .form-modal .form-content .item .btns .btn{
        font-size: 14px;
        line-height: 34px;
    }
}

@media (max-width: 500px) {
    .service .box1 .box-c .r .rBox1 .text-box{
        font-size: 14px;
    }
    .form-modal .form-content .submit-btn{
        margin-top: 30px;
    }
    .form-modal .form-content .item:not(:last-child){
        margin-bottom: 25px;
    }
    .form-modal .form-content{
        padding: 20px 20px 40px;
    }
    .form-modal form{
        width: calc(100% + 20px);
        padding-right: 20px;
    }
    .service .box1 .box-c .r .rBox1{
        padding: 20px 20px 40px;
    }
    .service .box1 .box-c .r .rBox1 .text-box{
        margin-top: 8px;
    }
    .service .box1 .box-c .r .rBox1 .btn{
        margin-top: 20px;
    }
    .service .box1 .box-c .l{
        display: grid;
        grid-template-columns: repeat(1,1fr);
        gap: 10px;
    }
    .service .box1 {
        padding: 50px 0;
    }

    .service .box1 .box-c .r {
        margin-top: 30px;
    }
}