.home-slider img {
    width: 100%;
    height: 100vh;
    position: relative;
    object-fit: cover;
}

.home-slider .slidertext {
    color: #e87d13;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.home-slider .slidertext h1 {
    font-size: 80px;
    font-weight: 700;
    letter-spacing: 15px;
    margin-bottom: 15px;
    -webkit-text-stroke: 2px #fff;
}

.home-slider .slidertext2 {
    color: #220c58;
    position: absolute;
    top: 35%;
}

.home-slider .banner2text {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 15px;
    margin-bottom: 15px;
}

.home-slider .slidertext h3 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 5px;
    font-weight: 700;
}

.home-slider .slidercount {
    background-color: rgba(34, 12, 88, .5);
    width: 100%;
    position: absolute;
    bottom: 10%;
    z-index: 1;
}

.home-slider .slidercount .year {
    display: flex;
    justify-content: space-between;
    color: #fff;
    padding: 30px 20px;
}

.home-slider .slidercount .year .year-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-slider .slidercount .year .year-item .year-itemnum {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
    justify-content: space-between;
}

.home-slider .slidercount .year .year-item .year-itemnum h2 {
    color: #e87d13;
    font-size: 80px;
    font-weight: 700;
    padding-right: 15px;
}

.home-slider .slidercount .year .year-item .year-itemnum span {
    font-size: 24px;
}

.home-slider .slidercount .year .year-item p {
    margin: 0;
    font-size: 28px;
}

.home-about {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 950px;
}

.home-about h1 {
    text-align: center;
    font-weight: 700;
    margin: 5% 0;
}

.home-about .aboutcontent {
    justify-content: space-between;
}

.home-about .aboutyearimg img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.home-about .h-abouttext {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-about .h-abouttext h2 {
    color: #220c58;
    font-weight: 500;
}

.home-about .h-abouttext .p p {
    margin: 0;
    line-height: 2;
    text-indent: 2rem;
    font-weight: 600;
}

.home-about .h-abouttext .aboutbtn {
    display: flex;
    justify-content: flex-end;
}

.home-about .h-abouttext .aboutbtn * {
    transition: unset;
}

.home-about .h-abouttext .aboutbtn .more {
    display: flex;
    justify-content: space-between;
    width: 10rem;
    height: 3rem;
    line-height: 3rem;
    margin-top: 20px;
    position: relative;
}

.home-about .h-abouttext .aboutbtn .more span img {
    opacity: 0;
}

.home-about .h-abouttext .aboutbtn .more:hover {
    color: #e87d13;
}

.home-about .h-abouttext .aboutbtn .more:hover span img {
    opacity: 1;
    transition: all 1s ease;
}

.home-about .h-abouttext .aboutbtn .more::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #e87d13;
    transition: width 0.5s;
    z-index: 9;
}

.home-about .h-abouttext .aboutbtn .more:hover::after {
    width: 100%;
}

.home-about .about-img img {
    width: 100%;
    height: 100%;
}

.home-product {
    background-color: #F4F8FA;
}

.home-product h1 {
    text-align: center;
    padding: 5% 0;
    font-weight: 700;
}

.home-product .h-productitem {
    margin-bottom: 20px;
    background-color: #fff;
    display: flex;
}

.home-product .h-productitem .h-productimg {
    width: 100%;
    overflow: hidden;
}

.home-product .h-productitem .h-productimg img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.home-product .h-productitem:hover .h-productimg img {
    transform: scale(1.1);
}

.home-product .h-productitem .h-producttext {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

.home-product .h-productitem .h-producttext .h-productnum {
    font-size: 4.7rem;
    color: #2d669a;
    opacity: 0.1;
}

.home-product .h-productitem .h-producttext .h-producttxt {
    font-size: 20px;
    color: #333;
}

.home-product ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.home-product ul li {
    width: 48%;
    margin-bottom: 70px;
}

.home-product ul li .pic {
    overflow: hidden;
    height: 14vw;
}

.home-product ul li .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
}

.home-product ul li:hover .pic img {
    transform: scale(1.1);
}

.home-product ul li .desc {
    overflow: hidden;
    position: relative;
    padding: 25px 0;
    display: flex;
    align-items: center;
}

.home-product ul li .desc::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #e87d13;
    transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
}

.home-product ul li:hover .desc::after {
    width: 100%;
}

.home-product ul li .desc .num {
    padding: 0 11px;
    border-right: 1px solid #ccc;
    text-align: center;
    font-size: 28px;
    color: #333;
}

