@charset "utf-8";



body{
    overflow-x: hidden;
}
#header{
    transition:all .3s;
}
.pc_none{
    display: none;
}
.header_wrap{
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9998;
    transition:all .6s;
    position: fixed;
}

.header_flex{
    height:90px;
    align-items: center;
}
.colorLo{
    display: none!important;
}
.logo{
    height:70px;
    transition:all .3s;
    margin-right: 60px;
    flex: 1;
}
.logo img{
    display: block;
    height: 100%;
    width: auto;
    transition:all .3s;
    padding-right: 15px;
    border-right: 2px solid #f9f9f9;
}
.logo_txt{
    font-size: 13px;
    font-weight: 400;
    padding-left: 15px;
}
.logo_txt p{
    letter-spacing: 3px;
    color: #fff;
}
.weixin_code{
    line-height: 80px;
    font-size: 14px;
}
.header_flex .language{
    flex:1;
    display: flex;
    justify-content: flex-end;
}
.header_flex .language a{
    display: flex;
    align-items: center;
    border:1px solid #999;
    padding:5px 20px;
}
.header_flex .language a .icon img{
    width: 22px;
}
.header_flex .language a .tit{
    font-size:14px;
    color:#000;
    margin-left: 10px;
}
.nav_pc{
    margin-right: 100px;
}
.nav_pc ul{
    
}
.nav_pc li{
    display: inline-block;
    position: relative;
    padding: 0 15px;
}
.nav_pc li>a{
    text-align: center;
    display: block;
    font-size: 16px;
    text-transform: capitalize;
    position: relative;
    transition:all .3s;
    z-index: 2;
    line-height:90px;
    color:#fff;
    border-radius: 3px;
    min-width: 60px;
}
.nav_pc li>a:after{
    width: 0;
    height: 3px;
    display: block;
    content:'';
    background: #fff;
    transition:all .3s;
}
/*.nav_pc li.cur>a,.nav_pc li a:hover{*/
/*    color:var(--theme-color);*/
/*}*/
.nav_pc li.cur>a:after,.nav_pc li>a:hover:after{
    width: 100%;
}
.nav_pc li .sub_nav{
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    width: 170%;
    background:var(--theme-color);
    transition: all .3s;
    top: 70px;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}
