/* 面包屑 */

.bread {
    background-color: rgba(247, 247, 247, 1);
    box-shadow: 3px 3px 12px rgb(0 0 0 / 15%);
    padding: 0.2rem 0;
}

.bread_box {
    display: flex;
}

.bread_nav {
    display: flex;
    font-size: 14px;
    align-items: center;
}

.bread_nav img {
    margin-right: 5px;
    width: 20px;
}

.bread_nav a {
    color: #555;
    font-size: 14px;
}

.bottom_nav {
    display: flex;
    justify-content: center;
    margin-left: auto;
}

.bottom_nav a {
    font-size: 16px;
    padding: 12px 25px;
    color: #020202;
}

.bottom_nav a:hover {
    background: #d72c25;
    color: #fff;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 1, 1);
}


/* page */

.content_ny {
    margin-top: 45px;
    margin-bottom: 45px;
}

.content_ny h1 {
    font-size: 70px;
    color: rgba(250, 250, 250, 1);
    line-height: 1;
    text-align: center;
    font-family: Arial;
    margin-bottom: 0px;
    font-weight: bold;
}

.content_ny h2 {
    font-size: 28px;
    font-family: Microsoft YaHei;
    text-align: center;
    font-weight: normal;
    margin-top: -20px;
    color: rgba(0, 0, 0, 1);
}

.content_ny_box {
    margin-top: 30px;
}

.content_ny_box p {
    font-size: 16px;
    color: rgba(51, 51, 51, 1);
    line-height: 2;
    font-family: Microsoft YaHei;
}

.content_ny img {
    width: auto;
    display: inline-block;
}


/* 产品列表页 */

.content_pic {
    margin: 50px 0;
}

.content_pic ul {
    display: flex;
    flex-wrap: wrap;
}

.content_pic ul li {
    width: 23.4%;
    background-color: #f2f2f2;
    box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 36px;
    margin-right: 1.6%;
    margin-bottom: 1.6%;
}

.content_pic ul li:nth-of-type(4n) {
    margin-right: 1.6%;
}

.content_pic ul li a {
    display: block;
}

.content_pic ul li a .content_pic_box {
    overflow: hidden;
  
}

.content_pic ul li a .content_pic_box .content_pic_img {
    margin: 10px;
    max-height:35vh;
    overflow: hidden;
    position: relative;
    transition: all 0.6s ease;
    display: block;
}

.content_pic ul li a .content_pic_box .content_pic_img img {
    overflow: hidden;
    display: block;
    width: 100%;
}

.content_pic ul li a:hover .content_pic_box .content_pic_img {
    transform: scale(1.1);
}

.content_pic ul li a p {
    font-size: 18px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 60px;
    line-height: 60px;
    color: #333;
    font-weight: lighter;
    padding:0 10px;
}

.content_pic ul li a .content_pic_more {
    background-color: #4a4a4a;
    display: flex;
    color: #fff;
    align-items: center;
    font-size: 14px;
    line-height: 3;
    border-radius: 5px;
    margin: 0 15px;
    transform: 0.6s;
    padding: 0 10px;
}

.content_pic ul li a .content_pic_more img {
    margin-left: auto;
    width: 20px;
}

.content_pic ul li a:hover .content_pic_more {
    background-color: #d72c25;
    transform: 0.6s;
}


/* 内容页 */

.content_article {
    display: flex;
    margin: 60px 0;
}

.article_L {
    border: 1px solid #f0f0f0;
    width: 62%;
    padding: 40px;
}

.article_L h1 {
    font-size: 24px;
    text-align: center;
    color: #000;
    padding: 0 5px 24px 5px;
}

.article_shortitle {
    display: flex;
    justify-content: center;
    border-top: 1px solid #d9d9d9;
    padding: 20px 0;
}

.article_shortitle li {
    font-size: 16px;
    margin: 0 2px;
    color: #707070;
    font-weight: normal;
}

.article_content {
    padding: 2px 0;
}

.article_content p {
    font-size: 16px;
    line-height: 26px;
}

.article_content img {
    display: inline-block;
    /* max-width: 100%; */
    margin: 1px 0;
    width: auto;
}

.article_content p img{max-width:100%}

.article_R {
    width: 30%;
    margin-left: auto;
}

.prev {
    width: 100%;
    border: 1px solid #f0f0f0;
    margin-bottom: 25px;
}

.next {
    width: 100%;
    border: 1px solid #f0f0f0;
    margin-bottom: 25px;
}

.prevtitle {
    display: block;
    padding: 15px;
}

.prevtitle_i {
    font-size: 18px;
}

.prevtitle a {
    margin: 15px 0;
    font-size: 16px;
    color: #707070;
    display: block;
    background: #f0f0f0;
    padding: 10px;
    line-height: 26px;
}

