@charset "UTF-8";

/**
 * Created by kroyo on 2018/05/17
 * 需求填写引导页
 */
/**
 * Created by kroyo on 2017/10/19.
 * minxin 公共块
 */
.reset {
    display: none;
}

.red {
    color: #ee0003;
}

.font12 {
    font-size: 12px;
}

.font14 {
    font-size: 14px;
}

.font16 {
    font-size: 16px;
}

.font18 {
    font-size: 18px;
}

.font24 {
    font-size: 24px;
}

.btnLoading {
    pointer-events: none;
}
/**
 * Created by kroyo on 2017/12/6.
 * minxin 单选按钮、多选按钮
 */
.check-wrap {
    display: inline-block;
}

.check-wrap input {
    display: none;
}

.check-wrap label {
    font-size: 14px;
    color: #666666;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
}

.check-wrap .check {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #dddddd;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    margin-right: 10px;
    vertical-align: -2px;
}

.check-wrap:hover label {
    color: #00a0e9;
}

.check-wrap:hover .check {
    border-color: #00a0e9;
}

.check-wrap.checked .check {
    border-color: #00a0e9;
    background: url(../img/patent/icon-checked.png) no-repeat center;
    background-color: #00a0e9;
}

.radio-wrap {
    display: inline-block;
}

.radio-wrap input {
    display: none;
}