.home-product ul li .desc .time {
    padding: 0 11px;
    border-right: 1px solid #ccc;
    text-align: center;
}

.home-product ul li .desc .time span {
    display: block;
    font-size: 20px;
    color: #888;
}

.home-product ul li .desc .time em {
    font-size: 14px;
    display: block;
    color: #666;
}

.home-product ul li .desc .txt {
    overflow: hidden;
    padding-left: 20px;
}

.home-product ul li .desc .txt h3 {
    font-size: 20px;
    color: #333;
    font-weight: 400;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
}

.home-product ul li:hover .desc .txt h3 {
    color: #e87d13;
}

.home-case {
    position: relative;
}

.home-case h1 {
    text-align: center;
    padding: 1% 0;
    font-weight: 700;
}

.home-case .case .p_img img {
    width: 100%;
    height: calc(100vh - 90px);
    object-fit: cover;
}

.home-case .case .p_info {
    max-width: 1600px;
    position: absolute;
    top: 34%;
    transform: translateY(-49%);
    margin: 0 auto;
    display: block;
    left: 0;
    right: 0;
    z-index: 1;
    width: 94%;
}

.home-case .case .p_info .p_infobox {
    width: 50%;
    position: absolute;
    top: 55%;
    transform: translateY(-30%);
}

.home-case .case .p_info .p_infobox h2 {
    font-size: 46px;
    color: #fff;
    font-weight: bold;
    transition: all ease .8s .3s;
}

.home-case .case .p_info .p_infobox p {
    color: #fff;
    line-height: 2;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    transition: all ease .8s .9s;
    font-size: 28px;
    margin: 5% 0 4% 0;
}

.home-case .p_box {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
}

.home-case .p_box .p_smallbox {
    background-color: rgba(28, 15, 88, 0.3);
    border-right: 1px solid #fff;
    width: 20%;
}

.home-case .p_box .p_smallbox:last-child {
    border-right: 0;
}

.home-case .p_box .p_smallbox a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.home-case .p_box .p_smallbox p {
    margin: 0;
    color: #fff;
    font-size: 28px;
    text-align: center;
}

.home-case .p_box .p_smallbox p:last-child {
    font-size: 24px;
}

.home-case .p_box .p_smallbox:hover {
    background-color: #e87d13;
}

.home-case .mySwiper {
    width: 100%;
    height: 150px;
    position: absolute;
    bottom: 0;
}

.home-case .swiper-slide-thumb-active {
    background-color: #e87d13 !important;
}

.home-case .casemore a {
    color: #fff;
    padding: 15px 30px;
    background-color: #e87d13;
}

.home-case .casemore a:hover {
    opacity: .9;
}

.m-case {
    display: none;
}

.m-case h1 {
    text-align: center;
    font-weight: 700;
}

.mcase {
    position: relative;
}

.mcase .p_img {
    height: 50vw;
}

.mcase .p_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mcase .p_info {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    padding: 0 5%;
}

.mcase .p_info .p_infobox h2 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.mcase .p_info .p_infobox p {
    margin-bottom: 0;
    color: #fff;
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}

.home-news {
    margin-bottom: 5%;
}

.home-news .news-title {
    padding: 5% 0;
}

.home-news .news-title h2 {
    font-weight: 700;
    font-size: 40px;
    text-align: center;
}

.home-news .news-title .newsmore {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 10rem;
    height: 3rem;
    line-height: 3rem;
}

.home-news .news-title .newsmore:hover {
    color: #e87d13;
}

.home-news .news-title .newsmore::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #e87d13;
    transition: width 0.5s;
    z-index: 9;
}

.home-news .news-title .newsmore:hover::after {
    width: 100%;
}

.home-news .news-title .newsmore span img {
    opacity: 0;
}

.home-news .news-title .newsmore:hover span img {
    opacity: 1;
    transition: all 1s ease;
}

.home-news .news-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 5%;
}

.home-news .news-top h3 {
    color: #e87d13;
    font-weight: 500;
    margin-bottom: 30px;
}

.home-news .news-top h2 {
    color: #e87d13;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 28px;
}

