.top .area{
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top{
	background-color: #f4f4f4;
}
.bread{
	background-color: #ffffff;
	box-shadow: 0px 3px 10px 0px 
		rgba(0, 0, 0, 0.1);
}
.bread .area{
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bread .dh{
    color: #999999;
}
.bread .inp{
    width: 27.2%;
    position: relative;
}
.bread .inp input{
    width: 100%;
    height: 35px;
	background-color: #ffffff;
	border-radius: 18px;
	border: solid 1px #dadada;
    outline: none;
    padding-left: 25px;
}
.bread .inp .search{
    width: 52px;
    background-color: #026eb6;
	border-radius: 0px 18px 18px 0px;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.proList{
    margin-top: 80px;
}
.proList .protitle h4{
    font-size: 32px;
    font-weight: bold;
	color: #333333;
    text-align: center;
}
.proList .protitle h4 span{
    color: #026eb6;
}
.protitle p{
    text-align: center;
	color: #979797;
    margin-top: 18px;
}
.proList .cpitems .block{
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all .3s;
    width: 22.72%;
    padding: 20px;
    border-radius: 16px;
	border: solid 1px #f0f0f0;
}
.cpitems .block .img{
    padding: 27px;
    text-align: center;
    background-color: #f5faff;
}
.cpitems .block h4{
    font-size: 20px;
	line-height: 20px;
	letter-spacing: 1px;
	color: #333333;
    font-weight: bold;
    margin-top: 25px;
}
.cpitems .block p{
    font-size: 15px;
	line-height: 24px;
	letter-spacing: 1px;
	color: #888888;
    margin-top: 18px;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
/* 规定文字几行 */
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.cpitems .block:hover{
    box-shadow: 0px 7px 10px 0px 
    rgba(0, 0, 0, 0.08);
border-radius: 16px;
border: solid 1px #d2edff;
transform: translateY(-8px);
}
.proList .cpitems{
    display: flex;
    justify-content: space-between;
    margin-top: 55px;
}
.cpitems .block>a{
    position: absolute;
    right: -50px;
    bottom: 30%;
    width: 39px;
	height: 39px;
    border-radius: 100%;
	background-color: #026eb6;
	box-shadow: 0px 3px 10px 0px 
		rgba(56, 132, 219, 0.47);
        font-size: 30px;
        color: #fff;
        text-align: center;
        line-height: 39px;
        transition: all .3s;
}
.cpitems .block:hover a{
    right: 32px;
}
.usmore{
    margin-top: 78px;
    background-color: #e7eaee;
}
.usmore .area{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 140px;
}
.usmore .left h4{
    font-size: 26px;
	font-weight: bold;
	letter-spacing: 1px;
	color: #026eb6;
}
.usmore .left p{
    font-size: 20px;
	line-height: 32px;
	letter-spacing: 1px;
	color: #333333;
    margin-top: 10px;
}
.usmore .right{
    width: 159px;
	height: 102px;
	background-color: #026eb6;
	border-radius: 6px;
    text-align: center;
    padding: 10px 0;
}
.usmore .right h5{
    font-size: 18px;
	line-height: 26px;
	letter-spacing: 0px;
	color: #ffffff;
    margin-bottom: 15px;
}
.usmore .right p{
    font-size: 14px;
	line-height: 20px;
	color: #ffffff;
}
.morepro{
    margin-top: 80px;
}
.morepro .area{
    padding: 0 140px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.morepro .text h2{
    font-size: 32px;
	line-height: 40px;
	letter-spacing: 1px;
	color: #333333;
    font-weight: bold;
}
.morepro .text ul{
    margin-top: 50px;
    padding-left: 25px;
}
.morepro .text li{
    font-size: 18px;
	line-height: 40px;
	color: #666666;
    position: relative;
}
.morepro .text li::before{
    content: "";
    display: block;
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
	height: 7px;
	background-color: #026eb6;
    border-radius: 100%;
}
.morepro .text .btnmore{
    width: 204px;
	height: 50px;
	background-color: #026eb6;
	box-shadow: 0px 3px 10px 0px 
		rgba(56, 132, 219, 0.47);
	border-radius: 6px;
    line-height: 50px;
    text-align: center;
    margin-top: 50px;
    color: #fff;
    font-size: 18px;
}
/* padpro端 */
@media screen and (min-width: 991px) and (max-width: 1366px){
    .top p{
        width: 100%;
    }
    .top .area{
        flex-wrap: wrap;
        padding: 10px 0;
        height: unset;
    }
    .proList {
        margin-top: 60px;
    }
    .proList .protitle h4{
        font-size: 28px;
    }
    .protitle p{
        margin-top: 12px;
    }
    .cpitems .block .img{
        width: 180px;
        height: 230px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .cpitems .block h4{
        font-size: 18px;
        margin-top: 15px;
    }
    .cpitems .block p{
        font-size: 13px;
    }
    .cpitems .block>a{
        width: 30px;
        height: 30px;
        font-size: 20px;
        line-height: 30px;
    }
    .usmore{
        margin-top: 50px;
    }
    .usmore .area {
        padding: 30px 60px;
    }
    .usmore .left h4{
        margin-top: 20px;
    }
    .usmore .left p{
        font-size: 16px;
    }
    .morepro .area{
        padding: 0px 60px;
    }
    .morepro .text h2{
        font-size: 26px;
    line-height: 30px;
    }
    .morepro .text ul{
        margin-top: 35px;
    padding-left: 25px;
    }
}
/* pad端 */
@media screen and (min-width:768px) and (max-width:991px) {
    .top p{
        width: 100%;
    }
    .top .area{
        flex-wrap: wrap;
        padding: 10px;
        height: unset;
    }
    .bread .area{
        height: 52px;
    }
    .bread .inp {
        width: 32.2%;
    }
    .proList {
        margin-top: 40px;
    }
    .proList .protitle h4{
        font-size: 22px;
    }
    .proList .cpitems{
        margin-top: 30px;
        flex-wrap: wrap;
    }
    .protitle p{
        margin-top: 12px;
    }
    .proList .cpitems .block{
        width: 48%;
        margin-bottom: 20px;
    }
    .cpitems .block .img{
        width: 100%;
        height: 180px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .cpitems .block h4{
        font-size: 18px;
        margin-top: 15px;
    }
    .cpitems .block p{
        font-size: 13px;
    }
    .cpitems .block>a{
        width: 30px;
        height: 30px;
        font-size: 20px;
        line-height: 30px;
    }
    .usmore{
        margin-top: 30px;
    }
    .usmore .area {
        padding: 20px 40px;
    }
    .usmore .left h4{
        margin-top: 18px;
    }
    .usmore .left p{
        font-size: 14px;
    }
    .morepro .area{
        padding: 0px 40px;
    }
    .morepro .text h2{
        font-size: 20px;
    line-height: 25px;
    }
    .morepro .text ul{
        margin-top: 30px;
    padding-left: 20px;
    }
    .morepro .text li{
        font-size: 14px;
        line-height: 35px;
    }
    .morepro .text .btnmore{
        width: 168px;
        height: 42px;
        line-height: 42px;
    font-size: 16px;
    }
}
/* 移动端 */
@media (max-width:767px){
    .mybanner{
        background-image: url(../images/pro/banner.jpg);
        height: 195px;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .mybanner img{
        display: none;
    }
    .top{
        display: none;
    }
    .bread .area{
        height: unset;
        flex-wrap: wrap;
        padding: 15px 8px;
    }
    .bread .inp {
        width: 100%;
        margin-top: 10px;
    }
    .proList {
        margin-top: 40px;
    }
    .proList .protitle h4{
        font-size: 22px;
    }
    .proList .cpitems{
        margin-top: 30px;
        flex-wrap: wrap;
    }
    .protitle p{
        margin-top: 12px;
    }
    .proList .cpitems .block{
        width: 100%;
        margin-bottom: 15px;
    }
    .cpitems .block .img{
        width: 100%;
        height: 180px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .cpitems .block h4{
        font-size: 18px;
        margin-top: 15px;
    }
    .cpitems .block p{
        font-size: 13px;
    }
    .cpitems .block>a{
        width: 30px;
        height: 30px;
        font-size: 20px;
        line-height: 30px;
    }
    .usmore{
        margin-top: 30px;
    }
    .usmore .area {
        padding: 0 10px;
        flex-wrap: wrap;
    }
    .usmore .left,.usmore .right{
        width: 100%;
        margin-bottom: 10px;
    }
    .usmore .left h4{
        margin-top: 16px;
    }
    .usmore .left p{
        font-size: 12px;
        letter-spacing:unset
    }
    .morepro .area{
        padding: 0px 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .morepro .text h2{
        font-size: 20px;
    line-height: 25px;
    }
    .morepro .text ul{
        margin-top: 30px;
    padding-left: 20px;
    }
    .morepro .text li{
        font-size: 14px;
        line-height: 35px;
    }
    .morepro .text .btnmore{
        width: 145px;
        height: 36px;
        line-height: 36px;
        font-size: 14px;
        margin-bottom: 15px;
        margin-top: 25px;
    }
    .morepro{
        margin-top: 30px;
    }
    .morepro .text{
        width: 100%;
    }
}