.radio-wrap label {
    cursor: pointer;
    font-size: 14px;
    color: #666666;
    vertical-align: middle;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.radio-wrap .check {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    vertical-align: -2px;
}

.radio-wrap .check:after {
    position: absolute;
    top: 25%;
    left: 25%;
    display: block;
    content: '';
    width: 50%;
    height: 50%;
    background-color: transparent;
    border-radius: 50%;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.radio-wrap .check:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    border: 1px solid #ddd;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.radio-wrap label:hover {
    color: #00a0e9;
}

.radio-wrap label:hover .check:before {
    border-color: #00a0e9;
}

.radio-wrap input:checked~label {
    color: #00a0e9;
}

.radio-wrap input:checked~label .check:after {
    background-color: #00a0e9;
}

.radio-wrap input:checked~label .check:before {
    border-color: #00a0e9;
}

input {
    background-color: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.btn {
    display: inline-block;
    width: 160px;
    height: 40px;
    font-size: 14px;
    border-radius: 4px;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.borderbtn {
    line-height: 38px;
    color: #00a0e9;
    border: 1px solid #00a0e9;
}

.borderbtn:hover {
    color: #ffffff;
    border-color: #00a0e9;
    background-color: #00a0e9;
}

.bgbtn {
    line-height: 40px;
    color: #ffffff;
    background-color: #00a0e9;
}

.bgbtn:hover {
    background-color: rgba(0, 160, 230, 0.7);
}

.graybtn {
    line-height: 38px;
    color: #666666;
    border: 1px solid #cccccc;
}

.graybtn:hvoer {
    color: #00a0e9;
    border-color: #00a0e9;
}

.form-inner_checkbox {
    font-size: 0;
    margin-left: -20px;
}

.form-inner_checkbox li,
.form-inner_checkbox .check-wrapper {
    position: relative;
    display: inline-block;
    font-size: 14px;
    margin-bottom: 20px;
    margin-left: 20px;
}

.form-inner_checkbox li.checked label,
.form-inner_checkbox .check-wrapper.checked label {
    color: #ffffff;
    background: #00a0e9;
}

.form-inner_checkbox li.checked label:hover,
.form-inner_checkbox .check-wrapper.checked label:hover {
    color: #ffffff;
}

.form-inner_checkbox li.checked .iconfont,
.form-inner_checkbox .check-wrapper.checked .iconfont {
    display: block;
}

.form-inner_checkbox li .iconfont,
.form-inner_checkbox .check-wrapper .iconfont {
    z-index: -1;
    opacity: 0;
    position: absolute;
    right: -9px;
    top: -9px;
    width: 20px;
    height: 20px;
    line-height: 16px;
    color: #00a0e9;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    -webkit-transition: .4s;
    transition: .4s;
}

.form-inner_checkbox li label,
.form-inner_checkbox .check-wrapper label {
    display: inline-block;
    width: auto;
    height: auto;
    color: #666666;
    line-height: 1;
    padding: 8px 20px;
    border-radius: 4px;
    border: 1px solid #dddddd;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.form-inner_checkbox li label:hover,
.form-inner_checkbox .check-wrapper label:hover {
    color: #00a0e9;
    border-color: #00a0e9;
    cursor: pointer;
}

.form-inner_checkbox li input[type="checkbox"],
.form-inner_checkbox .check-wrapper input[type="checkbox"] {
    display: none;
    opacity: 0;
}

.form-inner_checkbox li input[type="text"],
.form-inner_checkbox .check-wrapper input[type="text"],
.other-wrapper input[type="text"]{
    width: 160px;
    height: 32px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    padding: 0 10px;
}

.form-inner_checkbox .for-other{
    position: absolute;
    left: 86px;
    top: 0;
}

.other-wrapper {
    width: 328px;
    position: relative;
    display: inline-block;
    margin-left: 40px;
}
.other-wrapper .for-other {
    position: absolute;
    top: -6px;
    left: 46px;
    display: inline-block;
    font-size: 14px;
    margin-left: 20px;
}
.other-wrapper .for-other>input[type="text"] {
    width: 232px;
}
.other-wrapper .triangle {
    position: absolute;
    top: -6px;
    left: -5px;
    display: block;
    height: 0;
    width: 0;
    font-size: 0;
    line-height: 0;
    border-color: transparent #fff transparent transparent;
    border-style: dashed dashed solid dashed;
    border-width: 6px;
}
.other-wrapper .triangle-wrapper {
    position: absolute;
    top: 10px;
    left: -12px;
    display: block;
    height: 0;
    width: 0;
    font-size: 0;
    line-height: 0;
    border-color: transparent rgb(221,221,221) transparent transparent;
    border-style: dashed dashed solid dashed;
    border-width: 6px;
    transition: .4s;
}

.surface_treatment .other-wrapper,
.minimum_line_width .other-wrapper,
.minimum_aperture .other-wrapper,
.circuit_board_layer .other-wrapper,
.circuit_board_thickness .other-wrapper{
    margin-left: 0;
    width: 400px;
    margin-top: 17px;
}

.form-inner_checkbox li .case-form-inner-none,
.form-inner_checkbox .check-wrapper .case-form-inner-none {
    color: #333333 !important;
    padding-left: 0;
    padding-right: 8px;
    border: none;
    background-color: transparent !important;
}

.form-inner_checkbox li input[type="checkbox"]:checked+label {
    color: #ffffff;
    background: #00a0e9;
}

.form-inner_checkbox li input[type="checkbox"]:checked+label+.iconfont {
    z-index: 1;
    opacity: 1;
}

.check-wrap label {
    font-size: 0;
}

.check-wrap label .check-text {
    font-size: 14px;
}

.select-wrapper {
    display: inline-block;
    position: relative;
    height: 40px;
    cursor: pointer;
}

.select-wrapper input {
    width: 100%;
    height: 100%;
    color: #333333;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #dddddd;
    padding: 0 20px;
    cursor: pointer;
}

.select-wrapper .seloff {
    position: absolute;
    top: 18px;
    right: 20px;
    display: inline-block;
    width: 12px;
    height: 8px;
    background: url(../img/demand_guide/seloff.png) no-repeat center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.select-wrapper .select-list {
    display: none;
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    border: 1px solid #ddd;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.select-wrapper .select-list .li {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #7a7a7a;
    padding-left: 10px;
    background-color: #ffffff;
    cursor: pointer;
}

.select-wrapper .select-list .li:hover,
.select-wrapper .select-list .li.selected {
    background-color: #f2f2f2;
    color: #00a0e9;
}

.select-wrapper.active .seloff {
    -webkit-transform: rotate(180deg);
    /* Safari 和 Chrome */
    /* Firefox */
    /* IE 9 */
    /* Opera */
    transform: rotate(180deg);
}

.guide-main {
    width: 100%;
    padding: 20px 0;
    background-color: #f2f2f2;
}

.main-left {
    float: left;
    width: 860px;
    height: auto;
    min-height: 500px;
    padding: 50px;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
}

.main-right {
    position: fixed;
    top: 80px;
    right: 0;
    width: 320px;
}

.main-right>div {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    width: 100%;
    height: 100px;
    padding: 28px 20px;
}

.progress-bar-title {
    color: #333333;
    font-size: 14px;
}

.progress-bar-note {
    display: none;
    margin-top: 10px;
    font-size: 12px;
    height: 14px;
    line-height: 1;
    color: #999;
}

.progress-bar-note.type-1 {
    /* display: block; */
}

.progress-bar-line {
    position: absolute;
    bottom: 0;
    width: 2px;
    height: 5px;
    background-color: #ffffff;
    display: none;
}

.progress-bar-line.type-1 {
    left: 12%;
}

.progress-bar-line.type-2 {
    left: 36%;
}

.progress-bar-line.type-3 {
    left: 47%;
}

.progress-bar-line.type-4 {
    left: 64%;
}

.progress-bar-line.type-5 {
    left: 80%;
}

.progress-bar-num {
    color: #00a0e9;
}

.progress-bar-view {
    position: relative;
    width: 100%;
    height: 10px;
    margin-top: 18px;
    border-radius: 5px;
    background-color: #eeeeee;
    overflow: hidden;
}

.progress-bar-view .progress-viewimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #f44336;
    background-size: cover;
    overflow: hidden;
}

.linklist-bar {
    margin-top: 20px;
}

.linklist-bar .linklist-bar-li {
    position: relative;
    height: 54px;
    color: #333333;
    font-size: 0;
    line-height: 53px;
    padding: 0 30px;
    border-bottom: 1px solid #f2f2f2;
    /*-webkit-transition: all .4s;*/
    /*transition: all .4s;*/
    border-bottom: 1px solid #f2f2f2;
}

.linklist-bar .linklist-bar-li.sub{
    height: 48px;
    line-height: 47px;
    text-indent: 27px;
}

.linklist-bar .linklist-bar-li.sub + .linklist{
    text-indent: 24px;
}

.linklist-bar .linklist-bar-li.sub:before{
    position: absolute;
    top: 22px;
    left: 34px;
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 4px;
    background-color: #999999;
}

.linklist-bar .linklist-bar-li.sub.active{
    border-left-color: transparent;
}

.linklist-bar .linklist-bar-li.sub a {
    transition: none;
    font-size: 15px;
}

.linklist-bar .linklist-bar-li.sub:hover a {
    color: #00a0e9;
}
.linklist-bar .linklist-bar-li.sub:hover:before,
.linklist-bar .linklist-bar-li.sub.active:before{
    background-color: #00a0e9;
}

.linklist-bar .linklist-bar-li .iconfont {
    font-size: 16px;
    margin-right: 14px;
    font-weight: bold;
}

.linklist-bar .linklist-bar-li a {
    color: #333333;
    font-size: 16px;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.linklist-bar .linklist-bar-li .current-bar a {
    color: #00a0e9;
}

.linklist-bar .linklist-bar-li:hover {
    color: #00a0e9;
}

.linklist-bar .linklist-bar-li.active,
.linklist-bar .linklist-bar-li:hover {
    color: #00a0e9;
    border-left: 2px solid #00a0e9;
}

.linklist-bar .linklist-bar-li.active a,
.linklist-bar .linklist-bar-li:hover a {
    color: #00a0e9;
}

.linklist-bar .linklist li {
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #f2f2f2;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.linklist-bar .linklist a {
    display: block;
    width: 100%;
    height: 100%;
    color: #666666;
    font-size: 14px;
    padding-left: 50px;
    padding-right: 20px;
    -webkit-transition: all .4s;
    transition: all .4s;
    border-bottom: 1px solid #f2f2f2;
}

.linklist-bar .linklist a:hover {
    color: #00a0e9;
}

.linklist-bar .linklist li.active {
    background-color: rgb(244, 248, 249);
}

.linklist-bar .linklist li.checked {
    background-image: url('../img/check.png');
    background-repeat: no-repeat;
    background-position: 286px;
}

.linklist-bar .complete {
    position: relative;
}

.linklist-bar .complete:after {
    position: absolute;
    top: 0;
    right: 30px;
    display: block;
    height: 100%;
    content: '\e60b';
    color: #00a0e9;
    font-size: 16px;
    font-family: 'iconfont' !important;
}

.content-title {
    height: 50px;
    font-size: 0;
    line-height: 30px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 20px;
}

.content-title .content-title-num {
    display: inline-block;
    width: 30px;
    height: 30px;
    color: #ffffff;
    font-size: 16px;
    border-radius: 50%;
    background-color: #00a0e9;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
}

.content-title .content-title-icon {
    display: inline-block;
    color: #00a0e9;
    font-size: 20px;
    text-align: center;
    vertical-align: middle;
}

.content-title .content-title-text {
    display: inline-block;
    color: #333333;
    font-size: 18px;
    margin-left: 10px;
    vertical-align: middle;
}

.content-title .content-title-text i{
    font-size: 14px;
    color: #999999;
}

.content-item {
    font-size: 0;
    padding-bottom: 20px;
    font-size: 0;
}

.main-left .content-item .content-item-title {
    color: #333333;
    font-size: 16px;
    line-height: 16px;
    padding: 30px 0 20px;
}

.main-left .content-appearance-item .content-item-title {
    float: left;
    padding: 0;
    margin-right: 20px;
    font-size: 14px;
    color: #666;
    height: 20px;
    line-height: 20px;
}

.content-item .content-textarea {
    width: 100%;
    height: 130px;
    /*height: 100px;*/
    color: #333333;
    font-size: 14px;
    border-radius: 4px;
    border: solid 1px #dddddd;
    padding: 12px 20px;
    outline-style: none;
    resize: none;
}

.content-item .content-textarea::-webkit-input-placeholder {
    color: #999999;
}

.content-item .content-textarea:-ms-input-placeholder {
    color: #999999;
}

.content-item .content-textarea:-moz-placeholder {
    color: #999999;
}

.content-item .content-textarea::-moz-placeholder {
    color: #999999;
}

.inputtext {
    width: 100%;
    height: 40px;
    color: #333333;
    font-size: 14px;
    border-radius: 4px;
    border: solid 1px #dddddd;
    padding: 0 20px;
}

.inputtext::-webkit-input-placeholder {
    color: #999999;
}

.inputtext:-ms-input-placeholder {
    color: #999999;
}

.inputtext:-moz-placeholder {
    color: #999999;
}

.inputtext::-moz-placeholder {
    color: #999999;
}

.content-footer {
    margin-top: 50px;
    font-size: 0;
    text-align: center;
}

.content-footer .btn {
    border-radius: 20px;
    margin: 0 10px;
}

.main-demandinfor .width240 {
    width: 240px !important;
}

.main-demandinfor .width86 {
    display: inline-block;
    width: 86px;
    height: 40px;
    line-height: 40px;
    padding: 0;
}

.main-demandinfor .content-item {
    padding: 0;
}

.main-demandinfor .content-item-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 0;
    padding-top: 15px;
    margin: 0 0 30px;
}

.main-demandinfor .content-item-line .content-item-title {
    display: inline-block;
    width: 86px;
    height: 40px;
    line-height: 40px;
    padding: 0;
}

.main-demandinfor .content-item-line .inputtext {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 674px;
}

.main-demandinfor .add-linkmanbtn {
    color: #00a0e9;
    font-size: 14px;
    margin-left: 20px;
    cursor: pointer;
    text-indent: 24px;
    background: url(../img/icon-contact-edit.png) no-repeat left top 3px;
}

.main-demandinfor .item-linkphone {
    margin: 30px 0;
}

.main-demandinfor .item-linkphone .inputtext {
    -webkit-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
    width: 400px;
}

.main-demandinfor .item-linkphone .phone-code {
    width: 135px;
    height: 40px;
    color: #999999;
    font-size: 14px;
    border-radius: 4px;
    border: solid 1px #dddddd;
    padding: 0 10px;
    margin: 0 10px;
    background-color: #ffffff;
}

.main-demandinfor .item-linkphone .send-code {
    width: 120px;
    height: 40px;
    color: #00a0e9;
    font-size: 14px;
    border-radius: 4px;
    border: solid 1px #00a0e9;
    background-color: #ffffff;
}

.main-demandinfor .item-linkemail {
    margin-bottom: 0;
}

.main-demandinfor .icon-problem {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    color: #ffffff;
    font-size: 14px;
    border-radius: 50%;
    background-color: #dddddd;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    margin-right: 100px;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.main-demandinfor .icon-problem:hover {
    background-color: #00a0e9;
}

.main-demandinfor .icon-problem:hover+.problem-state {
    z-index: 1;
    opacity: 1;
}

.main-demandinfor .radio-wrap {
    position: relative;
}

.main-demandinfor .problem-state {
    z-index: -1;
    opacity: 0;
    position: absolute;
    left: 128px;
    bottom: 150%;
    width: 220px;
    height: auto;
    color: #999999;
    font-size: 12px;
    padding: 15px 8px;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 2px 9px 0px rgba(0, 24, 35, 0.18);
    box-shadow: 0px 2px 9px 0px rgba(0, 24, 35, 0.18);
    -webkit-transition: .6s;
    transition: .6s;
}

.main-demandinfor .problem-state:after {
    position: absolute;
    left: 37%;
    bottom: -8px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    content: '';
    border-top: 10px solid #ffffff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}

.main-demandinfor .problem-partnership.problem-state:after {
    left: 56%;
}

.main-desinfor .content-item {
    padding-bottom: 0;
}

.main-desinfor .item-category .btn {
    margin-bottom: 20px;
}

.main-desinfor .item-reference .check-wrap {
    line-height: 28px;
}

.main-desinfor .item-reference .reference-li {
    display: none;
}

.main-desinfor .label-list-title {
    font-size: 14px;
    color: #333333;
    line-height: 14px;
    margin: 10px auto 20px;
}

.main-market .gray {
    color: #999999;
    font-size: 14px;
}

.main-market .project-state {
    width: 100%;
    height: 100px;
    border-radius: 4px;
    border: 1px solid #dddddd;
    padding: 10px 20px;
    resize: none;
    outline-style: none;
}

.main-market .radio-list .radio-wrap {
    width: 120px;
}

.main-market .form-inner_checkbox {
    margin-bottom: -20px;
}

.main-market .item-channel .inputtext {
    margin: 20px 0;
}

.main-market .item-channel .text {
    color: #666666;
    font-size: 14px;
    margin-top: 20px;
}

.main-market .budget-li {
    position: relative;
    float: left;
    width: 370px;
    margin-bottom: 10px;
}

.main-market .budget-li:nth-of-type(2n+1) {
    margin-right: 20px;
}

.main-market .budget-li .li-title {
    color: #333333;
    font-size: 14px;
    line-height: 32px;
    margin-bottom: 10px;
}

.main-market .budget-li .li-input {
    width: 100%;
    height: 40px;
    border-radius: 4px;
    border: solid 1px #dddddd;
    padding: 0 40px 0 20px;
}

.main-market .budget-li .tink-text {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 14px;
    color: #333333;
}

.main-companyinfor .content-item {
    border-bottom: none;
    padding-bottom: 0;
}

.main-companyinfor .width240 {
    width: 240px;
}

.main-companyinfor .form-inner_checkbox {
    margin-bottom: -20px;
}

.main-companyinfor .item-address .inputtext {
    margin-top: 20px;
}

.main-companyinfor .item-address .select-city {
    margin: 0 20px;
}

.main-companyinfor .radio-wrap {
    width: 120px;
}

.main-companyinfor .item-last {
    padding-bottom: 20px;
}

.main-companyinfor .item-enterprice .item-enterprice-title {
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: -15px;
}

.main-companyinfor .item-enterprice .content-item-title {
    font-size: 14px;
}

.main-companyinfor .item-datetime {
    position: relative;
    cursor: pointer;
}

.main-companyinfor .item-datetime .inputtext {
    cursor: pointer;
}

.main-companyinfor .item-datetime .dateoff {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #cccccc;
    cursor: pointer;
}

.project-budget .radio-wrap {
    margin-right: 60px;
}

.main-demandinfor .item-linkphone .inputtext:disabled,
.main-demandinfor .content-item-line .inputtext:disabled {
    border: none;
    background: #fff;
    cursor: default;
}

/*更新联系人*/
.guide-main.main-demandinfor>.container {
    position: relative;
}

.main-demandinfor .item-linkMan .inputtext:disabled {
    border: none;
    background: #fff;
    cursor: default;
}

.main-demandinfor .add-linkmanbtn {
    color: #00a0e9;
}

.site-window.win-contacts-edit,
.site-window.win-contacts-list {
    background-color: rgba(0, 0, 0, 0.5);
}

.site-window.win-addlinks,
.site-window.site-contacts.win-contacts-list {
    background: transparent;
    position: absolute;
}

.site-window.win-addlinks .container {
    width: 860px;
    margin: 0;
}

.site-window.win-addlinks .container .win-content {
    height: 410px;
    top: 39%;
}

.site-window.site-contacts.win-contacts-list .container,
.win-contacts-list.site-window .container .win-content {
    width: 790px;
    margin: 0;
}

.win-contacts-list.site-window .container .win-content {
    max-height: 670px;
    left: 0;
    margin-left: 35px;
    margin-top: -160px;
}

.win-contacts-list .content-form .content-form-table {
    border-top: 1px solid #ddd;
    width: 100%;
    font-size: 14px;
    color: #666666;
}

.win-contacts-list .content-form .content-form-table td {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

.win-contacts-list tbody tr:nth-last-of-type(1) td {
    border-bottom: 1px solid #ddd;
}

.win-contacts-list .content-form .content-form-table td {
    text-align: center;
    height: 39px;
    line-height: 39px;
}

.win-contacts-list td .item {
    padding: 0 8px;
    width: 129px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.win-contacts-list td.tel .item,
.win-contacts-list td.email .item {
    width: 169px;
}

.win-contacts-list .edit-contact,
.win-contacts-list .choose-contact {
    color: #00a0e9;
    margin: 0 12px;
    cursor: pointer;
}

.win-contacts-list .content-form .bgbtn {
    margin: 0 auto;
    float: none;
    display: block;
    line-height: 38px;
}

.page_li {
    cursor: pointer;
}

.linklist-bar-li .percent-bar{
    width: 33px;
    height: 33px;
}

/*圆圈进度*/
.circle {
    position: absolute;
    right: 20px;
    top: 10px;
    width:63px;
    display:inline-block;
    height:34px;
    font-size: 16px;
}
.pie_left, .pie_right{
    width:34px;
    height:34px;
    position: absolute;
    top:0;
    left:0;
    display: none;
}
.left, .right{
    position: absolute;
    left:0;
    top:0;
    border-radius:50%;
    width:100%;
    height:100%;
    background: #23B7E5;
    transform: rotate(180deg);
}
.pie_left, .left{
    clip: rect(auto, 17px, auto, auto);
}
.pie_right, .right{
    clip:rect(0, auto, auto, 17px);
}
.mask{
    position: absolute;
    top:3px;
    left:3px;
    width: 100%;
    height:28px;
    font-size:18px;
    font-weight: 600;
    border-radius: 50%;
    /*background: #fff;*/
    text-align: center;
}
.msgBlock{
    width: 100%;
    height: 28px;
    line-height: 28px;
    position: absolute;
    top: 0;
    font-size: 14px;
    color: #00a0e9;
    font-weight: 500;
    font-style: italic;
}

.js_percent_bar_num{
    width: 100%;
    text-align: right;
}

.content-item-title i.text-red, .note-text,
#circuit_design_form i.text-red{
    color: #ee0003;
    margin-left: 5px;
}

.note-text{
    margin-top: 22px;
    margin-bottom: -10px;
    font-size: 14px;
}

.tips-file{
    display: inline-block;
    font-size: 16px;
    color: #00a0e9;
    margin-left: 10px;
}

#graphic_design_form .file-list .file-item,
#mould_form .file-list .file-item,
#prototype_form .file-list .file-item{
    margin-top: 10px;
}

#graphic_design_form .borderbtn,
#mould_form .borderbtn,
#prototype_form .borderbtn{
    margin-top: 0;
}

.content-item.small-title .content-item-title,
.content-item.small-title .content-item-title{
    padding: 30px 0 20px 0;
}

.content-item.small-title .content-item-title,
.content-item.small-title .content-item-title{
    width: 102px;
    height: 40px;
    line-height: 40px;
    padding: 30px 0 0 0;
    float: left;
}
.content-item.small-title .input-wrapper,
.content-item.small-title .input-wrapper{
    width: 260px;
    margin: 30px 0 0 0;
    float: left;
}

.linklist-bar .linklist-bar-li .icon-icon-design:before{
    display: none;
}
.linklist-bar .linklist-bar-li .icon-icon-design{
    display: inline-block;
    width: 14px;
    height: 15px;
    background: url("../img/icon-slide-design.png") no-repeat center;
}
.content-title .icon-icon-design,
.linklist-bar .linklist-bar-li.active .icon-icon-design,
.linklist-bar .linklist-bar-li:hover .icon-icon-design{
    background: url("../img/icon-slide-design-hover.png") no-repeat center;
}

.linklist-bar .linklist-bar-li .icon-icon-circuit-design{
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url("../img/icon-slide-circuitDesign.png") no-repeat center;
}

.content-title .icon-icon-design,
.content-title-icon.icon-icon-circuit-design,
.content-title-icon.icon-icon-graphic-design,
.content-title-icon.icon-icon-mould,
.content-title-icon.icon-icon-prototype{
    display: inline-block;
    width: 30px;
    height: 30px;
}

.content-title-icon.icon-icon-circuit-design,
.linklist-bar .linklist-bar-li.active .icon-icon-circuit-design,
.linklist-bar .linklist-bar-li:hover .icon-icon-circuit-design{
    background: url("../img/icon-slide-circuitDesign-hover.png") no-repeat center;
}

.linklist-bar .linklist-bar-li .icon-icon-graphic-design{
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../img/icon-slide-graphicDesign.png") no-repeat center;
}
.content-title-icon.icon-icon-graphic-design,
.linklist-bar .linklist-bar-li.active .icon-icon-graphic-design,
.linklist-bar .linklist-bar-li:hover .icon-icon-graphic-design{
    background: url("../img/icon-slide-graphicDesign-hover.png") no-repeat center;
}

.linklist-bar .linklist-bar-li .icon-icon-prototype{
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../img/icon-slide-prototype.png") no-repeat center;
}
.content-title-icon.icon-icon-prototype,
.linklist-bar .linklist-bar-li.active .icon-icon-prototype,
.linklist-bar .linklist-bar-li:hover .icon-icon-prototype{
    background: url("../img/icon-slide-prototype-hover.png") no-repeat center;
}

.linklist-bar .linklist-bar-li .icon-icon-mould{
    display: inline-block;
    width: 15px;
    height: 16px;
    background: url("../img/icon-slide-mould.png") no-repeat center;
}
.content-title-icon.icon-icon-mould,
.linklist-bar .linklist-bar-li.active .icon-icon-mould,
.linklist-bar .linklist-bar-li:hover .icon-icon-mould{
    background: url("../img/icon-slide-mould-hover.png") no-repeat center;
}

.main-left .separate-item p{
    margin-bottom: 20px;
}

.main-left .c-problem .icon-problem {
    position: absolute;
    top: 11px;
    right: 13px;
    margin: 0;
}
.main-left .c-problem.content-item .problem-partnership.problem-state:after{
    left: 51%;
}
.main-left .c-problem.content-item .problem-state.problem-partnership{
    left: 167px;
    width: 138px;
    text-align: center;
}

#circuit_design_form .c-problem.content-item .problem-state.problem-partnership{
    left: 275px;
}

.attachment-file{
    padding-left: 18px;
    margin-left: 19px;
    font-size: 16px;
    line-height: 24px;
    color: #00a0e9;
    background: url("../img/icon-attachment-file.png") no-repeat center left;
    background-size: 12px;
}

.site-window .attachment-file{
    background: none;
    padding-left: 0;
    margin-left: 0;
}

.win-bom-list-file-upload.site-window .container>div{
    width: 560px;
}

.win-bom-list-file-upload .form-item.last-form-item{
    text-align: center;
}

.win-bom-list-file-upload .form-item.last-form-item .upbtn{
    float: none;
    margin: 0 10px;
}

.win-bom-list-file-upload p{
    line-height: 30px;
    margin: 0;
    font-size: 16px;
}

.win-bom-list-file-upload .borderbtn{
    margin-top: 20px;
}
.win-bom-list-file-upload .file-list .file-item{
    margin-top: 10px;
}


.bom-list-file-detail-wrapper{
    opacity: 0;
    z-index: -99;
}

.bom-list-file-detail-wrapper.active{
    opacity: 1;
    z-index: 1;
}

.bom-list-file-detail-wrapper{
    margin: 40px 0;
}

.dataTables_scroll{
    border-right: 1px solid #ccc;
}

.bom-list-file-detail-table.dataTable tbody td,
.bom-list-file-detail-table.dataTable thead th{
    white-space: nowrap;
    padding: 10px;
    text-align: center;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
}

.bom-list-file-detail-table.dataTable thead th{
    background-color: #eff6fa;
    color: #333333;
    font-weight: 400;
    border-top: 1px solid #ccc;
}
.bom-list-file-detail-table.dataTable tbody td{
    color: #666;
}

.bom-list-file-detail-table.dataTable img {
    margin-top: 0;
    width: 54px;
    height: 54px;
}
.bom-list-file-detail-table.dataTable .i-required{
    color: #ee0003;
}
.bom-list-file-detail-table.dataTable .draw_name,
.bom-list-file-detail-table.dataTable .product_function,
.bom-list-file-detail-table.dataTable .mould_id{
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
}
.bom-list-file-detail-table.dataTable .draw_name{
    max-width: 150px;
}
.bom-list-file-detail-table.dataTable .product_function,
.bom-list-file-detail-table.dataTable .mould_id{
    /*width: 300px;*/
}
.bom-list-file-detail-table.dataTable .product_image{
    width: 54px;
    height: 54px;
    display: inline-block;
}
.dataTables_wrapper.no-footer .dataTables_scrollBody{
    border-bottom: transparent;
}

.DTFC_LeftBodyWrapper.scrolling:before,
.DTFC_LeftHeadWrapper.scrolling:before{
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 10px;
    right: 0;
    z-index: 9;
    box-shadow: inset 4px 0 5px #d6d6d6;
}


.bom-list-file-detail-wrapper .dataTables_wrapper .dataTables_paginate .paginate_button,
.bom-list-file-detail-wrapper .dataTables_wrapper .dataTables_paginate .ellipsis{
    line-height: 36px;
    padding: 0;
    min-width: auto;
    width: 36px;
    height: 36px;
    margin-left: 2px;
    font-size: 14px;
    color: #666666 !important;
    border: 1px solid #dddddd;
    border-radius: 2px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    overflow: hidden;
}

.bom-list-file-detail-wrapper .dataTables_wrapper .dataTables_paginate .paginate_button:hover{
    background: #eeeeee;
}
.bom-list-file-detail-wrapper .dataTables_wrapper .dataTables_paginate .paginate_button.next,
.bom-list-file-detail-wrapper .dataTables_wrapper .dataTables_paginate .paginate_button.previous{
    font-size: 0;
}
.bom-list-file-detail-wrapper .dataTables_wrapper .dataTables_paginate .paginate_button.next:before,
.bom-list-file-detail-wrapper .dataTables_wrapper .dataTables_paginate .paginate_button.previous:before{
    font-size: 14px;
    display: inline-block;
}
.bom-list-file-detail-wrapper .dataTables_wrapper .dataTables_paginate .paginate_button.previous:before{
    content: '«';
}
.bom-list-file-detail-wrapper .dataTables_wrapper .dataTables_paginate .paginate_button.next:before{
    content: '»';
}

.bom-list-file-detail-wrapper .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.bom-list-file-detail-wrapper .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: #ffffff !important;
    background: #00a0e9;
    border-color: #00a0e9;
}

.bom-list-file-detail-wrapper .dataTables_wrapper .dataTables_paginate .ellipsis {
    display: inline-block;
    text-align: center;
}

.bom-list-file-detail-wrapper .dataTables_wrapper .dataTables_paginate{
    padding-top: 10px;
}

.main-right .relationship-agreement-bar{
    margin-top: 0;
    margin-bottom: 20px;
}

.progress-bar{
    margin-bottom: 20px;
}
.linklist-bar{
    margin-top: 0;
}

.check-wrapper label.required,
.form-inner_checkbox li .other_text.required,
.other-wrapper .other_text.required,
.btn.borderbtn.required,
.content-textarea.required,
.phone-code.required,
.inputtext.required{
    border: 1px solid #ee0003 !important;
}

.btn.borderbtn.required .iconfont,
.btn.borderbtn.required{
    color: #ee0003;
}

.other_text:focus + .triangle-wrapper{
    border-color: transparent #00a0e9 transparent transparent !important;
}

.other_text.required + .triangle-wrapper {
    border-color: transparent #ee0003 transparent transparent !important;
}