.article_tj {
    border: 10px solid #f0f0f0;
    padding: 20px;
}

.article_tj span {
    font-size: 24px;
    color: #000;
    font-weight: bold;
}

.article_tj ul li {
    border-bottom: 1px solid #f0f0f0;
    padding: 25px 0;
}

.article_tj ul li a {
    display: block;
}

.article_tj ul li p {
    font-size: 15px;
    line-height: 28px;
    color: #666;
}

.article_tj ul li em {
    font-size: 15px;
    padding-top: 10px;
    display: block;
    font-style: normal;
    color: #333;
}


/* list_new */

.content_list {
    margin-top: 45px;
    margin-bottom: 45px;
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}

.content_list dl {
    padding: 10px;
    box-sizing: border-box;
    box-shadow: 0 0 15px #e4e4e4;
}

.content_list dl a {
    display: flex;
}

.content_list dl a dt {
    width: 190px;
    overflow: hidden;
    height: 122px;
    border: 1px solid #f2f2f2;
}

.content_list dl a dt img {
    height: 100%;
}

.content_list dl a dd {
    width: 70%;
    padding-left: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content_list dl a dd h3 {
    font-size: 16px;
    color: #222;
    display: inline-block;
    margin-bottom: 5px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content_list dl a:hover dd h3 {
    color: #d72c25
}

.content_list dl a dd p {
    line-height: 24px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #666;
    margin-bottom: 10px;
    font-size: 15px;
    text-indent: -2em;
}

.content_list dl a dd em {
    font-style: normal;
    color: #666;
}

.content_list dl a:hover dd em {
    color: #d72c25;
}


/* concat */

.concat {}

.concat .pcwl_content {
    background-color: rgba(242, 244, 245, 1);
    display: flex;
    /* grid-template-columns: 65% 35%; */
    margin: 50px auto;
}

.concat .concat_L {
    padding: 30px 55px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 65%;
}

.concat .concat_L h2 {
    font-weight: bold;
    font-family: Impact;
    font-size: 48px;
    color: rgba(32, 32, 32, 1);
    height: 48px;
    line-height: 48px;
}

.concat_L_txt {
    display: flex;
}

.concat_L_txt_box1 {
    width: 48%;
    margin-top: 18px;
}

.concat_L_txt_box1 span {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.concat_L_txt_box1 dl {
    display: flex;
    align-items: center;
    height: 48px;
    margin-top: 18px;
}

.concat_L_txt_box1 dl dt {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.concat_L_txt_box1 dl dd p {
    line-height: 1.5;
    font-weight: 600;
}

.concat_L_txt_box1 dl dd p:first-of-type {
    font-size: 14px;
    font-weight: normal;
}

.concat_L_txt_box2 {
    display: flex;
    /* flex-direction: column; */
    margin-top: 20px;
}

.concat_L_txt_box2_wx {
    margin-left: 40px;
}

.concat_L_txt_box2_wx img {
    width: 150px;
}

.concat_L_txt_box2_wx p {
    font-size: 14px;
    text-align: center;
    height: 28px;
    line-height: 28px;
}

.concat .pcwl_content .concat_R {
    width: 35%;
    overflow: hidden;
}

.concat .pcwl_content .concat_R img {
    display: block;
    width: 499px;
}


/* message */

.message {
    width: 90%;
    margin: 0 auto;
    position: relative;
}

@media screen and (max-width: 1600px) {
    .message {
        width: 90%;
        margin: 0 auto;
        position: relative;
    }
}

.message h4 {
    font-size: 28px;
    text-align: center;
    letter-spacing: 1px;
}

.gustbook_txt {
    font-size: 30px;
    font-weight: bold;
}

.gustbook_line {
    width: 80px;
    height: 3px;
    background: #f00;
    margin: 0 auto;
    margin-top: 15px;
}

.gustbook_title p {
    font-size: 12px;
    color: #cccccc;
    line-height: 20px;
}

.gustbook {
    margin-top: 20px;
}

.gusttop {
    width: 100%;
    border: 1px solid #cccccc;
}

.gusttop textarea {
    width: 99%;
    height: 150px;
    border: 0;
    resize: none;
    font-size: 16px;
    padding: 10px;
    box-sizing: border-box;
}

.gustbott {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.gustbott_gs {
    width: 49%;
    flex-wrap: wrap;
    display: flex;
    margin-right: 2%;
    margin-top: 25px;
}

.gustbott_gs:nth-child(2n) {
    margin-right: 0;
}

.gustbott_gs input {
    width: 100%;
    height: 45px;
    font-size: 15px;
    border: 1px solid #cccccc;
    padding: 0 10px;
    box-sizing: border-box;
}

.gustbott_gs input:focus,
.gusttop textarea:focus,
.gust_btn input:focus {
    outline: none;
}

.gust_btn {
    width: 100%;
    margin-top: 35px;
    margin-bottom: 100px;
}

.gust_btn input:hover {
    background: #d72c25;
}

.gust_btn input {
    display: inline-block;
    text-align: center;
    width: 100%;
    font-size: 15px;
    padding: 12px 0;
    border: 0;
    cursor: pointer;
    font-size: 16px !important;
    font-weight: 600;
    background: #333;
    color: #fff;
    letter-spacing: 10px;
}

#vcodetxt {
    width: 70%;
}

#VCode {
    width: 29%;
}

@media screen and (max-width: 1360px) {
    #VCode {
        width: 28%;
    }
}


/* 内容页 */

.content_article {
    display: flex;
    margin: 60px 0;
}

.article_L {
    border: 1px solid #f0f0f0;
    width: 62%;
    padding: 40px;
}

.article_L h1 {
    font-size: 24px;
    text-align: center;
    color: #000;
    padding: 0 5px 24px 5px;
}

.article_shortitle {
    display: flex;
    justify-content: center;
    border-top: 1px solid #d9d9d9;
    padding: 20px 0;
}

.article_shortitle li {
    font-size: 16px;
    margin: 0 2px;
    color: #707070;
    font-weight: normal;
}

.article_content {
    padding: 2px 0;
}

.article_content p {
    font-size: 16px;
    line-height: 32px;
}

.article_content img {
    display: inline-block;
    /* max-width: 100%; */
    margin: 1px 0;
}

.article_R {
    width: 30%;
    margin-left: auto;
}

.prev {
    width: 100%;
    border: 1px solid #f0f0f0;
    margin-bottom: 25px;
}

.next {
    width: 100%;
    border: 1px solid #f0f0f0;
    margin-bottom: 25px;
}

.prevtitle {
    display: block;
    padding: 15px;
}

.prevtitle_i {
    font-size: 18px;
}

.prevtitle a {
    margin: 15px 0;
    font-size: 16px;
    color: #707070;
    display: block;
    background: #f0f0f0;
    padding: 10px;
    line-height: 26px;
}

.article_tj {
    border: 10px solid #f0f0f0;
    padding: 20px;
}

.article_tj span {
    font-size: 24px;
    color: #000;
    font-weight: bold;
}

.article_tj ul li {
    border-bottom: 1px solid #f0f0f0;
    padding: 25px 0;
}

.article_tj ul li a {
    display: block;
}

.article_tj ul li p {
    font-size: 15px;
    line-height: 28px;
    color: #666;
}

.article_tj ul li em {
    font-size: 15px;
    padding-top: 10px;
    display: block;
    font-style: normal;
    color: #333;
}


/* content_product_show */

.content_product_show {
    margin: 50px 0 20px 0;
    background-color: #f6f6f6;
    padding: 30px;
    box-sizing: border-box;
}

.content_product_show_A {
    display: flex;
}

.content_product_show_A_L {
    width: 35%;
    height: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.content_product_show_A_L img {
    height: 100%;
}

.content_product_show_A_R {
    width: 65%;
    padding-left: 40px;
    box-sizing: border-box;
}

.content_product_show_A_R h5 {
    font-size: 24px;
    color: #222;
    font-weight: bold;
    margin-bottom: 15px;
}

.content_product_show_A_R p {
    font-size: 16px;
    color: #666;
    line-height: 32px;
}

.content_product_show_A_R p strong {
    color: #222;
}

.content_product_show_A_R em {
    border-bottom: 1px dashed #999;
    display: block;
    margin: 15px 0;
}

.content_product_show_A_R_tel {
    display: flex;
    align-items: center;
}

.content_product_show_A_R_tel img {
    width: 35px;
}

.content_product_show_A_R_tel p {
    margin-left: 5px;
    color: rgba(199, 0, 39, 1);
    font-size: 30px;
    height: 60px;
    line-height: 60px;
}

.content_product_txt {
    padding: 50px 30px 50px 30px;
    background: #f6f6f6;
    margin-bottom: 50px;
}

.content_product_txt .hd {
    height: 50px;
    line-height: 50px;
    background: #fff;
    position: relative;
    border-bottom: 1px solid #999;
    margin: 0 30px;
}

.content_product_txt .hd ul {
    display: flex;
    position: absolute;
    height: 50px;
}

.content_product_txt .hd ul li {
    width: 120px;
    cursor: pointer;
    text-align: center;
}

.content_product_txt .hd ul li.on {
    height: 50px;
    background: #d72c25;
    color: #fff;
}

.content_product_txt .bd {
    background: #f6f6f6;
    padding: 20px 30px;
    box-sizing: border-box;
}

.content_product_txt .bd p {
    line-height: 32px;
}

.content_product_txt .bd p img {
    width: auto;
}