.webBridge {
    background-color: #f9f9f9;
    padding-top: 20px;
    padding-bottom: 60px;
}

.webBridge_c {
    width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px 60px 1px 60px;
}

.webBridge_c_type_t {
    display: flex;
}

.webBridge_c_type_t h1 {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 10px;
}

.webBridge_c_type_t h1 span {
    margin-right: 25px;
    font-size: 22px;
}

.webBridge_c_type {
    margin-bottom: 80px;
}

.webBridge_c_type_ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.webBridge_c_type_ul li {
    width: 340px;
    margin-top: 20px;
    margin-left: 10px;
}
.webBridge_c_type_ul li image{
    width: 100%;
    height: 227px;
}
.webBridge_c_type_ul_text{
    padding: 20px;
    border-left: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
}
.webBridge_c_type_ul_text p{
    font-size: 14px;
    color: #333;
    line-height: 24px;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    height: 140px;
    overflow: hidden;
}
.webBridge_c_type_ul_b{
    font-size: 16px;
    color: #333;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background-color: #f9f9f9;
  
}
.webBridge_c_type_ul_b .iconfont{
    font-size: 22px;
    margin-left: 10px;
}
.webBridge_c_type_ul_b p{
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.relevantLink_img{
    width: 340px;
    height: 246px;
    overflow: hidden;
}

/* 计算器 */
.calculator {
    width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
}

.calculator_title {
    font-size: 30px;
    color: #333;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.calculator_type {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
}

.calculator_type_t {
    display: flex;
    align-items: center;
}

.calculator_type_t h1 {
    font-size: 22px;
    color: #333;
    margin-right: 35px;
}

.calculator_type_t .iconfont {
    font-weight: 600;
    height: 28px;
    width: 28px;
    background-color: #fe6600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.calculator_type_ul li {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #333;
    line-height: 40px;
}

.calculator_type_ul_l {
    display: flex;
    flex-wrap: wrap;
    width: 970px;
}

.calculator_type_ul_l .type1 {
    width: 150px;
    height: 40px;
    background-color: #fff;
    padding-left: 15px;
    margin-right: 40px;
    margin-top: 20px;
}

.calculator_type_ul_l .type2 {
    display: flex;
    margin-right: 40px;
    margin-top: 20px;
}
.calculator_type_ul_l .type2 .select{
    width: 100px;
    position: relative;
    margin-left: 12px;
}
.calculator_type_ul_l .type2 select {
    border: none; 
    outline: none; 
    width: 100%;
    height: 40px;
    line-height: 40px; 
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-left: 15px;
}


.calculator_type_ul_l .type2 .select:after {
    content: "";
    width: 14px;
    height: 8px;
    background: url(../image/arrows.png) no-repeat center;
    /* //通过定位将图标放在合适的位置  */
    position: absolute;
    right: 10px;
    top: 50%;
    transform:  translateY(-50%);
    /* //给自定义的图标实现点击下来功能  */
    pointer-events: none;
}
.calculator_type_ul_l .type2 input{
    width: 80px;
    height: 40px;
    background-color: #fff;
    text-align: center;
    font-size: 16px;
    color: #333;
    margin-left: 10px;
    border: none;
    outline: none; 
}
.calculator_type_ul_r{
    width: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.calculator_type_ul_r div{
    background-color: #fff;
    width: 60px;
    font-size: 16px;
    color: #999;
    text-align: center;
    cursor: pointer;
}

.calculator_type_ul_l .type3{
    position: relative;
   margin-right: 20px;
   margin-top: 20px;
}
.calculator_type_ul_l .type3 select {
    border: none; 
    outline: none; 
    width: 100%;
    height: 40px;
    line-height: 40px; 
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-left: 15px;
    padding-right: 35px;
}


.calculator_type_ul_l .type3:after {
    content: "";
    width: 14px;
    height: 8px;
    background: url(../image/arrows.png) no-repeat center;
    /* //通过定位将图标放在合适的位置  */
    position: absolute;
    right: 10px;
    top: 50%;
    transform:  translateY(-50%);
    /* //给自定义的图标实现点击下来功能  */
    pointer-events: none;
}
.calculator_buttom{
    display: flex;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 20px;
}
.calculator_buttom div{
    width: 200px;
    height: 40px;
    background-color: #fe6600;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    border-radius: 5px;
    -o-border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
