html {
    background: #f5f5f5;
}

.main.pc .banner-wrap img {
    width: 100%;
    height: 0;
    object-fit: cover;
    display: block;
}

.cons-wrap {
    padding-bottom: 60px;
    padding-top: 55px;
}
.cons-wrap > .container > input {
    display: none;
}
.cons-wrap .form-content {
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.2);
    border-radius: 20px;
    padding: 55px 30px;
}
.cons-wrap .form-content h2 {
    text-align: center;
    font-size: 24px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    padding: 0 0 30px;
    border-bottom: 1px solid #ddd;
    margin: unset;
}
.cons-wrap .form-content .row {
    /* display: flex; */
    /* align-items: center; */
    margin: 0 -40px;
}
.cons-wrap .form-content .row .col {
    display: flex;
    align-items: center;
    padding: 10px 40px;
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #4D4D4D;
    text-align: right;
}
.cons-wrap .form-content .rows:nth-of-type(1) .col .ct {
    width: 80px;
    margin-right: 15px;
}
.cons-wrap .form-content .rows:nth-of-type(2) .col .ct {
    width: 130px;
    margin-right: 15px;
}
.cons-wrap .form-content .rows:nth-of-type(2) .row .col {
    padding: 10px 2px;
}
.cons-wrap .form-content .rows:nth-of-type(2) .row {
    margin: 0 -2px;
}
.cons-wrap .form-content .rows:nth-of-type(2) .row + .row {
    margin-top: 20px;
}
.cons-wrap .form-content .row .col .ct span {
    color: red;
}
.cons-wrap .form-content .row .col .con {
    flex: 1;
    display: flex;
    align-items: center;
}
.cons-wrap .form-content .row .col .input-wrap input {
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #999999;
    margin-bottom: 6px;
    border: 1px solid #ffffff;
}
.cons-wrap .form-content .tc .col {
    align-items: start;
}
.cons-wrap .form-content .tc .ct {
    margin-top: 15px;
}
.cons-wrap .submit {
    display: block;
    width: 202px;
    height: 49px;
    background: var(--main-color);
    border-radius: 4px;
    outline: unset;
    border: unset;
    color: #fff;
    margin: 0 auto;
    transition: all .3s ease;
    cursor: pointer;
    margin-top: 30px;
}
.cons-wrap .submit:hover {
    background: var(--hover-color);
}
.cons-wrap .form-content .select-wrap .current {
    display: flex;
    align-items: center;
    padding-right: 15px;
}

.submit {

}


@media screen and (max-width: 750px) {
    html {
        background: #fff;
    }
    .select-wrap {
        width: 100%;
    }
    .select-wrap + .select-wrap {
        margin-left: unset;
        margin-top: 20px;
    }
    .tab > .col {
        width: 155px;
    }
    .tab > .col + .col {
        margin-left: 15px;
    }
    .radio-wrap label + label {
        margin-left: unset;
    }
    .radio-wrap label {
        margin-right: 15px;
    }
    .cons-wrap .form-content {
        padding: 30px 0;
        background-color: unset;
        border: unset;
        box-shadow: unset;
    }
    .cons-wrap .form-content .row .col .con {
        flex-wrap: wrap;
    }
    .cons-wrap .form-content .rows .col .ct {
        width: 80px;
        margin-right: 10px;
    }
    .cons-wrap .form-content .rows:nth-of-type(2) .col .ct {
        width: 80px;
        margin-right: 10px;
    }
    .cons-wrap .form-content .row .col {
        padding: 15px 10px;
    }
    .cons-wrap .form-content .row {
        margin: 0 -10px;
    }
}



.upload-wrap {
    width: 100px;
    height: 100px;
    border: 1px solid #D9D9D9;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.upload-wrap + .upload-wrap {
    margin-left: 15px;
}
.upload-wrap .icon-null {}
.upload-wrap.active .icon-null {
    display: none;
}
.upload-wrap .icon-del {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    object-fit: contain;
    cursor: pointer;
    background: red;
    border-bottom-left-radius: 15px;
    transition: background .3s ease;
}
.upload-wrap .icon-del:hover {
    background: rgb(219, 0, 0);
}
.upload-wrap .icon-del > img {
    width: 100%;
    object-fit: contain;
}
.upload-wrap.active .icon-del {
    display: block;
}
.upload-wrap .img-con {
    display: none;
}
.upload-wrap.active .img-con {
    display: block;
    width: 100%;
    height: 100px;
    object-fit: contain;
}
.upload-wrap > input {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    cursor: pointer;
}
.upload-wrap.active > input {
    display: none;
}
@media screen and (max-width: 750px) {
    .cons-wrap {
        padding-top: unset;
    }
    .cons-wrap .form-content {
        padding-top: unset;
    }
    .cons-wrap .form-content h2 {
        font-size: 20px;
        display: none;
    }
    .upload-wrap {
        width: 80px;
        height: 80px;
        border: 1px solid #D9D9D9;
        border-radius: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        margin-right: 5px;
        margin-bottom: 5px;
    }
    .upload-wrap + .upload-wrap {
        margin-left: unset;
    }
    .upload-wrap .icon-null {}
    .upload-wrap.active .icon-null {
        display: none;
    }
    .upload-wrap .icon-del {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: 15px;
        height: 15px;
        object-fit: contain;
        cursor: pointer;
        background: red;
        border-bottom-left-radius: 7px;
        transition: background .3s ease;
    }
    .upload-wrap .icon-del:hover {
        background: rgb(219, 0, 0);
    }
    .upload-wrap .icon-del > img {
        width: 100%;
        object-fit: contain;
    }
    .upload-wrap.active .icon-del {
        display: block;
    }
    .upload-wrap .img-con {
        display: none;
    }
    .upload-wrap.active .img-con {
        display: block;
        width: 100%;
        height: 100px;
        object-fit: contain;
    }
    .upload-wrap > input {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        opacity: 0;
        cursor: pointer;
    }
    .upload-wrap.active > input {
        display: none;
    }

}

﻿* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
}

/* 定义全局scroll-bar */
html::-webkit-scrollbar-track-piece {
  background-color: #f8f8f8;
}

html::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}

html::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #efefef;
  background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:hover {
  background-color: #ddd;
}

.scroll-content {
  overflow-y: auto;
}
/* 定义全局scroll-bar */
.scroll-content::-webkit-scrollbar-track-piece {
  background-color: #f8f8f8;
}

.scroll-content::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}

.scroll-content::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #efefef;
  background-clip: padding-box;
}

.scroll-content::-webkit-scrollbar-thumb:hover {
  background-color: #ddd;
}

a {
  color: inherit;
  text-decoration: unset;
}

ul,
dl,
ol {
  list-style: none;
  padding: unset;
  margin: unset;
}

input {
  outline: unset;
  border: unset;
  padding: unset;
  background: unset;
}

a {
  color: inherit;
  text-decoration: unset;
}

.container {
  max-width: 1400px;
  width: 97%;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .container {
    width: 100%;
  }
}

/* 文本一行显示 */
.text-line-1-show {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* 文本两行显示 */
.text-line-2-show {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* 文本三行显示 */
.text-line-3-show {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
}

.fl {
  float: left;
  *display: inline;
  _display: inline;
}

.fr {
  float: right;
  *display: inline;
  _display: inline;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}

.clearfix {
  *zoom: 1;
}