.nav_pc li:hover .sub_nav{
    top:90px;
    opacity: 1;
    visibility: visible;
}
.nav_pc li .sub_nav a{
    display: block;
    text-align: center;
    color: #fff;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding:6px 12px;
    border-bottom:1px solid rgba(255,255,255,.1);
}
.nav_pc li .sub_nav a:last-child{
    border-bottom: none;
}
.nav_pc li .sub_nav a:hover{
    font-weight: bold;
    background:var(--secondary-color);
    color:#fff;
}
.navbar_on{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.header_flex .tel{
    font-size:16px;
    color:#666;
    padding-left: 26px;
    position: relative;
}
.header_flex .tel:before{
    width: 2px;
    height: 20px;
    background: #e9ebe6;
    content:'';
    display: block;
    position: absolute;
    left: 0;
    top: 6px;
}
.header_flex .tel span{
    font-size: 18px;
    color:var(--theme-color);
    font-weight: bold;
}

.fixed_search{
    background: #ececec;
    left: 0;
    position: fixed;
    right: 0;
    top:-50%;
    z-index: 99999999;
    height: 50%;
    transition:all .3s;
}
.fixed_search_on{
    top: 0;
}
.fixed_search form{
    left: 10%;
    position: absolute;
    right: 10%;
    top: 42%;
    z-index: 99999999;
}
.fixed_search .key{
    width: 100%;
    height: 100px;
    background: transparent;
    padding: 20px;
    font-size: 35px;
    line-height: 60px;
    border-bottom: 2px solid #333;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}
.fixed_search .btn{
    position: absolute;
    right: 0;
    top: 20px;
    border:none;
    background: none;
    outline: none;
}
.fixed_search .btn i{
    font-size:30px;
    
}
.fixed_search .close{
    position: absolute;
    right: 70px;
    top:70px;
    opacity: 1;
    border:2px solid #666;
    padding: 12px;
    border-radius: 50%;
}
.fixed_search .close i{
    font-size:18px;
    color:#666;
}

.phone_top_nav{
    display: none;
}
.phone_top_nav .sub_nav_phone{
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.phone_top_nav .sub_nav_phone a{
    display: inline-block;
    font-size: 14px;
    margin-right: 10px;
    color: #333;
}
.phone_menu_btn{
    font-size: 16px;
    color: #fff;
    display: none;
}
.phone_menu_btn .line{
    position: relative;
    display: block;
    width:19px;
    height: 2px;
    margin: 4px 0;
    background:var(--theme-color);
    -webkit-transition: .3s;
    transition: .3s;
}
.phone_menu_btn span{
    position: absolute;
    left: 32px;
    top: 2px;
}
.menu_btn{
    height: 100%;
    border-left: 1px solid rgba(255,255,255,.3);
    width: 160px;
    font-size: 16px;
    color: #fff;
}
.menu_btn .line{
    position: relative;
    display: block;
    width:30px;
    height: 3px;
    margin: 3px 0;
    background:rgba(255,255,255,.6);
    -webkit-transition: .3s;
    transition: .3s;
}
.menu_btn span{
    position: absolute;
    left: 32px;
    top: 2px;
}
.phone_top_nav{
    position: fixed;
    width: 100%;
    z-index: 9999;
    background: #fff;
    height: 100%;
    border-top:1px solid #ccc;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: scroll;
    padding: 70px 30px 30px;
    transition: .5s;
    transform: translateY(-100%);
}
.phone_top_nav li>a{
    display: block;
    line-height: 50px;
    font-size: 16px;
    color: #5a5657;
    border-bottom: 1px solid #eee;
    font-weight: bold;
}
.phone_top_nav .sub_nav{
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.phone_top_nav .sub_nav a{
    display: inline-block;
    font-size: 14px;
    margin-right: 10px;
    color: #333;
}
.header_active .line:nth-of-type(1){
    -webkit-transform: translateY(5.5px) rotate(-45deg);
    -ms-transform: translateY(5.5px) rotate(-45deg);
    transform: translateY(5.5px) rotate(-45deg);
}
.header_active .line:nth-of-type(2){
    opacity:0;
}
.header_active .line:nth-of-type(3){
    -webkit-transform: translateY(-6.5px) rotate(45deg);
    -ms-transform: translateY(-6.5px) rotate(45deg);
    transform: translateY(-6.5px) rotate(45deg);
}
.header_active .phone_top_nav{
    transform: translateY(0);
}
.header_wrap>.container{
    border-bottom: 1px solid rgba(255,255,255,.3);
    padding-right: 0;
}
.header_on.header_wrap{
    background: #fff;
    box-shadow: 0 5px 12px rgba(0,0,0,.05);
}

.header_on.header_wrap .header_flex .language a .tit{
    color:#333;
}
.header_on .colorLo{
        display: block!important;
    }
.header_on .nav_pc li>a{
        color: #333;
    }
.header_on .logo .whiteLo{
        display: none;
    }
.header_on .nav_pc li>a:after{
        background: #007d2d;
    }
.header_on .logo_txt p{
        color: #333;
    }
.header_on .logo img{
        border-color: #333;
    }

/* banner */
.banner .item video{
    filter: brightness(50%);
}
.banner{
    position: relative;
    z-index: 1;
}
.banner .item{
    position: relative;
}
.banner .item a{
    display: block;
}
.banner .item .con{
    width: 100%;
    position: absolute;
    top: 50%;
    transform:translateY(-50%);
    color:#fff;
}
.banner .item .con h4{
    font-size:48px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    margin-bottom: 40px;
}
.banner .item .con span{
    font-size:22px;
}
.banner .item .con p{
    font-size:16px;
    font-weight:normal;
}

.banner .item .con a{
    width: 205px;
    height: 53px;
    line-height: 53px;
    margin-top: 70px;
    border-radius: 7px;
    border: 3px solid rgba(255,255,255,.3);
    background: transparent;
}
.banner .item .img img{
    width:100%;
}

.banner .slick-dots{
    position: absolute;
    bottom: 20px;
    width:100%;
    text-align: center;
    left:0;
}
.banner .slick-dots li{
    margin:0 6px;
    width: 9px;
    height: 9px;
}
.banner .slick-dots li button{
    width: 9px;
    height: 9px;
    border:1px solid var(--theme-color);
    border-radius: 0;
}
.banner .slick-dots li button:before{
    display: none;
}
.banner .slick-dots li.slick-active button{
    background: var(--theme-color);
}
.banner .slick-dots li{
    
}


/* btn */

.btn_style a{
    display: block;
    background: var(--theme-color);
    color:#fff;
    font-size:16px;
    text-align: center;
    border-radius: 3px;
}
.btn_style a:hover{
    background: var(--secondary-color);
}

/*首页css__start*/


/*公用头部*/

.tit_box1{
   padding:70px 0 25px;
}
.tit_box1 .tit{
    text-align: center;
}
.tit_box1 .tit h4{
    color:#333;
    font-size:36px;
    font-weight: bold;
    text-transform: uppercase;
}
.tit_box1 .tit p{
    font-size:14px;
    color:#666;
    text-transform: uppercase;
}

.tit_box3 .tit h4{
    color:#fff;
}
.tit_box3 .tit p{
    color:#ddd;
}


/* bg */

.bg1{
   background:url(../images/bg1.jpg) no-repeat center;
   padding:100px 0;
   background-attachment:fixed;
}
.bg2{
    background:#eef0eb;
}
.bg3{
    background:#f5f6fa;
}
.bg4{
    background:#f3f6f9;
}
.bg5{
    background: url(../images/bg5.jpg) no-repeat center center fixed;
    background-size: cover;
}

/* about */

/*.about{*/
/*    padding:80px;*/
/*    background: #eef0eb;*/
/*    margin:30px 0;*/
/*}*/
/*.about_con{*/
/*   padding-right: 40px;*/
/*   position: relative;*/
/*   padding-top: 20px;*/
/*}*/
/*.about_con:before{*/
/*    content:'';*/
/*    background: url(../images/about_bg.png) no-repeat;*/
/*    position: absolute;*/
/*    left: -20px;*/
/*    top: 0;*/
/*    display: block;*/
/*    width: 43px;*/
/*    height: 315px;*/
/*}*/
/*.about_con .tit{*/
/*    font-size:30px;*/
/*    color:#333;*/
/*    font-weight: bold;*/
/*    line-height: 1.2;*/
/*}*/
/*.about_con .con{*/
/*    padding-top: 20px;*/
/*}*/
/*.about_con .con p{*/
/*    font-size:15px;*/
/*    color:#333;*/
/*}*/
/*.about_con .con ul{*/
/*    margin-top: 20px;*/
/*}*/
/*.about_con .con li{*/
/*    margin-right: 20px;*/
/*}*/
/*.about_con .con a{*/
/*    width: 140px;*/
/*    height: 45px;*/
/*    line-height: 48px;*/
/*    display: block;*/
/*    margin-top: 45px;*/
/*    text-align: center;*/
/*    font-size:16px;*/
/*    color:#fff;*/
/*    background:var(--theme-color);*/
/*    position: relative;*/
/*    z-index: 2;*/
/*}*/
/*.about_con .con a:hover{*/
/*    color:#fff;*/
/*}*/
/*.about_con .con a:hover:before{*/
/*    width: 100%;*/
/*}*/
/*.about_img .img{*/
/*    cursor: pointer;*/
/*}*/
.more{
    transition: all 0.5s ease;
    border: 1px;
}
.more:hover{
    color: #00712b!important;
    background: #fff!important;
    border: 1px solid #00712b!important;
}
.sy_about{
    padding: 80px 0 50px 30px;
}
.partner{
    margin: 50px 0 30px 0;
    background: #fff;
}
.partner .slick-dots{
    display: none!important;
}
.partner .img{
    padding: 30px;
}
.sy_ab_left{ width: 40%;}
.sy_ab_right{ width: 60%;}
.sy_ab_left h3{ font-size: 32px;font-weight:bold;color:#333;line-height:50px;}
.sy_ab_left .more{ 
    margin: 50px 0;
    display: inline-block;
    padding: 15px 50px;
    background: #00712b;
    border-radius: 7px;
    color: #fff;
    font-size: 16px;
}
.sy_number{ width: 80%;}
.sy_number ul li{ margin-bottom: 40px;}
.sy_number ul li .num_txt{ margin-right: auto;}
.sy_number ul li .num_txt h4{ font-size: 26px;}
.sy_number ul li .num_txt b{ font-size: 90px; line-height: 80px; font-family: teko; display: inline-block;color: #333;}
.sy_number ul li .num_txt h4 sub{
    font-size: 36px;
    color: #333;
}
.sy_number ul li .num_txt p{
    font-size: 16px;
    color: #333;
}
.sy_number ul li .num_txt h4{
    margin-bottom: 20px;
}
.sy_number ul li .num_icon img{-webkit-transition: 2s ease;-moz-transition: 2s ease;}
.sy_number ul li:hover .num_icon img{-webkit-transform: rotatey(360deg);-moz-transform: rotatey(360deg);}
.sy_ab_right p{ font-size: 16px;color:#333;}
.sy_ab_right .imgfdd{
    overflow: hidden;
    margin-top: 40px; 
    border-radius: 16px;
    }
.h_h{ height: 90px;}
.sy_ab_right .imgfdd:hover img{
    transform: scale(1.1);
}

/* product */

.sy_pro_list ul li{
    float: left; margin-right: 1%; width: 24%; transition: .3s ease; border-radius: 16px; overflow: hidden; position: relative; height: 384px; cursor: pointer;}
.sy_pro_list ul li .syproimg{
    width: 100%; height: 100%; object-fit: cover;}
.sy_pro_list ul li:nth-child(3){
    margin-right: 0;}
.sy_pro_list ul li.on{
    width: 50%;}
.sy_pro_list ul li .sy_pro_txt{
    position: absolute; left: 40px; bottom: 60px; color: #fff;}
.sy_pro_txt .shhid{
    display: none; transition: .3s ease;}
.sy_pro_txt .cir{
    margin: 20px 0 30px;}
.sy_pro_txt .sy_pro_li{
    height: 24px; overflow: hidden;}
.sy_pro_txt .sy_pro_li img{
    height: 20px; margin-right: 10px;}
.sy_pro_txt .sy_pro_li a{
    color: #fff; font-size: 18px; display: inline-block; margin-right: 40px;}
.sy_pro_txt .sy_pro_li a:hover{
    color: #00aac7;}
.sy_pro_txt .sy_pro_li a:hover img{
    filter: none;}
.sy_pro_list ul li.on .sy_pro_txt .shhid{ 
    display: block;}
.HeadTit1{
    padding-top: 70px;
    text-align: center;
    padding-bottom: 50px;
}
.HeadTit1 h2{
    font-weight: bold;
    color: #333;
    font-size: 44px;
    margin-bottom: 25px;
}
.HeadTit1 h4{
    color: #333;
    font-size: 18px;
}
.c{
    clear: both;
}
.pro_tit h4{
    margin-bottom: 15px;
    color: #fff;
    font-size: 18px;
}
.pro_tit h2{
    margin-bottom: 25px;
    color: #fff;
    font-size: 26px;
    font-weight: bold;
}
.pro_tit p{
    font-size: 14px;
    color: #fff;
}
.sy_pro_txt .more{
    margin-top: 50px;
    font-size: 16px;
    color: #fff;
    display: none;
    padding: 15px 50px;
    border-radius: 7px;
    border: 3px solid rgba(255,255,255,.3);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}
.proList .on .more{
    visibility: visible;
    opacity: 1;
    display: inline-block;
}

/*ProFlow*/
.proFlow{
    width: 100%;
    padding: 50px 0;
}
.flowTit{
    margin-top: 50px;
}
.flowTit li h3{
    transition: all 0.5s ease;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}
.flowTit .tit h1{
    font-size: 36px;
    font-weight: bold;
    color: #333;
}
.proFlow{
    width: 70%;
}
.proChoose{
    width: 30%;
}
.chooseFlow li{
    width: 50%;
    margin-bottom: 30px;
}
.chooseFlow{
    height: 100%;
    padding: 30px 0;
}
.proFlow .tit h3{
    color: #333;
    font-size: 24px;
    margin-bottom: 30px;
}
.proFlow .tit .squ{
    background: #007d2d;
    width: 40px;
    height: 6px;
    margin-bottom: 50px;
}
.proWide{
    position: relative;
}
.proWide .proGuide{
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}
.proWide .rou{
    margin: 0 5px;
    border: 1px solid transparent;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.5s ease;
}
.proWide .rou:hover{
    border: 1px solid rgba(0,113,43,.4);
}
.proWide .core{
    border-radius: 50%;
    background: #007d2d;
    width: 7px;
    height: 7px;
}
.proWide .side{
    border: 1px solid #007d2d;
}
.proWide .proMenu:first-child{
    position: static;
}
.proWide .proMenu{
    position: absolute;
    top: 0;
    transform: translateY(50%);
    transition: all 0.5s ease;
    visibility: hidden;
    opacity: 0;
}
.proWide .show{
    transform: translateY(0%);
    visibility: visible;
    opacity: 1;
}
.flowTit .gre h3{
    color: #007d2d;
}
.bigFlow li .itemTit h2{
    color: #333;
    font-size: 32px;
    font-weight: bold;
}
.bigFlow li .itemTit .titTxt{
    display: inline-block;
}
.bigFlow li .itemBg{
    flex: 1;
}
.bigFlow li .squ{
    margin-top: 15px;
    background: #007d2d;
    width: 100%;
    height: 2px;
    margin-bottom: 50px;
}
.bigFlow li .more{
    font-size: 16px;
    display: inline-block;
    color: #fff;
    padding: 15px 50px;
    background: #00712b;
    border-radius: 7px;
    margin-top: 50px;
}
.bigFlow li{
    display: none;
}
.bigFlow li:first-child{
    display: flex;
}
.bigFlow li .itemTit{
    flex: 1;
}
/*casesFlow*/

.casesFlow {
    position: relative;
    margin-bottom: 100px;
}
.casesFlow .slick-dots{
    z-index: 999;
    width: auto!important;
    display: inline-block!important;
    position: absolute;
    bottom: 7%;
    right: 3%;
}
.casesFlow li{
    position: relative;
}
.casesFlow .slick-dots li button:before{
    opacity: 1;
}
.casesFlow .slick-dots .slick-active button:before{
    color: #007d2d;
}
.casesFlow .slick-dots li button:before{
    color: #fff;
}
.casesFlow li .caseTxt{
    z-index: 3;
    position: absolute;
    left: 5%;
    bottom: 10%;
}
.casesFlow li .caseCover{
    border-radius: 9px;
    overflow: hidden;
    position: relative;
}
.casesFlow li .caseCover:after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 15%;
    background: linear-gradient(transparent,rgba(0,0,0,.8));
    bottom: 0;
}
.casesFlow li .caseTxt h3{
    margin: 20px 0 15px 0;
    font-size: 26px;
    color: #fff;
    font-weight: bold;
}
.casesFlow li .caseTxt h4{
    font-size: 18px;
    color: #fff;
}
.casesFlow li .caseTxt p{
    font-size: 14px;
    color: #fff;
}

/*footer_message*/

.footer_message {
    margin-bottom: 100px;
    background: url(../images/bg3.jpg) no-repeat center;
    position: relative;
    padding: 70px 0 80px;
}
.footer_message h2{
    color:#fff;
    text-align: center;
    font-size: 48px;
    font-weight: bold;
}
.footer_message form {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
    margin-top: 30px;
}
.footer_message input{
    outline: none;
    border:none;
    font-size:16px;
}
.footer_message .input {
    background: #fff;
    text-indent: 30px;
    width: 21.4%;
    height: 54px;
    line-height: 54px;
}
.footer_message .content {
    width: 35.7%;
}
.footer_message .button{
    background: #007d2d;
    color: #fff;
    text-align: center;
    width: 17%;
    cursor: pointer;
    border: 1px solid #007d2d;
    transition: all 0.5s ease;
}
.footer_message .button:hover{
    background: #fff;
    color: #007d2d;
}
.footer_message .b_top {
    position: absolute;
    bottom: -25px;
    left: 50%;
    width: 50px;
    height: 50px;
    line-height: 42px;
    text-align: center;
    background: #0064b3;
    color: #0064b3;
    border: 4px solid #fff;
    border-radius: 100%;
    margin-left: -25px;
    z-index: 99;
}
.footer_message .b_top span {
    font-size: 20px;
    color: #fff;
    width: 42px;
    height: 42px;
    line-height: 42px;
    display: block;
}
.footer_message .b_top:hover{
    background:var(--theme-hover-color);
}
.footer{
    padding-top: 100px;
    background: #111;
}
.footer ul li:nth-child(2){
    display: none;
}
.footer ul li .footNav{
    padding-top: 20px;
    border-top: 1px solid #a4a4a4;
}
.footer ul li .footFirstcol{
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}
.footer ul li .footSubnav{
    margin-top: 30px;
}
.footer ul li .footSubnav a{
    display: block;
    color: #a4a4a4;
    margin-bottom: 5px;
    transition: all 0.5s ease;
}
.footer ul li .footSubnav a:hover{
    color: #fff;
}
.footer .footerFlow{
    margin-bottom: 45px;
}
.footer .footLanguage{
    font-size: 16px;
}
.footer .footLanguage a{
    color: #fff;
}
.footer svg{
    width: 30px;
    height: 30px;
    margin-left: 10px;
}
.footer .icp{
    margin-top: 5px;
}
.footer .icp p{
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-top: 1px solid #a4a4a4;
}


/*advantage*/
.advantage{
    margin-bottom: 100px;
}
.advantage .advTit .titL .squ{
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 5px;
    background: #007d2d;
}
.advantage .advTit .titL .squ p{
    display: inline-block;
    font-size: 48px;
    font-weight: bold;
    color: #fff;
}
.advantage .advTit .titL h1{
    font-size: 60px;
    margin-left: 20px;
    font-weight: bold;
    color: #007d2d;
}
.advantage .advTit .titL{
    padding-right: 30px;
    border-right: 2px solid #007d2d;
    margin-right: 30px;
}
.advantage .advTit .titR h3{
    font-size: 32px;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}
.advantage .advTit .titR h4{
    color: #007d2d;
    font-size: 20px;
    font-weight: bold;
}
.advantage .advTit{
    margin-bottom: 50px;
}
.advantage .advFlow .advCover{
    width: 55%;
}
.advantage .advFlow .advCon .rou{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #007d2d;
    margin: 7px 12px 0 0;
}
.advantage .advFlow .advCon h4{
    color: #333;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}
.advantage .advFlow .advCon .flow{
    margin-bottom: 40px;
}
.advantage .advFlow .slick-dots{
    position: static;
}
.advantage .advFlow .slick-dots li button:before{
    opacity: 1;
    color: #e5e5e5;
}
.advantage .advFlow .slick-dots li.slick-active button:before{
    color: #007d2d;
}

/*newsFlow*/
.news_con{
    padding-bottom:80px;
}

.news_con_left{
    width: 30%;
    overflow: hidden;
    position: relative;
}
.news_con_left .item{
    position: relative;
    display: block;
    height: 100%;
}
.news_con_left .item .con{
    padding: 20px 27px 0;
    color: #fff;
    position: absolute;
    left:12px;
    bottom: 10px;
    z-index: 2;
    font-size: 26px;
}
.news_con_left .item .con h4{
    font-size:24px;
    font-weight: bold;
}
.news_con_left .item .con i{
    font-size:30px;
    margin-top: 20px;
}
.news_con_left .item .img img{
    width: 100%;
    height: 100%;
    object-fit:cover;
}
.news_con_left .swiper-pagination{
    bottom: 25px;
    text-align: right;
    right: 40px;
    left: auto;
}
.news_con_right_wrap{
    flex:1;
    padding-left: 30px;
}
.news_con_right{
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    padding: 34px 42px;
    border-radius: 5px;
    height: 100%;
    border-radius: 9px;
}
.news_con_right .hd .item{
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 20px;
}
.news_con_right .hd .item .con{
    flex:1;
}
.news_con_right .hd .item .con a{
    font-size:18px;
    color:#333;
}
.news_con_right .hd .item .con a:hover{
    color:#007d2d;
}
.news_con_right .hd .item .con a:hover h5{
    color:#007d2d;
}
.news_con_right .hd .item .con p{
    font-size:14px;
    color:#666;
    line-height: 24px;
    margin-top: 5px;
}
.news_con_right .hd .item .date{
    font-family: Arial;
    display: flex;
    flex-direction: column;
    line-height: 30px;
    font-size:14px;
    margin-left: 30px;
    align-items: center;
}
.news_con_right .hd .item .date b{
    font-weight: normal;
    border-bottom: 1px solid #e2e2e2;
    font-size: 36px;
    line-height: 52px;
}
.news_con_right .bd{
    flex-wrap: wrap;
    display: flex;
    margin:0 -20px;
}
.news_con_right .bd .item_wrap{
    width: 50%;
    padding:0 20px;
}
.news_con_right .bd .item{
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 10px;
}
.news_con_right .bd .item a{
    padding: 22px 0 0;
    line-height: 30px;
    display: block;
    font-size:18px;
    color:#333;
}
.news_con_right .bd .item p{
    color: #999;
    font-size:14px;
    line-height: 30px;
    font-family: Arial;
}
.news_con_right .bd .item a:hover{
    color:#007d2d;
}
.news_con_left .img{
    border-radius: 9px;
    position: relative;
}
.news_con_left .img:after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 30%;
    background: linear-gradient(transparent,rgba(0,0,0,.8));
    bottom: 0;
}
.news_con_right .con h5{
    color: #333;
    font-size: 18px;
    transition: all 0.5s ease;
}

/*intro*/
.intro{
    padding: 140px 160px 80px 160px;
    margin-bottom: 30px;
}
.intro .introL{
    background: #0048b3;
    border-radius: 9px;
    padding: 50px 40px;
}
.intro .introL h4{
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
}
.intro .introL p{
    margin-bottom: 10px;
    color: #fff;
    font-size: 18px;
}
.intro .introDivide{
    align-items: stretch;
}
.introR{
    margin-left: 30px;
}
.introR .pCover{
    position: relative;
    overflow: hidden;
    border-radius: 9px;
}
.introR .cCover{
    position: relative;
    overflow: hidden;
    border-radius: 9px;
}
.introR .pCover:after{
    content: "合作伙伴";
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
}
.introR .cCover:after{
    content: "人才招聘";
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
}

/* contact_tit */

.contact_tit{
    font-size:24px;
    color:#fff;
    font-weight: bold;
    margin-bottom: 30px;
}
.contact_con .mod1{
    margin-top: 40px;
}
.contact_con .mod1 .btn{
    padding-left: 30px;
    padding-right: 30px;
}
.contact_con p{
    color:#fff;
    font-size:14px;
}
.contact_con .form-control{
    background:rgba(205,213,240,.8);
    color:#333;
    border-radius: 3px;
    border:none;
    height: 40px;
    line-height: 40px;
}
.contact_con textarea.form-control{
    height: 180px;
}
.contact_con .form-control::placeholder{
    color:#333;
}
.contact_con #code_img{
    height: 40px;
}
.contact_con .btn-primary{
    background: #162058;
    border-color: #162058;
    width: 270px;
    height: 50px;
    line-height: 38px;
}

.contact_txt{
    padding-left: 100px;
    padding-top: 65px;
}
.contact_txt .con{
     color:#cdd5f0;
     font-size:20px;
     margin-bottom: 80px;
}

/* panel_links */

.panel_links{
    padding:65px 0;
}
.panel_links ul{
    display: flex;
    margin:0 -15px;
}
.panel_links ul li{
    flex:1;
    margin:0 15px;
    overflow: hidden;
}
.panel_links ul li a{
    display: block;
    position: relative;
    background: #fff;
}
.panel_links ul li a .img img{
    transition:all 1s;
}
.panel_links ul li .con{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom:20%;
    color:#000;
}
.panel_links ul li .con h4{
    font-size:24px;
    font-weight: bold;
}
.panel_links ul li .con p{
    font-size:18px;
    margin:15px 0;
}
.panel_links ul li .con span{
    font-size:18px;
    font-weight: bold;
}

.panel_links ul li a:hover .img img{
    transform: scale(1.6);
    opacity: .7;
}


/* cases_con */


.cases_con li:nth-child(2n){
    flex-direction: row-reverse;
}
.cases_con li .con{
    width: 50%;
    background: #fff;
    flex-direction: column;
    padding: 40px 120px;
    justify-content: center;
}
.cases_con li .con h4{
    font-size:30px;
    color:#333;
}
.cases_con li .con h4:after{
    content:'';
    display: block;
    width: 50px;
    height: 1px;
    background: #333;
    margin:18px 0 28px;
}
.cases_con li .con p{
    font-size:18px;
    color:#666;
    font-weight: 300;
}
.cases_con li .con a{
    width: 128px;
    height: 42px;
    border: 1px dashed var(--theme-color);
    display: block;
    margin-top: 28px;
    font-size:16px;
    color:var(--theme-color);
    line-height: 40px;
    text-align: center;
}
.cases_con li .con a:hover{
    background: var(--theme-color);
    color:#fff;
}

.cases_con li .img{
    flex:1;
}
.cases_con li:nth-child(2n) .con[data-aos=fade-left]{
    transform: translate3d(-100px,0,0);
}
.cases_con li:nth-child(2n) .img[data-aos=fade-right]{
    transform: translate3d(100px,0,0);
}
.cases_con li:nth-child(2n) .con[data-aos^=fade][data-aos^=fade].aos-animate{
    transform: translateZ(0);
}
.cases_con li:nth-child(2n) .img[data-aos^=fade][data-aos^=fade].aos-animate{
    transform: translateZ(0);
}

/* panel1_con */

.panel1_con{
    padding: 80px 0 110px;
}
.panel1_con li{
    flex:1;
}
.panel1_con li .item{
    width: 215px;
    height: 215px;
    background: #f2f2f2;
    border-radius: 50%;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition:all .3s;
}
.panel1_con li .item i{
    font-size:54px;
    color:#000;
    line-height: 1.4;
}
.panel1_con li .item h4{
    font-size:22px;
    color:#333;
    font-weight: normal;
}
.panel1_con li .item:hover{
    border-radius: 0;
    background: var(--theme-color);
}
.panel1_con li .item:hover i{
    color:#fff;
}
.panel1_con li .item:hover h4{
    color:#fff;
}

/*innerPro*/
.inner {
    background: #f5f5f5;
    padding: 60px 0;
}
.innerPro{
    width: 100%;
    padding: 0;
}
.innerPro .bigFlow li{
    display: block;
    background: #fff;
    margin-bottom: 30px;
    padding: 50px;
}
.innerPro .bigFlow li .itemTit{
    flex: 1.7;
}
.innerPro .bigFlow li .itemBg{
    padding: 30px;
}
.fix{
    position: fixed;
    top: 100px;
}
.jy_inner_product_flex .innerproList{
    margin-right: 0;
    margin-left: auto!important;
    padding-left: 30px;
}

/* news_con */

/*.news_img{*/
/*    flex:1;*/
/*}*/
/*.news_con{*/
/*    width: 55%;*/
/*    background: #fff;*/
/*    padding: 40px;*/
/*}*/
/*.news_con li a{*/
/*    display: flex;*/
/*    background: #fff;*/
/*    margin-bottom: 30px;*/
/*}*/
/*.news_con li .con{*/
/*    width: 77%;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    border-bottom: 1px solid #ccc;*/
/*}*/
/*.news_con li .con h4{*/
/*    font-size:20px;*/
/*    color:#333;*/
/*}*/
/*.news_con li .con p{*/
/*    color:#666;*/
/*    font-size:16px;*/
/*    line-height: 1.5;*/
/*    margin:10px 0 5px;*/
/*}*/
/*.news_con li span{*/
/*    font-size:14px;*/
/*    color:#777;*/
/*    display: block;*/
/*}*/
/*.news_con li .img{*/
/*    flex:1;*/
/*    padding-right: 30px;*/
/*}*/
/*.news_con li:hover .con h4{*/
/*    color:var(--theme-color);*/
/*}*/

/*.news_menu{*/
/*    margin-bottom: 40px;*/
/*}*/
/*.news_menu a{*/
/*    display: inline-block;*/
/*    height: 60px;*/
/*    width: 170px;*/
/*    border:1px dashed var(--theme-color);*/
/*    color:var(--theme-color);*/
/*    font-size:16px;*/
/*    text-align: center;*/
/*    line-height: 60px;*/
/*    margin-right: 10px;*/
/*    transition: all .3s;*/
/*}*/
/*.news_menu a:hover{*/
/*    background: var(--theme-color);*/
/*    color:#fff;*/
/*}*/


/* partners_con */

.partners_con li .img{
    background: #f5f5f5;
    padding: 10px;
}


#layer_message{
    padding:20px 25px;
}
#code_img{
    height:34px;
}
#layer_message p{
    margin-top: 20px;
    font-size:14px;
}


/*页底css*/
.index_foot{ color: #fff; background: #282828;}
.index_foot h3,.index_foot p,.index_foot a{ color: #bfbfbf; font-size: 16px;}
.index_foot h3{ line-height: 50px;}
.foot_top{ border-bottom: 1px solid rgba(255,255,255,.3); padding: 50px 0 30px;}
.foot_top .f_logo{ margin-right: auto;}
.f_nav{ width: 60%;}
.f_nav span{ font-size: 16px; padding-bottom:15px;}
.f_nav span:last-child{ width: 66px;}
.f_nav span:last-child{ width: auto; }
.foot_bottom{ padding: 40px 0 50px;}
.bott_left{ width: 38%;}
.f_con_list p{ margin-top: 30px; line-height: 44px;}
.f_con_list p i{ display: inline-block; width: 44px; height: 44px; border-radius: 50%; line-height: 44px; text-align: center; margin-right: 10px; border: 1px solid #bfbfbf; font-size: 18px; color: #fff;}
.foot_bottom .qr{ margin-left: 1%; text-align: center; margin-top: 50px;}
.foot_bottom .qr .qr_box{ display: inline-block; padding: 5px; background: #fff; border-radius: 5px;margin-bottom:15px; }
.foot_bottom .qr .qr1{
    margin-right:50px;
}
.foot_bottom .qr .qr_box img{ width: 120px;}
.f_nav_list{ width: 60%;}
.f_nav_list ul li a{ display: block; line-height: 36px;}
.f_nav_list ul li:last-child{ width: 66px;}
.f_nav_list ul li a:hover{ color: #fff;}
.foot_center{ border-bottom:1px solid rgba(255,255,255,.3)}
.copy{font-size: 13px; color: #c0c0c0; padding: 20px 0;}
.copy a{ font-size: 13px;}
.fl1{
    flex: 1;
}
.fl1 h3{
    color: #fff;
    letter-spacing: 1px;
    font-size: 27.5px;
    font-family: "Source Han Serif SC";
    margin-bottom: 10px;
}
.fl1 p{
    font-size: 9px;
}
.friLink{
    margin-top: 40px;
}
.friLink a:last-child span{
    display: none;
}
/*.footer{*/
/*    background: #10194d;*/
/*    padding: 0 50px;*/
/*}*/
/*.footer_keywords{*/
/*    border-bottom: 1px solid rgba(255,255,255,.2);*/
/*    padding:30px 0;*/
/*    align-items: center;*/
/*    margin-bottom: 40px;*/
/*}*/
/*.footer_keywords .con{*/
/*    flex:1;*/
/*}*/
/*.footer_keywords ul li{*/
/*    font-size:16px;*/
/*    color:#fff;*/
/*    margin-right: 30px;*/
/*}*/
/*.footer_keywords .img{*/
/*    max-height: 30px;*/
/*}*/

/*.footer_logo{*/
    
/*}*/
/*.footer_logo p{*/
/*    font-size:16px;*/
/*    color:#fff;*/
/*}*/

/*.footer_menu{*/
/*    padding-left: 50px;*/
/*}*/
/*.footer_menu li{*/
/*    flex:1;*/
/*}*/
/*.footer_menu li.pro{*/
/*    flex:2;*/
/*}*/
/*.footer_menu li.pro .pro_menu{*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*}*/
/*.footer_menu li.pro .pro_menu a{*/
/*    width: 50%;*/
/*}*/

/*.footer_menu li h4{*/
/*    font-size:18px;*/
/*    color:#fff;*/
/*    padding: 10px 0;*/
/*    margin-bottom: 10px;*/
/*    font-weight: bold;*/
/*}*/

/*.footer_menu li a{*/
/*    display: block;*/
/*    font-size:16px;*/
/*    color:#fff;*/
/*    font-weight: 300;*/
/*}*/
/*.footer_menu li p{*/
/*    font-size:14px;*/
/*    color:#ddd;*/
/*    font-weight: 300;*/
/*}*/
/*.footer_code{*/
/*   padding-top: 20px;*/
/*}*/
/*.footer_code img{*/
/*    max-width:100px;*/
/*    margin:auto;*/
/*}*/
/*.footer_code p{*/
/*    font-size:14px;*/
/*    line-height: 1.4;*/
/*    color:#aaa;*/
/*    margin-top: 10px;*/
/*    text-align: center;*/
/*}*/
/*.footer_tel h4{*/
/*    font-size:18px;*/
/*    color:#fff;*/
/*    padding:15px 0;*/
/*    font-weight: bold;*/
/*}*/
/*.footer_tel p{*/
/*    font-size:16px;*/
/*    color:#fff;*/
/*    margin:10px 0 0;*/
/*}*/


/*.footer_ft{*/
/*    font-size:14px;*/
/*    color:#ddd;*/
/*    margin-top:40px;*/
/*    padding:30px 0;*/
/*    border-top: 1px solid rgba(255,255,255,.2);*/
/*}*/
/*.footer_ft>.flex{*/
/*    align-items: center;*/
/*}*/
/*.footer_ft .copyright{*/
/*    flex:1;*/
/*}*/
/*.footer_ft img{*/
/*    height: 27px;*/
/*    margin-right: 15px;*/
/*}*/
/*.footer_ft a{*/
/*    color:#fff;*/
/*}*/
/*.footer_ft .record{*/
/*    align-items: center;*/
/*}*/
/*.footer_ft .record a{*/
/*    margin-left: 20px;*/
/*}*/
/*.footer_ft .record a.lan{*/
/*    width: 150px;*/
/*    height: 44px;*/
/*    border:1px solid rgba(255,255,255,.5);*/
/*    background:rgba(0,0,0,.05);*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/


/* fixed_rightbtn */

.fixed_rightbtn{
    position: fixed;
    z-index: 999;
    right:0;
    bottom:20%;
}
.fixed_rightbtn>ul>li{
    width:40px;
    height:40px;
    color:var(--theme-color);
    position: relative;
    transition:all .3s;
}
.fixed_rightbtn>ul>li>a{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 40px;
    line-height: 1.2;
    position: relative;
    color:#555;
    border:1px solid #ddd;
    border-bottom: none;
    background: #fff;
}
.fixed_rightbtn>ul>li:last-child a{
    border-bottom:1px solid #ddd;
}
.fixed_rightbtn>ul>li i{
    display: inline-block;
    font-size:18px;
    line-height: 1;
}
.fixed_rightbtn>ul>li>a:hover{
    background:var(--theme-color);
    border:1px solid var(--theme-color);
}
.fixed_rightbtn>ul>li:hover>a{
    color:#fff;
}
/*.fixed_rightbtn>ul>li p{*/
/*    position:absolute;*/
/*    height: 45px;*/
/*    right:40px;*/
/*    top: 0;*/
/*    background: #fff;*/
/*    border:1px solid #ddd;*/
/*    color:#333;*/
/*    font-size:18px;*/
/*    width:310px;*/
/*    text-align: center;*/
/*    line-height: 45px;*/
/*    transition:all .3s;*/
/*    box-shadow: 0 0 10px rgba(0,0,0,.1);*/
/*    border-radius: 3px;*/
/*    display: none;*/
/*}*/
/*.fixed_rightbtn>ul>li:hover p{*/
/*    display: block;*/
/*}*/
#layer_message{
    padding:20px 25px;
}
#code_img{
    height:34px;
}
#layer_message p{
    margin-top: 20px;
    font-size:14px;
}
.fixed_rightbtn>ul>li#fr_tel:hover,.fixed_rightbtn>ul>li#fr_tel{
    border:none;
}
.fixed_right_contact{
    width: 180px;
    background: #fff;
    position: absolute;
    bottom: -1px;
    left: -140px;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
}
.fixed_right_contact .close{
    position: absolute;
    right: 16px;
    top:23px;
    color: #fff;
    transition: all .3s;
    font-size:0;
}
.fixed_right_contact .close:hover{
    transform: rotate(180deg);
}
.fixed_right_contact .close i{
    font-size:14px;
}
.fixed_right_contact .tit{
    height: 57px;
    line-height: 57px;
    background: var(--theme-color);
    color:#fff;
    font-size:16px;
    padding: 0 20px;
}
.fixed_right_contact .tit i{
    font-size:18px;
    margin-right: 6px;
    vertical-align: middle;
}
.fixed_right_contact .con li{
    padding:15px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.fixed_right_contact .con li h4{
    font-size:14px;
    color:#333;
    font-weight: normal;
    cursor: pointer;
}
.fixed_right_contact .con li h4 i{
    font-size:16px;
    color:#666;
    margin-right: 6px;
}
.fixed_right_contact .con li p{
    font-size:18px;
    line-height: 1;
    margin-top: 10px;
    color:var(--theme-color);
}
#fr_tel>a{
    right: -40px;
}
#fr_tel.fr_tel_on .fixed_right_contact{
    transition:all .3s;
    left: 40px;
}
#fr_tel.fr_tel_on>a{
    right: 0;
    transition:all .3s;
    transition-delay: .3s;
}
.layer_search{
    position: absolute;
    right:40px;
    top: 0;
    width: 300px;
    background: #fff;
    border:1px solid #ddd;
    padding: 15px 10px 15px 15px;
    display: none;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}
#fr_search:hover .layer_search{
    display: block;
}
.layer_search form{
    display: flex;
}
.layer_search .key{
    height: 40px;
    line-height: 40px;
    width: 100%;
    padding: 0 20px;
    border:1px solid var(--theme-color);
    border-radius: 3px 0 0 3px;
    outline: none;
    font-size:14px;
}
.layer_search .button{
    height: 40px;
    line-height: 40px;
    background: var(--theme-color);
    color:#fff;
    border:none;
    outline: none;
    padding: 0 10px;
    position: relative;
    right: 4px;
    font-size:14px;
    width: 80px;
    text-align: center;
    border-radius:0 3px 3px 0;
}

.layer_weixin{
    position: absolute;
    width: 150px;
    right: 40px;
    top: 0;
    border:1px solid #ddd;
    padding:3px;
    background: #fff;
    display: none;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}
#fr_code:hover .layer_weixin{
    display: block;
}
.layer_weixin span{
    text-align: center;
    display: block;
}


/* phone_fixed_menu */

.phone_fixed_menu{
    border-top: 1px solid #E5E9F2;
    width: 100%;
    height: 55px;
    background: #fff;
    position: fixed;
    z-index: 10000;
    bottom: 0;
    left: 0;
    display: none;
}
.phone_fixed_menu ul li{
    flex:1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 55px;
    line-height: 1.2;
}
.phone_fixed_menu ul li a{
    display: block;
}
.phone_fixed_menu ul li i{
    font-size:20px;
    color:#333;
}
.phone_fixed_menu ul li p{
    color:#333;
    font-size:14px;
}



/*首页css__end*/


/*内页*/

.page_tit{
    padding: 15px 20px;
    background: #fff;
    margin:20px 0;
}
.page_tit .tit{
    flex:1;
    font-size:18px;
    font-weight: bold;
    color:#282828;
    line-height: 1;
}

.page_tit .pos{
    font-size:14px;
}

.ibanner{
    background: url(../images/ibanner.jpg) no-repeat center;
    position: relative;
}
.ibanner .pos{
    position: absolute;
    bottom:15px;
    color:#ccc;
    font-size:14px;
}
.ibanner .pos a{
    color:#ccc;
}


/* 内页分类 */



.inner_menu ul{
    background: #fff;
    padding: 15px;
    border-radius: 9px;
}
.inner_menu>ul>li{
    border-bottom: 1px solid rgba(0,0,0,.05);
}
.inner_menu ul li .menu{
    align-items: center;
}
.inner_menu ul li .menu a{
    display: block;
    height:50px;
    line-height:50px;
    color:#333;
    font-size:16px;
    flex:1;
}
.inner_menu ul li .menu a:hover{
    color:var(--theme-color);
}
.inner_menu ul li .menu i{
    width: 20px;
    height: 20px;
    background: #eee;
    border-radius: 50%;
    font-size:12px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
    transition:all .3s;
}
.inner_menu ul li .menu i.icon{
    transform: rotate(90deg);
}
.inner_menu>ul>li>a:hover,.inner_menu>ul>li.cur>a{
    background: #f9c606;
    color:#333;
}
.inner_menu ul li .sub_menu{
    display: none;
    transition:all .3s;
    border-top:  1px solid rgba(0,0,0,.05);
    padding:10px 0;
}
.inner_menu ul li.cur .sub_menu{
    display: block!important;
}
.inner_menu ul li .sub_menu a{
    display: block;
    font-size:15px;
    padding:5px 0;
}

#article_imgs .slick-dots{
    bottom: 20px;
}
#article_imgs .item{
    
}
#article_imgs .item img{
    object-fit: cover;
}

