:root {
    /* #00965e 25cb68  green-1:#55c927  green-2:#23ff9f*/
    --primary-color: #02bb54;
    --secondary-color: #e3e3e3;
    --text-color-lightest: #e7e9ec;
    /* 白色文字 */
    --text-color-white: #fff;
    /* 主体深色文字 */
    --text-color-darker: #1f2021;
    /* 灰色文字 */
    --text-color-gray: #8b8b8b;
    --text-color-gray2: #aaa;
    /* 深灰色文字 */
    --text-color-dark-gray: #727272;
    /* 浅灰色文字 */
    --text-color-light-gary: #c6c6c6;
    /* 遮罩层颜色 */
    --backdrop-color: rgba(31, 32, 33, 0.75);
    /* 1f2021 */
}

ul,
li {
    list-style: none;
    padding: 0;
}
.contactus{
    background: none;
    
}
.contact-nr {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 100px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.address-items {
    width: 100%;
    margin-top: 40px;    
    display: flex;
    display: -webkit-flex; /* Safari */
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-grow: 1 1 1;
   
}

.address-item {
    width: 30%;
}

.address-item h3 {
    font-size: 1rem;
    line-height: 30px;
    color: #727272;
    font-weight: bold;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 5px 0;
}

.address-item p {
    line-height: 1.6rem;
    font-size: 0.95rem;
    color: var(--text-color-dark-gray);
    padding: 5px 0;
}

.feedback {
    max-width: 1200px;
    width: 94%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 80px;
}

.feedback h2 {
    margin-bottom: 80px;
}

.feedback-nr {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.feedback-nr form {
    width: 100%;
}

.form-group {
    height: 60px;
}

.feedtable {
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.feedtable .row {
    display: grid;
    grid-template-columns: 250px 1fr;
    justify-content: left;
    justify-items: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.feedtable .row .cell {
    /* height: 50px; */
    line-height: 59px;
    width: 100%;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    padding: 5px 8px;
}

.bggray {
    background-color: rgba(248, 247, 238, 0);
}

.feedtable .cell .red {
    color: red;
    font-size: 0.8rem;
    margin-left: 5px;
}

.feedtable input {
    width: 100%;
    height: 40px;
    padding: 0 5px;
    background-color: #f8f7ee;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.selectmachine {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.selectmachine input {
    width: 20px;
}

.selectmachine label {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.selectmachine .checkbox-inline {
    padding-left: 10px;
    margin-bottom: 0;
    font-weight: normal;
    vertical-align: middle;
    cursor: pointer;
}

.checkbox-inline span {
    margin-left: 8px;
    margin-right: 15px;
    line-height: 40px;
}

.rowtj {
    margin: 80px auto 40px;
    display: flex;
    justify-content: center;
}

.rowtj button {
    width: 300px;
}
.address-item i{
    display: none;
}
.address-item a{
    vertical-align: middle;
}
.address-item img
{ margin-left: 10px;  width: auto; 
    height: 15px;
}
@media (max-width:768px) {
    .address-items {
        grid-template-columns: repeat(2, 1fr);
    }
    .feedtable .row {
        grid-template-columns: 1fr;
    }
    .feedtable .row .cell {
        /* height: 50px; */
        line-height: 40px;
    }
    .address-item i{
        display: unset;
    }
}

@media (max-width:500px) {
    .address-items {
        grid-template-columns: 1fr;
    }
   
}