.home-news .news-top p {
    font-weight: 600;
    line-height: 2.5;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.home-news .news-top .newstopimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-news .news-top .news-topleft {
    width: 40%;
}

.home-news .news-top .news-topright {
    width: 50%;
}

/* .home-news .news-bottom {
    justify-content: space-between;
}

.home-news .news-bottom .news-list {
    display: flex;
    align-items: center;
}

.home-news .news-bottom .news-list .news-time {
    color: #220c58;
    border-right: 1px solid #220c58;
    padding-right: 20px;
}

.home-news .news-bottom .news-list .news-time span {
    font-size: 60px;
}

.home-news .news-bottom .news-list .news-time p {
    font-size: 24px;
    margin: 0;
    white-space: nowrap;
}

.home-news .news-bottom .news-list .news-content {
    padding-left: 20px;
}

.home-news .news-bottom .news-list .news-content h3 {
    color: #220c58;
    font-size: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.5;
}

.home-news .news-bottom .news-list .news-content p {
    margin: 0;
    color: #333;
    line-height: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
} */

.home-news .newsitem .newsimg {
    overflow: hidden;
    height: 14vw;
}

.home-news .newsitem .newsimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-news .newsitem .newstext {
    padding: 10px;
}

.home-news .newsitem .newstext p {
    margin-bottom: 0;
}

.home-news .newsitem .newstext .newscontent {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #333;
    margin-bottom: 10px;
}

.home-news .newsitem .newstext .newsdate {
    color: #333;
}

.home-news .newsitem:hover .newsimg img {
    transform: scale(1.1);
}

.home-news .newsitem:hover .newstext .newscontent {
    color: #E87D13;
}

.home-news .h-newsimg {
    overflow: hidden;
    height: 25vw;
}

.home-news .h-newsimg:hover img {
    transform: scale(1.1);
}

/* 公司简介 */
.main .content .abouttext {
    margin: 15px 0;
}

/* 荣誉资质 */
.honorcontent {
    margin-top: 30px;
}

.honorcontent .honoritem {
    border: 1px solid #ddd;
    padding: 20px;
    cursor: pointer;
    margin-bottom: 20px;
}

.honorcontent .honoritem .honorimg {
    position: relative;
    width: 100%;
    padding: 38% 0;
    overflow: hidden;
    background: #ececec;
}

.honorcontent .honoritem .honorimg img {
    transition: 0.6s;
    transform: scale(0.9);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.honorcontent .honoritem:hover .honorimg img {
    transform: scale(1.1);
}

.honorcontent .honoritem .honortext {
    transition: 0.6s;
    font-size: 16px;
    color: #5b5c5c;
    margin-top: 2%;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.honorcontent .honoritem:hover .honortext {
    color: #220c58;
}

.honorlist {
    margin-top: 30px;
}

.honorlist h1 {
    text-align: center;
    line-height: 1.6;
    font-size: 28px;
    color: #333;
    font-weight: 700;
}

.honorlist h5 {
    font-size: 16px;
    color: #ccc;
    text-align: center;
}

.honorlist .honorlist-content {
    margin: 24px 0;
    text-align: center;
}

.honorlist .content_text {
    padding-top: 30px;
}

.culturecontent,
.orgcontent {
    text-align: center;
    margin: 30px 0;
}

/* 企业风采 */
.qyfccontent {
    margin-top: 15px;
}

.qyfccontent h3 {
    font-size: 20px;
    background-color: #F4F4F4;
    padding: 10px;
    margin-bottom: 10px;
}

.qyfccontent .qyfcitem {
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.qyfccontent .qyfcitem .qyfcimg {
    width: 100%;
    height: 12vw;
    overflow: hidden;
}

.qyfccontent .qyfcitem .qyfcimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qyfccontent .qyfcitem:hover .qyfcimg img {
    transform: scale(1.2);
}

.qyfccontent .qyfcitem .qyfctext {
    color: #333;
    padding: 10px;
}

.qyfccontent .newqyfcitem {
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.qyfccontent .newqyfcitem .qyfcimg {
    width: 100%;
    height: 23vw;
    overflow: hidden;
}

.qyfccontent .newqyfcitem .qyfcimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qyfccontent .newqyfcitem:hover .qyfcimg img {
    transform: scale(1.2);
}

.qyfccontent .newqyfcitem .qyfctext {
    color: #333;
    padding: 10px;
}

/* 梦得商贸 */
/* 员工活动 */
/* 商务合作 */
.mdsmcontent,
.yghdcontent,
.swhzcontent {
    margin-top: 15px;
}

.mdsmcontent .mdsmitem,
.yghdcontent .yghditem,
.swhzcontent .swhzitem {
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.mdsmcontent .mdsmitem .mdsmimg,
.yghdcontent .yghditem .yghdimg,
.swhzcontent .swhzitem .swhzimg {
    height: 12vw;
    overflow: hidden;
}

.mdsmcontent .mdsmitem .mdsmimg img,
.yghdcontent .yghditem .yghdimg img,
.swhzcontent .swhzitem .swhzimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mdsmcontent .mdsmitem:hover .mdsmimg img,
.yghdcontent .yghditem:hover .yghdimg img,
.swhzcontent .swhzitem:hover .swhzimg img {
    transform: scale(1.2);
}

.mdsmcontent .mdsmitem .mdsmtext,
.yghdcontent .yghditem .yghdtext,
.swhzcontent .swhzitem .swhztext {
    color: #333;
    padding: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* 加入我们 */
.jobcontent h3 {
    color: #666666;
    text-align: center;
    font-weight: 700;
    margin-top: 15px;
}

.jobcontent h5 {
    color: #666666;
    text-align: center;
    font-weight: 700;
}

.jobcontent p {
    margin-bottom: 0;
    line-height: 2;
}

table thead tr th,
table tbody tr th {
    white-space: nowrap;
}

table tbody tr td:nth-child(4) {
    width: 600px;
    line-height: 2;
}

.jobcontent .jobadd {
    display: flex;
    align-items: center;
}

.jobcontent .jobadd span {
    display: block;
    white-space: nowrap;
}

.jobcontent .jobadd p {
    text-indent: 0;
}

/* 联系我们 */
.contactcontent {
    margin-top: 15px;
}

.contactcontent h5 {
    color: #666666;
    font-weight: 700;
}

.contactcontent ul {
    margin: 0;
    padding: 0;
}

.contactcontent ul li {
    line-height: 2;
}

.contactcontent .contact {
    margin-bottom: 50px;
}

/* 新闻中心 */
.news {
    margin-top: 15px;
}

.news .newsitem {
    border: 1px solid #e1e1e1;
    padding: 30px;
    background: #fff;
    margin-bottom: 35px;
}

.news .newsitem .newstitle {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #cbcbcb;
    margin-bottom: 15px;
}

.news .newsitem .newstitle h3 {
    padding-bottom: 15px;
    font-size: 18px;
    color: #565656;
    font-weight: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.news .newsitem .newstitle .date {
    font-size: 14px;
    color: #666;
}

.news .newsitem .newsinfo {
    font-size: 14px;
    line-height: 2;
    color: #999999;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.news .newsitem .newsmore {
    margin-top: 15px;
}

.news .newsitem .newsmore span {
    display: block;
    width: fit-content;
    line-height: 33px;
    text-align: center;
    font-size: 14px;
    color: #666666;
    border: 1px solid #e1e1e1;
    padding: 0 20px;
}

.news .newsitem:hover {
    -webkit-box-shadow: 0px 2px 13px 1px rgba(8, 1, 3, 0.18);
    box-shadow: 0px 2px 13px 1px rgba(8, 1, 3, 0.18);
}

.news .newsitem:hover .newstitle h3 {
    color: #616062;
}

.news .newsitem:hover .newsmore span {
    color: #fff;
    background-color: #616062;
}

.newslist {
    margin-top: 30px;
}

.newslist .newslisttitle {
    font-size: 24px;
    color: #363636;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.7;
    text-align: center;
}

.newslist .newsbar {
    font-size: 14px;
    font-family: Arial;
    color: #9e9e9e;
    line-height: 35px;
    border-bottom: 1px dashed #cfcfcf;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.newslist .newsbar .newsbartime {
    position: relative;
    padding-left: 25px;
}

.newslist .newsbar .newsbartime i {
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: 0;
}

.newslist .newsbar .newsbartime i::after {
    opacity: .5;
    background-position: 0 -360px;
}

.newslist .newsbar .newsbarnum {
    position: relative;
    padding-left: 25px;
}

.newslist .newsbar .newsbarnum i {
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: 0;
}

.newslist .newsbar .newsbarnum i::after {
    opacity: .5;
    background-position: 0 -330px;
}

.newslist .newslisttext {
    line-height: 2;
    color: #333;
}

.newslist .content_text {
    margin-top: 30px;
}

.newslist .newslisttext img {
    max-width: 100%;
    height: 30vw !important;
}

/* 代工服务 */
.dgfwcontent {
    margin-top: 30px;
}

/* 技术支持 */
.tech {
    margin-top: 30px;
}

.tech .techitem {
    margin-bottom: 40px;
    position: relative;
}

.tech .techitem::before {
    content: '';
    width: 100px;
    height: 2px;
    display: block;
    background: #333;
    margin-bottom: 15px;
    transition: .6s width;
}

.tech .techitem .techtitle {
    color: #333;
    font-weight: bold;
    font-size: 20px;
    line-height: 22px;
    position: relative;
}

.tech .techitem .techtext {
    color: rgba(0, 0, 0, .6);
    margin-top: 20px;
    line-height: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.tech .techitem .techdate {
    color: rgba(0, 0, 0, .6);
    line-height: 28px;
}

.tech .techitem:hover {
    transform: translateY(-7px);
}

.tech .techitem:hover::before {
    background: #220c58;
    width: 100%;
    transition: 1s all;
}

.techlist {
    margin-top: 30px;
}

.techlist .techlisttitle {
    font-size: 20px;
    color: #363636;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.7;
}

.techlist .techbar {
    font-size: 14px;
    font-family: Arial;
    color: #9e9e9e;
    line-height: 35px;
    border-bottom: 1px dashed #cfcfcf;
    margin-bottom: 20px;
    display: flex;
}

.techlist .techbar .techbartime {
    margin-right: 20px;
    position: relative;
    padding-left: 25px;
}

.techlist .techbar .techbartime i {
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: 0;
}

.techlist .techbar .techbartime i::after {
    opacity: .5;
    background-position: 0 -360px;
}

.techlist .techbar .techbarnum {
    position: relative;
    padding-left: 25px;
}

.techlist .techbar .techbarnum i {
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: 0;
}

.techlist .techbar .techbarnum i::after {
    opacity: .5;
    background-position: 0 -330px;
}

.techlist .techlisttext {
    line-height: 2;
    color: #333;
}

.techlist .content_text {
    margin-top: 30px;
}

/* 产品展示 */
.product {
    margin-top: 15px;
}

.product .productitem {
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.product .productitem .productimg {
    overflow: hidden;
    height: 22vw;
}

.product .productitem .productimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product .productitem .producttitle {
    padding: 10px 15px;
}

.product .productitem .producttitle p {
    margin-bottom: 0;
    color: #666;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.product .productitem:hover .productimg img {
    transform: scale(1.1);
}

.productlist {
    margin-top: 15px;
}

.productlist .productlistimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.productlist .productlisttext .pro_top {
    font-size: 24px;
}

.productlist .productlisttext .pro_top h6 {
    color: #333;
    margin-top: 10px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
}

.productlist .productlisttext .pro_top h6 small {
    display: flex;
}

.productlist .productlisttext .pro_top h6 small em {
    font-weight: 700;
}

.productlist .productlisttext .pro_top h6 small p {
    margin-bottom: 0;
}

.productlist .productlistlink {
    text-align: center;
}

.productlist .productlistlink a {
    margin-bottom: 50px;
    display: block;
}

.productlist .productbtn a {
    color: #fff;
    display: block;
    background-color: #F38F00;
    width: fit-content;
    padding: .7em 1.875em;
    margin-top: 10px;
    font-size: 16px;
    border-radius: 2em;
}

.productlist .productbtn a:hover {
    opacity: .8;
}

.productlist .productbtn p {
    margin-bottom: 0;
}

.code p {
    background-color: #220c58;
    padding: 5px 0;
    margin-top: 10px;
}

.code p span {
    margin-bottom: 0;
    background: url(../images/mob.png) no-repeat left;
    padding-left: 20px;
    font-size: 16px;
    color: #fff;
}

.pro-bottom {
    margin-bottom: 20px;
}

.pro-bottom img {
    max-width: 100%;
    height: auto;
}

.bigtit {
    font-size: 21px;
    font-weight: bold;
    display: block;
    border-left: 5px solid #220c58;
    padding-left: 15px;
    line-height: 2.6;
    margin-bottom: 15px;
    margin-top: 25px;
    background-color: #ecedef;
    color: #888;
}

.pro-bottom p {
    margin-bottom: 0;
    line-height: 2;
}

.productlist .content_text {
    margin-top: 30px;
}

.listitem {
    text-align: center;
}

.listimg {
    height: 12rem;
    overflow: hidden;
}

.listimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.listitem p {
    line-height: 2.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 0 10px;
    color: #333;
}

.listimg:hover img {
    transform: scale(1.1);
}

.pro-news ul {
    padding: 0;
}

.pro-news ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dashed #ecedef;
    padding-right: 10px;
}

.pro-news ul li a {
    display: block;
    line-height: 2.5;
    color: #333;
}

.ziliaoitem {
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.ziliaoitem .ziliaoimg {
    overflow: hidden;
    height: 12rem;
}

.ziliaoitem .ziliaoimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ziliaoitem:hover {
    border: 1px solid #333;
}

.ziliaoitem:hover .ziliaoimg img {
    transform: scale(1.1);
}

.ziliaoitem .ziliaotext {
    padding: 10px;
    color: #333;
}