/* 内页二级分类显示 */

.inner_sublist{
    transition: all .3s;
    padding: 0 20px;
    background:rgba(0,0,0,.02);
}
.inner_sublist li{
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.inner_sublist li a{
    color:#151515;
    font-size:14px;
    display: block;
    line-height: 3;
}
.inner_sublist li a i{
    font-size:12px;
    margin-right: 5px;
}

.page_index{
    min-height:300px;
    background: #fff;
    padding: 25px;
}
.page_index p{
    text-indent: 2em;
    font-size:16px;
    line-height:1.9;
    margin-bottom: 15px;
}
.page_index img{
    margin:auto;
    margin-bottom: 15px;
}

/* 内页左侧 */

.i_left_con{
    
}
.i_left_con .tit{
    color:var(--secondary-color);
    font-weight: 600;
    letter-spacing:1px;
    line-height: normal;
    text-transform: uppercase;
    font-size:24px;
    text-align: center;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 10px;
}
.i_left_con .tit:after{
    content:'';
    display: block;
    background: var(--secondary-color);
    width:calc(100% - 40px);
    position: absolute;
    bottom: 0;
    left: 20px;
    height: 1px;
    opacity: .5;
}

.left_news{
    background: #fff;
    margin-bottom: 20px;
    padding:30px;
    border-radius: 5px;
    border:1px solid #ebebeb;
}
.left_news li{
    padding: 10px 0;
    border-bottom: 1px solid #E8E9EF;
}
.left_news li.li a{
    font-size:14px;
    color:#333;
    position: relative;
    padding-left: 18px;
}
.left_news li.li a:before{
    width: 5px;
    height: 5px;
    background: var(--secondary-color);
    content:'';
    display: block;
    transform: rotate(45deg);
    position: absolute;
    left: 1px;
    top: 10px;
}
.left_news li a:hover{
    color:var(--theme-color);
}
.left_news li a{
    display: block;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.left_news li h4{
    font-size:14px;
    height:40px;
    line-height:40px;
    background: rgba(0,0,0,.4);
    color:#fff;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    padding: 0 10px;
    text-align: center;
}

/* i_left_con */

.i_left_con .i_img{
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    border:1px solid #ebebeb;
}
.i_left_con .i_img a{
    display: block;
}



/* 单页内容 */


.page_index .tit h1{
    color:#444;
    font-size:30px;
    font-weight: bold;
}
.page_index .tit p{
    font-size:14px;
    border-bottom: 1px solid #f8f8f8;
    padding:6px 0 20px;
    margin:0;
    text-indent: 0;
}
.page_index .tit p span{
    margin-right:20px;
}
.page_index .tit p span i{
    margin-right:5px;
}
.page_index .desc{
    font-size:14px;
    background: #f8f8f8;
    padding:15px 20px;
    color:#888;
}
.page_index .desc span{
    font-weight: bold;
    color:#f04c36;
}
.page_index .con{
    padding:20px 0;
    min-height: 400px;
}


/* tit_box2 */
.aboutMore{
    background: #007d2d;
    border-radius: 7px;
    padding: 15px 50px;
    font-size: 16px;
    color: #fff;
    transition: all 0.5s ease;
    border: 1px solid #007d2d;
}
.aboutMore:hover{
    background: #fff;
    color: #007d2d;
}

.page_about_panel1{
    display: flex;
    padding:85px 0;
}

.tit_box2{
    flex:1;
}
.tit_box2 .tit{
    
}
.tit_box2 .tit h4{
    font-size:36px;
    color:#333;
    font-weight: bold;
    text-transform: uppercase;
}
.tit_box2 .tit h5{
    font-size:24px;
    font-weight: bold;
    color:#333;
    margin-top: 10px;
}
.tit_box2 .tit h5:after{
    content:'';
    width: 40px;
    height: 5px;
    background: #007d2d;
    display: block;
    margin:20px 0 100px 0;
}
.tit_box2 .desc{
    font-size:18px;
    margin-top: 30px;
}

.jy_inner_product_flex .inner_menu{
    width: 300px;
}
/*.jy_inner_product_flex .page_picList,.jy_inner_product_flex .page_picshow{*/
/*    width: calc(100% - 300px);*/
/*    margin-left: 30px;*/
/*}*/

.jy_inner_product_flex .page_picList,.jy_inner_product_flex .page_picshow{
    width: calc(100% - 300px);
    margin-left: 30px;
}


.page_about_panel1 .r_con{
    font-size:16px;
    width: 66%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}
.page_about_panel1 .con p{
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1px;
}
.page_about_panel1 ul{
    margin-top: 50px;
}
.page_about_panel1 ul li{
    display: flex;
    align-items: center;
}
.page_about_panel1 ul li .squ{
    height: 80%;
    width: 2px;
    background: #e0e0e0;
}
.page_about_panel1 ul li:last-child{
    padding-right: 0;
}
.page_about_panel1 ul li .icon i{
     font-size:40px;
     color:#666;
}
.page_about_panel1 ul li .con{
    margin-left: 10px;
}
.page_about_panel1 ul li .con h4{
    color:#007d2d;
    font-size:46px;
    font-weight: bold;
    display: flex;
    align-items: flex-start;
}
.page_about_panel1 ul li .con h4 span{
    font-size:16px;
    font-weight: normal;
    margin-left: 5px;
}

.page_about_panel2{
    background: #f2f2f2;
    padding:100px 0;
}
.page_about_panel2 ul{
    padding-top: 30px;
}
.page_about_panel2 ul li{
    flex:1;
    transition:all .3s;
}
.page_about_panel2 ul li a{
    display: block;
    position: relative;
}
.page_about_panel2 ul li .con{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding:40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.page_about_panel2 ul li .con h4{
    color:#fff;
    font-size:26px;
    font-weight: bold;
}
.page_about_panel2 ul li .con p{
    font-size:18px;
    color:#fff;
    margin:10px 0;
}
.page_about_panel2 ul li .img img{
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.page_about_panel2 ul li:hover{
    flex:1.5;
}

.page_about_panel3{
    padding:100px 0;
}
.page_about_panel3 .container{
    
}
.page_about_panel3 .tab_list{
    position: relative;
    padding-top: 40px;
}
.page_about_panel3 .tab_list .hd{
    position: absolute;
    right: 0;
    top: -95px;
    
}
.page_about_panel3 .tab_list .hd li{
    font-size:16px;
    color:#666;
    margin-left: 30px;
    cursor: pointer;
}
.page_about_panel3 .tab_list .hd li.cur{
    color:var(--theme-color);
}
.page_about_panel3 .tab_list .hd li.cur:after{
    width: 100%;
    height: 2px;
    background: var(--theme-color);
    content:'';
    display: block;
}

.page_about_panel3 .tab_list .bd .item{
    display: none;
}
.page_about_panel3 .tab_list .bd .item:first-child{
    display: block;
}
.page_about_panel3 .tab_list .bd .item ul{
    margin:0 -20px;
}
.page_about_panel3 .tab_list .bd .item ul li{
    padding:0px 15px 30px 15px;
}

/* page_service_panel1 */ 

.innerSerflow .slick-dots li.slick-active button:before{
    color: var(--theme-color);
}
.innerSerflow .img{
    overflow: hidden;
}
.page_service_panel1{
    background: url("../images/service_bg1.jpg") no-repeat center;
    padding:80px 0;
}
.page_service_panel1 .tit_box{
    text-align: center;
}
.page_service_panel1 .tit_box h4{
    font-size:36px;
    font-weight: bold;
    color:#333;
}
.page_service_panel1 .tit_box p{
    font-size:18px;
    margin-top: 15px;
    margin-bottom: 60px;
}
.page_service_panel1 ul{
    width: 1200px;
    background: #fff;
    border-radius: 15px;
    padding:30px;
    justify-content: space-between;
    margin:50px auto 0;
    text-align: center;
}
.page_service_panel1 ul li i{
    font-size:46px;
}
.page_service_panel1 ul li h4{
    font-size:16px;
    color:#333;
}
.page_service_panel1 ul li p{
    font-size:14px;
}

.page_service_panel2{
    padding:80px 0;
    background: #fbfafa;
}

.page_service_panel2 ul{
    padding-top: 40px;
}
.page_service_panel2 ul li a{
    background: #fff;
    display: block;
    margin-bottom: 30px;
}
.page_service_panel2 ul li a .flex{
    padding:20px;
}
.page_service_panel2 ul li .con{
    width: calc(100% - 110px);
}
.page_service_panel2 ul li .con h4{
    font-size:18px;
    font-weight: bold;
    color:#333;
}

.page_service_panel2 ul li .con p{
    font-size:14px;
    margin-top: 5px;
}
.page_service_panel2 ul li .more{
    width: 92px;
    height: 38px;
    line-height: 36px;
    border:1px solid #e9e9ea;
    text-align: center;
    font-size:14px;
   margin-left: 18px;
   transition:all .4s;
}
.page_service_panel2 ul li:hover a{
    box-shadow: 0 3px 15px rgba(0,0,0,.1);
}
.page_service_panel2 ul li:hover .more{
    background: var(--theme-color);
    color:#fff;
    border-color: var(--theme-color);
}


.xg_news h3{
    font-size:16px;
    border-bottom: 1px solid #eee;
    line-height:2;
    color:#3c3b5c;
    font-weight: bold;
}
.xg_news ul{
    margin-bottom: 20px;
}
.xg_news ul li {
    padding:15px 0 0;
}
.xg_news ul li .img{
    width:80px;
}
.xg_news ul li .con{
    flex:1;
    margin-left: 20px;
}
.xg_news ul li .con a{
    font-size:14px;
    display: block;
    line-height: 1.2;
    color:#555;
    margin-bottom: 3px;
    max-height:32px;
    overflow: hidden;
}
.xg_news ul li .con span{
    color:#999;
}
.xg_news .tags{
    padding: 10px 0 20px;
}
.xg_news .tags a{
    display: inline-block;
    padding: 3px 10px;
    background:var(--theme-color);
    margin:0 5px 5px 0;
    color:#fff;
    font-size:14px;
    border-radius:3px;
}

.xg_news dl dt{
    width: 100%;
    background: #fff;
}
.xg_news dl dd{
    font-size:14px;
    text-align: center;
    font-weight: normal;
    color:var(--theme-color);
    line-height: 2;
    margin-bottom: 10px;
    padding: 0 10px;
}

/* 公司介绍 */

.page_about_index .tit{
    color:#222931;
    font-size:34px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}
.page_about_index .con{
    font-size:16px;
    line-height: 1.9;
    text-align: center;
}
.page_about_index .con p{
    margin-bottom: 20px;
}
.page_about_index ul li{
    text-align: center;
}
.page_about_index ul li i{
    width: 100px;
    height: 100px;
    display: block;
    margin:0 auto 20px;
    background: #003f92;
    border-radius: 50%;
    font-size:36px;
    color:#fff;
    text-align: center;
    line-height: 100px;
}
.page_about_index ul li h4{
    color:#003f92;
    font-size:22px;
    font-weight: bold;
}

.page_service_index .con{
    max-width: 900px;
    margin:-30px auto 0;
    font-size:16px;
    text-align: center;
    color:#fff;
}

.page_honor_index li .con h4{
    text-align: center;
    line-height:60px;
    height: 60px;
    overflow: hidden;
    font-size:22px;
    color:#333;
    font-weight: bold;
}


/* 产品列表 */

.page_picList {
    
}

.page_picList li{
    margin-top:20px;
}
.page_picList li:nth-child(-n+4){
    margin-top: 0;
}

.page_picList li a{
    display:block;
    background: #fff;
    transition:all .36s;
    padding: 20px;
    border-radius: 5px;
}
.page_picList li .con{
    padding: 14px 26px 0;
}
.page_picList li .con h4{
    transition: color .4s;
    font-size: 16px;
    color:#666;
    font-weight: normal;
    text-align: center;
    line-height: 30px;
    height:30px;
    overflow: hidden;
}
.page_picList li .con p{
    color:#555;
    margin: 10px 0 0;
    font-size:13px;
    max-height: 44px;
    overflow: hidden;
    text-align: center;
}
.page_picList li .img{
    overflow: hidden;
}
.page_picList li img{
    transition: all 0.6s;
    margin:0;
    width:100%;
}
.page_picList li:hover img{
    transform: scale(1.1);
}
.page_picList li span{
    display: inline-block;
    font-size: 14px;
    color:rgba(17,17,17,0.5);
    margin-right: 18px;
    position: relative;
    padding: 6px 0;
}
.page_picList li:hover a{
    box-shadow: 0 3px 20px rgba(0,0,0,.2);
}
.page_picList li:hover .con h4{
    color:var(--theme-color);
}



/* 单页联系我们 */

.page_contactindex {
    padding: 20px;
}
.page_contactindex .left_con{
    flex:1;
}
.page_contactindex .left_con .desc h4{
    font-size:24px;
    font-weight: bold;
    color:#333;
    padding-top: 40px;
}
.page_contactindex .left_con ul li{
    padding:40px 0 0;
}
.page_contactindex .left_con ul li h4{
    font-size:18px;
    font-weight: bold;
    color:#007d2d;
    margin-bottom: 30px;
}
.page_contactindex .left_con ul li p{
    font-size:18px;
    color:#666;
}
.page_contact_msg .msg_flex .img{
    overflow: hidden;
    border-radius: 9px;
}
.page_contact_msg .tit_box .tit{
    text-align: center;
    padding:50px 0;
}
.page_contact_msg .tit_box .tit h4{
    font-weight: bold;
    color:#333;
    font-size:36px;
}
.page_contact_msg .tit_box .tit p{
    font-size:18px;
    color:#666;
    margin-top: 15px;
}
.page_contact_msg .msg_flex .msg{
    flex:1;
    padding-left: 80px;
}
.page_contact_msg .msg_flex .msg .form-control{
    height: 48px;
}
.page_contact_msg .msg_flex .msg>p{
    font-size:16px;
    margin-top: 40px;
}
.page_contact_msg .msg_flex .msg .form-control{
    background: #f4f4f4;
    border:none;
    box-shadow: none;
}
.page_contact_msg .msg_flex .msg textarea.form-control{
    height: 160px;
}
.page_contact_msg .msg_flex .msg .mod1{
    display: flex;
    justify-content: flex-end;
}
.page_contact_msg .msg_flex .msg .btn-primary{
    background: #202646;
    border:#202646;
    width: 180px;
    height: 60px;
    color:#fff;
    font-size:16px;
    text-align: center;
    line-height: 60px;
    padding:0;
}


.jy_page_contact_index{
    background: url("../images/inner_contact_bg.png") no-repeat left bottom;
}



.page_contactindex .map{
    margin:50px 0 0;
    text-align: center;
    overflow: hidden;
}


.innerBgfff{
    background: #fff;
    overflow: hidden;
}

.page_banner{
    padding-top: 90px;
    overflow: hidden;
    position: relative;
}
.page_banner .con_wrap{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 70px 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
}
.page_banner .con_wrap .con h4{
    font-size:30px;
    font-weight: bold;
    color:#fff;
}
.page_banner .con_wrap .con p{
    font-size:16px;
    color:#fff;
    margin-top:20px;
    max-width: 50%;
}

.page_banner .pos{
    height: 45px;
    background: rgba(0,0,0,.44);
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    color:#fff;
    font-size:14px;
}
.page_banner .pos a{
    color:#fff;
}
.page_menu{
    border-bottom: 2px solid #f7f7f7;
}
.page_menu ul{
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: center;
}
.page_menu ul li a{
    display: block;
    line-height: 78px;
    color:#333;
    margin: 0 40px;
    font-size:16px;
    position: relative;
}
.page_menu ul li a.active{
    color:var(--theme-color);
    font-weight: bold;
}
.page_menu ul li a.active:after{
    content:'';
    display: block;
    position: absolute;
    left: 0;
    bottom:-1px;
    width: 100%;
    height: 2px;
    background:var(--theme-color);
}
.page_menu ul li.cur a{
   
}


/*新闻列表*/
.page_caseList .innernewsList li .con h4{
    text-align: left;
}
.page_caseList .innernewsList li .con{
    padding: 0;
}
.page_newsList{
}
.page_newsList li{
    padding:20px;
    transition: all .3s ease-out 0s;
    background: #fff;
    margin-bottom: 20px;
}
.page_newsList li .img{
    flex:1;
}
.page_newsList li .img img{
    margin-bottom: 0;
}
.page_newsList li .time{
    width: 140px;
    margin-right: 60px;
}
.page_newsList li .time p{
    color: #c5c5c5;
    font-size:30px;
}
.page_newsList li .time span{
    display: block;
    border: 1px solid #e6e6e6;
    width: 29px;
    height: 29px;
    line-height: 29px;
    text-align: center;
    font-family:宋体;
    font-size: 14px;
    margin-top: 20px;
    border-radius: 2px;
    color: #aaa;
    transition: all .3s ease-out 0s;
}
.page_newsList li .con{
    transition: all .3s ease-out 0s;
    padding:0;
    margin-left:25px;
    width: 76%;
}
.page_newsList li .con h4{
    color: #333;
    font-weight: bold;
    transition: all .3s ease-out 0s;
    font-size: 16px;
    margin-bottom: 20px;
}
.page_newsList li .con p{
    color: #888;
    font-size: 13px;
    line-height: 24px;
    max-height:75px;
    margin:0;
    text-indent: 0;
    overflow: hidden;
}
.page_newsList li .con span{
    display: block;
    color:#777;
    margin-top:8px;
}
.page_newsList li:hover{
    box-shadow: 0 3px 20px rgba(0,0,0,.15);
    border-color:var(--theme-color);
}
.page_newsList li:hover .con h4{
    color:var(--theme-color);
}


/* 新闻详情 */

.page_news_detail{
    margin: auto;
}
.page_news_detail .tit{
    text-align: center;
}
.page_news_detail .tit h1{
    color: #000;
    font-size:30px;
    font-weight: bold;
}




/* 产品详情页 */

.page_picshow{
    background: #fff;
    padding:115px 25px;
}
.page_picdetails .row{
    margin-bottom: 30px;
}
.page_picdetails .img img{
    width: 100%;
}
.page_picdetails .info{
}
.page_picdetails .info>.flex{
    flex-direction: column;
    justify-content: space-between;
    height: 500px;
}
.page_picdetails .info h1{
    font-size:20px;
    margin: 10px 0 0;
    color:#333;
    font-weight: bold;
    line-height:1.3;
    padding:0 0 14px;
}
.page_picdetails .info p{
    font-size:14px;
}
.page_picdetails .info span{
    margin-top:40px;
    display:inline-block;
    color:var(--theme-color);
    font-size:20px;
    border-bottom: 1px solid var(--theme-color);
    line-height: 1.3;
}
@media (max-width:1400px) {
    .page_picdetails .info span{
        margin-top:10px;
        font-size:14px!important;
    }
}

.page_picdetails .info .query span{
    margin: 0;
    display:inline-block;
    color:var(--theme-color);
    font-size:20px;
    border-bottom: 1px solid var(--theme-color);
    line-height: 1.3;
}
.page_picdetails .info span i{
    font-size:20px;
    margin-right:6px;
}
.page_picdetails .info span em{
    font-style:normal;
    font-size:24px;
    font-family: Arial, Helvetica, sans-serif;
}

.page_picdetails h4{
    /*font-size:24px;*/
    /*color:#202646;*/
    /*font-weight: bold;*/
    /*margin-top: 20px;*/
    /*margin-bottom:30px;*/
     font-size:20px;
    margin: 10px 0 30px 0;
    color:#333;
    font-weight: bold;
    line-height:1.3;
    padding:0 0 14px;
}

.page_picdetails .query {
    display:inline-block;
    color:var(--theme-color);
    font-size:20px;
    border-bottom: 1px solid var(--theme-color);
    line-height: 20px;
    font-weight: bold;
}
.page_picdetails .form-control{
    background: #d8d8d8;
    height: 50px;
    box-shadow:none;
    border:none;
    color:#333;
}
.page_picdetails .form-control::placeholder{
    color:#333;
}
.page_picdetails .button button {
    border-radius: 4px;
}
.page_picdetails .btn-primary{
    height:116px;
    width: 100%;
    font-size:16px;
    color:#fff;
    line-height: 60px;
    text-align: center;
    background: #007d2d;
    padding:0;
}


.page_picdetails .con{
    border:none;
    margin:0;
    padding: 20px 0 0;
}
.page_picdetails .con .tags{
    font-size:14px;
    margin-bottom: 15px;
}
.page_picdetails .con .tags a{
    color:#fff;
    background: #f04c36;
    display: inline-block;
    line-height: 1.4;
    padding: 0 3px;
    margin-right:3px;
    font-size:12px;
}
.page_picdetails .con .ptit{
    font-size:16px;
    background: #f7f7f7;
    padding:6px 13px;
    position: relative;
    margin-bottom: 30px;
    font-weight: bold;
    
}
.page_picdetails .con .ptit::before{
    content:'';
    display: block;
    width:3px;
    height:18px;
    background: var(--theme-color);
    position: absolute;
    left:0;
    top:10px;
}

.form_items {
}
/* 案例列表 */

.page_caseList{
    padding: 20px 0 0;
}
.page_caseList li{
    margin-bottom:20px;
}
.page_caseList li a{
    display: block;
    background: #fff;
    overflow: hidden;
}
.page_caseList .img{
    position: relative;
    overflow: hidden;
}
.page_caseList .img img{
    width: 100%;
}

.page_caseList li:hover .img i{
    top: 0;
}
.page_caseList li .con{
    padding: 20px 15px 0 0;
}
.page_caseList li .con h4{
    font-size:16px;
    color:#555;
    font-weight: normal;
    height: 22px;
    line-height: 22px;
    overflow: hidden;
    text-align: center;
}
.page_caseList li:hover .con h4{
    color:var(--theme-color);
}
.page_caseList li .con p{
    font-size:14px;
    margin:10px 0 10px;
    color:#777;
    max-height: 75px;
    overflow: hidden;
}
.page_caseList li .con span{
    display: block;
    background: #1a81fd;
    color:#fff;
    display: inline-block;
    padding: 5px 10px;
    font-size:12px;
    transition:all .3s;
}


.page_hotpic .tit{
    font-size:18px;
    text-align: center;
    position: relative;
    margin-bottom: 7px;
}
.page_hotpic .tit::before,.page_hotpic .tit::after{
    width:50px;
    height:1px;
    background: #eee;
    content:'';
    display:block;
    position: absolute;
    top:15px;
    left:0;
}
.page_hotpic .tit::after{
    left:auto;
    right:0;
}
.page_hotpic li{
    margin-bottom: 10px;
}
.page_hotpic li h4{
    font-weight: normal;
    text-align: center;
    font-size:14px;
    margin: 10px 0 5px;
    height: 20px;
    line-height: 20px;
    overflow: hidden;
}

/*翻页*/
.return_page{
    background: #f3f3f3;
    padding: 15px 20px;
    line-height: 30px;
    color: #333;
    position: relative;
}
.return_page p{
    margin-bottom: 0;
    text-indent: 0;
    line-height:2;
}
.return_page p a{
    color: #333;
}
.return_page .go_history a{
    background:var(--theme-color);
    width:70px;
    height:30px;
    line-height:30px;
    text-align: center;
    color:#fff;
    position: absolute;
    right:0;
    top:50%;
    display:block;
    transform: translateY(-50%);
}

/* 页码 */

.pagination{
    text-align: center;
    display: block;
    margin-top: 30px;
}
.pagination li{
    display: inline-block;
    margin:0 1px;
}
.pagination li span,.pagination li a{
    display: block;
    padding:0 10px;
    line-height:28px;
    background: #eee;
    color:var(--theme-color);
}
.pagination li.active a{
    background:var(--theme-color);
    color:#fff;
    border-color:var(--theme-color);
}



/*在线留言*/
#my_form{
    padding: 30px 0 0;
}
#my_form table{
    width: 100%;
}
#my_form tr{
    display: inline-flex;
    width: 48%;
    margin-bottom: 15px;
}
#my_form tr:nth-child(2n){
    margin-left:4%;
}
#my_form tr.content{
    width: 100%!important;
    display: flex;
    margin-left:0;
}
#my_form tr td:first-child{
    line-height: 34px;
    color: #333;
}
#my_form tr td:last-child{
    flex: 1;
}
#my_form tr input,#my_form tr textarea{
    height:34px;
    width: 100%!important;
    border: 1px solid #ccc;
    padding: 0 10px;
    color: #333;
    outline: none;
    border-radius: 4px;
    font-size: 14px;
    font-family: 微软雅黑;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
#my_form tr input:focus,#my_form tr textarea:focus{
    border-color: #66afe9;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}
#my_form tr ::placeholder{
    color: #999;
    font-family: 微软雅黑;
    font-size: 14px;
}
#my_form tr textarea{
    height:100px;
    padding-top: 6px;
}
#my_form .btn{
    margin-left:30px;
}
#my_form .btn input{
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 4px;
}
#my_form .btn input:first-child{
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}
#my_form .btn input:first-child:focus{
    color: #fff;
    background-color: #286090;
    border-color: #122b40;
}

.bdsharebuttonbox span{
    line-height:30px;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clearfix:before, .clearfix:after {
    display: table;
    content: '';
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.medc_content {
    width: 40%;
    overflow: hidden;
}

.medc_content p {
}