@charset "utf-8";
.m-btn{
    display: none;
    position: relative;
    width: 28px;
    height: 16px;
    margin-top: 10px;
    cursor: pointer;
    right: 0px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    float: right;
}
.btn-hamburger__bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 5px;
    background-color: #008080;
    -webkit-transition: width .3s ease-in-out,-webkit-transform .3s ease-in-out;
    transition: width .3s ease-in-out,-webkit-transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out,width .3s ease-in-out;
    transition: transform .3s ease-in-out,width .3s ease-in-out;
    transition: transform .3s ease-in-out,width .3s ease-in-out,-webkit-transform .3s ease-in-out;
    pointer-events: none;
}
.btn-hamburger__bar-top {
    top: 0;
}
.btn-hamburger__bar-middle {
    top: 7px;
}
.btn-hamburger__bar-bottom {
    bottom: 0;
}
.m-btn.active {
    -webkit-transition-delay: .6s;
    -o-transition-delay: .6s;
    transition-delay: .6s;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.m-btn.active .btn-hamburger__bar-top {
    -webkit-transform: translateY(7px);
    transform: translateY(7px);
}
.m-btn.active .btn-hamburger__bar-middle {
    width: 0;
}
.m-btn.active .btn-hamburger__bar-bottom {
    -webkit-transform: translateY(-7px) rotate(90deg);
    transform: translateY(-7px) rotate(90deg);
}

/* 解决方案内页banner */
.ny-ban{
    position: relative;
    overflow: hidden;
    background: #2b2b2b;
}
.ny-ban .ny-title {
  position: absolute;
  bottom: 0%;
  left: 50%;
  width: 100%;
  transform: translate(-50%,-50%);
  color: #fff;
}
.ny-ban .ny-title a{
    color: #fff;
}
.ny-ban .ny-title .cntitle {
  font-size: 3.0rem;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 992px){
    .m-btn{
        display: block;
    }
    .ny-ban .ny-title .cntitle {
        font-size: 1.5rem;
    }
    .ny-ban img{
        max-width: none;
        width: 180%;
        margin-left: -40%;
    }
}
/* 当前分类位置 */
.ny-nav{
    background-color: #fff;
    width: 100%;    
    position: sticky;
    top: 75px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 990;
}
.ny-nav ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1.5rem 0;
}
.ny-nav li{
    width: 25%;
}
.ny-nav li a{
    padding: 10px 1.0rem;    
    font-size: 1.125rem;
    text-align: center;  
    display: block;
    transition: all .3s;
    background-color: #efefef; 
    border-radius: 3rem;
    margin: 0 10px;
}
.ny-nav li a.active,.ny-nav li a:hover{
    background: #008080;
    border-color: #008080;
    color: #fff;    
}
@media (max-width:992px) {  
    .ny-nav{
        display: none;
    }    
}
/* 手机下拉框 */
.m-pro-nav{
    display: none;
}
.m-pro-nav .dropdown .btn{
    width:100%;
    background: #008080;
    color: #fff;
    padding:10px 0;
}
.m-pro-nav .dropdown .dropdown-menu{
    width:100%;
    padding:10px 20px;
    height:313px;
    overflow: auto;
}
.m-pro-nav .dropdown .dropdown-menu li{
    padding:8px 10px;
    border-bottom:1px solid #ddd;
}
@media (max-width:991px){
    .m-pro-nav{
        display: block;
        margin:20px 0px 20px;
    }
}
/* 搜索 */
.search form{
    width:100%;
    height:100%;
    position: relative;
}
.search form input{
    width:100%;
    border-radius: 0rem;
    padding: 2px 15px;
    border:1px solid #dfdfdf;
    background: #eee;
}
.search form input:-moz-placeholder {
    font-size: 14px;
}
.search form input:-ms-input-placeholder{
    font-size: 14px;
}
.search form input::-webkit-input-placeholder{
    font-size: 14px;
}
.search form button{
    background:transparent;
    position: absolute;
    right: 5px;
    top: -1px;
    border:none;
    width: 50px;
    color:#363433;
    height:100%;
}
.search form button i{
    font-size: 18px;
}
@media (max-width:992px){
    .search form{
       max-width: 100%; 
    }
}
.main{
    background-color: #f6f6f6;
}
.main .ny-title{
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}
.main .ny-title span{
    display: block;
    font-weight: 600;
    font-size: 2.5rem;
    color: #008080;
}
@media (max-width: 1280px) {
  .main .ny-title span{
    font-size: 1.5rem;
  }  
}

.line{
    border-bottom: 1px solid #4d4d4d;
    height: 6px;
    width: 100%;
    position: relative;
}
.line::after {
    display: block;
    content: "";
    width: 100%;
    height: 3px;
    background: #4d4d4d;
    margin-top: 0px;
}

.ny-comm .comm-left{
    width: 22%;
    float: left;
    position: sticky;
    top: 120px;
}
.ny-comm .comm-right{
    width: 78%;
    padding: 0px 0px 0px 40px;
    float: right;
}
@media(max-width:992px){    
    .ny-comm{
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .main .ny-title span{
        font-size: 1.5rem;
    }
    .ny-comm .comm-right{
        width: 100%;
        padding: 0;
    }
}
/*产品类别*/
.comm-left .ny-nav{
    padding: 30px 20px;
    background: #f3f3f3;
}
.comm-left .ny-nav ul.subnav{
    padding:0px 0px;
    display: none;
}
.comm-left .ny-nav li.active ul.subnav{
    display: block;
}
.comm-left .ny-nav li{
    width: 100%;
    display: block;
}
.comm-left .ny-nav li a{
    display: block;
    padding: 15px 5px 15px 0px;
    text-align: center;
    line-height: 1.3;
    font-size: 16px;
    font-weight: 400;

    position: relative;
    background: #f3f3f3;
}
.comm-left .ny-nav li.onenav{
    width: 100%;
    display: block;
}
.comm-left .ny-nav li.onenav a{
    display: block;
    padding: 15px 10px 15px 10px;
    text-align: left;
    border-bottom:1px solid #dedede;
}
.comm-left .ny-nav li.active a.on,.comm-left .ny-nav li a:hover{
    color: #fe5b00;
}
.comm-left .ny-nav ul.subnav li a{
    display: block;
    padding: 10px 10px 10px 10px;
    line-height: 1.3;
    font-size: 14px;
    font-weight: lighter;
}

.comm-left .ny-nav ul.nonesub li a:hover,
.comm-left .comm-left .ny-nav ul.subnav li a:hover,.comm-left .ny-nav ul.subnav li a.subactive{
    color: #fff;
    background: #fe5b00;
}
@media (max-width:992px) {
    .comm-left{
        display: none;
    }
}
/* 关于我们 */
.ny-about{
    background-color: #f6f6f6;
}
.ny-about .about-txt{
    font-size: 1.35rem;
    line-height: 2.0;
}
.ny-about .about-txt strong,.about .about-txt strong{
    color: #008080;
}
.about h5,.ny-about h5 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}
.about h5 span,.ny-about h5 span {
    display: block;
    font-size: 2.85rem;
}

@media (max-width:992px) {
    .about h5,.ny-about h5 {
        font-size: 1.25rem;
    }
    .about h5 span,.ny-about h5 span {
        font-size: 1.5rem;
    }
}


/*产品列表*/
.ny-product ul.product-item{
    margin-left: -1%;
    margin-right: -1%;
}
.ny-product ul.product-item li{
   width: 20%;
   padding-left: 1%;
   padding-right: 1%;
}
.product-list,.ny-honor .honor-list{ 
    margin-bottom: 2.0rem;
    transition: all 0.5s;
}
.product-list .product-img{
    text-align: center;
    overflow: hidden;
    padding: 1.0rem; 
    background-color: #fff; 
}
.product-list .product-img img,.honor-list .honor-img img{
    width: 100%;
    transition: all 0.6s;
}
.product-list h5{
    font-size: 0.875rem;
    margin: 0.5rem 0;
    text-align: center;
    line-height: 1.4;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all 0.5s;
}
.product-list h5 span{
    font-size: 1.125rem;
}
.product-list .more-btn{
    display: flex;
    justify-content: space-between;
}
.product-list .more-btn a{
    width: 48%;
    font-size: 0.875rem;
    background-color: #4d4d4d;
    color: #fff;
    border-radius: 3rem;
    padding: 0.5rem 0.5rem;
    text-align: center;
    transition: all 0.5s;
}
.product-list .more-btn a:first-child{   
    background-color: #008080;
}
.product-list .product-img:hover{
    box-shadow: 5px 5px 15px 0 rgba(0,0,0,.3);
}
.product-list:hover .product-img img,.honor-list:hover .honor-img img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.product-list:hover h5{
    color: #008080;
}
@media (max-width: 992px){
    .ny-product ul.product-item li{
        width: 50%;
    }
    .product-list,.ny-honor .honor-list {        
        margin-bottom: 1.0rem;
    }
    .product-list .product-img {
        margin: 0.5rem 0;
    }    
}
/*产品展示详情 */

.ny-product .product-con{
    width: calc(100% - 46.25%);
    background-color: #fff;
    position: relative;
    padding: 4.0rem 3.0rem; 
}
.ny-product .product-info{
    border-radius: 10px;
    overflow: hidden;
}
.ny-product .product-info .adv-img{
    width: 46.25%;
    border-right: 1px solid #f6f6f6;
    padding: 4.0rem 8rem;
    position: relative; 
    display: flex;
    flex-direction: column;    
    align-items: center;
    background-color: #fff;
}
.ny-product .product-con .overview h3{
   font-size: 1.35rem;
   font-weight: bold;
   margin-bottom: 0.5rem;
}
.product-con h5{
   font-size: 1.25rem;
   font-weight: bold;   
   margin: 15px 0px;
}
.product-con h5 span{
    display: block;   
   color: #008080;
   font-size: 2.5rem; 
}
.product-con .overview strong{
    display: block;
    color: #008080;
    font-size: 1.125rem;
    font-weight: 800;
    margin: 10px 0px 0px;
}
.product-con .overview ul{
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
}
.product-con .overview ul li{
    width: 100%;
    padding-left: 10px;
    position: relative;
}
.product-con .overview ul li:before{
    content: "·";
    display: block;
    position: absolute;
    left: 0;
}
.ny-product .product-content{
    background-color: #fff;
}
.ny-product .product-content .remark{
    padding: 1.5rem 0rem;
}
.ny-product .pro-title{
    font-size: 2.185rem;
    color: #008080;
    line-height: 1.0;
    padding-left: 10px;
    border-left: 5px solid #008080;
    margin: 2.0rem 0rem;
    font-weight: 600;
}
.ny-product .product-content .imgs{
    background-color: #fff;
    padding: 1.0rem 1.0rem;    
    border: 3.125rem solid #f6f6f6;
    text-align: center;
}
.scrollbox{
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    padding-right: 10px;
}
/*滚动条样式*/
.scrollbox::-webkit-scrollbar {/*滚动条整体样式*/
    width: 4px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 4px;
}
.scrollbox::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: rgba(0,0,0,0.2);
}
.scrollbox::-webkit-scrollbar-track {/*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 0;
    background: rgba(0,0,0,0.1);
}
.pro-wechat{
    font-size: 1.0rem;
    position: absolute;
    bottom: 4.0rem;
    width: calc(100% - 6.0rem);
}
.pro-wechat .tel a,.pro-wechat .online a,.back a{
    padding: 1.0rem 0.5rem;
    text-align: center;
    display: block;
    font-weight: 600;
    font-size: 1.125rem; 
    border-radius: 3.0rem;   
    color: #fff;
    background: #008080;
}
.pro-wechat .online a{
    background: #fcc835;
}
.pro-wechat .tel a:hover,.pro-wechat .online a:hover,.back a:hover{
    background-color: #005b5b;
}
@media(max-width:992px){
    .ny-product .product-info .adv-img,.ny-product .product-con{
        width: 100%;
        border-right: none;
    }
    .ny-product .product-info .adv-img{
        border-bottom: 1px solid #f6f6f6;
    }
    .ny-product .product-con{    
        padding: 1.5rem 1.5rem;
    }
    .product-con h5 span{
        font-size: 1.45rem;
    }
    .pro-wechat{
        position: relative;
        bottom: 0;
        width: 100%;
    }
    .ny-product .pro-title{
        font-size: 1.5rem;
    }
}
/* 生产制造 */
.ny-manufacture .swiper-slide {
	width: 60%; /* 让 slide 宽度跟随图片内容 */
    height: auto;
	background: #fff;
    transform-origin: center;
    /* 这里可以加一点过渡，让鼠标悬停停止自动播放时更丝滑 */
    transition: transform 0.3s ease;
	box-shadow: 0 8px 30px #ddd;
}
.ny-manufacture  .swiper-slide img{
	display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain; /* 保持图片原始比例 */
}

/* 合作伙伴 */
.ny-partner{
    background: url(../img/partner.jpg) no-repeat center #f6f6f6;
    background-size: cover;
}
.ny-partner .partner-img{
    background-color: #fff;
    border-radius: 5rem;
    text-align: center;
    padding: 1.0rem 1.0rem;
    overflow: hidden;
    margin-top: 10px;
    transition: all linear 0.3s;
}
.ny-partner .partner-img img{
    width: auto;
    max-width: 100%;
    max-height: 100px;
}
.ny-partner .partner-img:hover{
    transform: translateY(-5px);
}
/* 解决方案  /* 荣誉证书 */ 
.ny-honor,.ny-manufacture{
    background-color: #fff;
}
.ny-case .case-list,.ny-honor .honor-list{
    margin: 0px 0px 20px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ebebeb;
    position: relative;
}
.ny-case .case-list .case-img,.ny-honor .honor-list .honor-img{
  overflow: hidden;
}
.ny-case .case-list .case-img img,.ny-honor .honor-list .honor-img img{ 
    width: 100%;
    transition: all 0.3s ease;
}
.ny-case .case-list h5,.ny-honor .honor-list h5{
    text-align: center;
    font-size: 1.125rem;   
    padding: 1.0rem 0.5rem;
}
.ny-case .case-list .case-con{       
    padding: 1.0rem 0.5rem;
    text-align: center;
    position: relative;
}

.ny-case .case-list .case-con .region{    
    color: #008080;
    font-size: 1.125rem;
}
.ny-case .case-list:hover .case-con:after{
    background-color: #008080;
    color: #fff;
}
.ny-case .case-list:hover .case-img img,.ny-honor .honor-list:hover .honor-img img{
    transform: scale(1.1);
}
@media(max-width:992px){   
    .pro-wechat .tel a, .pro-wechat .online a{
        font-size: 1.0rem;
        padding: 0.5rem 0.5rem;
    } 
    .ny-case .case-list .case-con{
        padding: 0rem 5rem 0rem 0rem;
    }
        
} 

.table{
    position: relative;  
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
}
.table th{
    background-color: #262626;
    color: #fff;
    vertical-align: middle;    
}
.table td{
    padding: 10px 10px; 
    vertical-align: middle;
    border-top: 1px solid #e5e5e5;
}
/*上一页下一页*/
.pre-next a{   
    line-height: 1.6;
    margin-top: 30px;    
    display: inline-block;
}
.pre-next a:hover span,.pre-next span{
    line-height: 1.6;
    color: #181818;
    font-weight: bold;
}
.product_back{
    padding: 30px 0px;
    border-bottom: 2px solid #e1e1e1;
}
@media(max-width:991px){
    .pre-next .text-right{
        text-align: left;
    }
}
/* 产品详情分类 */
.product_category{
    background-color: #fff;
}
.product_category ul li{
    width: 49%;
    background: url(../img/category.jpg) no-repeat center #007a79;
    background-size: 100% 100%;
    border-radius: 10px;
    padding: 1.0rem 1.5rem;
    color: #fff;
    font-size: 2.0rem;
    transition: all linear 0.3s;
}
.product_category ul li a{
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product_category ul li a .icon{
    border: 4px solid #fff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.0rem;
}
.product_category ul li a h5{
    font-size: 1.125rem;
}
.product_category ul li a h5 span{
    font-size: 1.65rem;
    font-weight: 600;
    display: block;
}
.product_category ul li i,
.product_category ul li a .icon i{
    font-size: 2.25rem;
}
.product_category ul li:hover{
    padding: 1.0rem 1.85rem;
    box-shadow: 5px 5px 15px 0 rgba(0,0,0,.3);
}
@media (max-width: 992px){
    .product_category ul li {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .product_category ul li a h5 span{
        font-size: 1.35rem;
    }
    .product_category ul li a .icon{
        border: 2px solid #fff;
        width: 50px;
        height: 50px;
    }
}
/* 新闻中心 */
.ny-news-content{
    width: 100%;
    padding: 1.0rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.6s;    
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.25);
    background: #fff;    
    flex-wrap: wrap;       
    margin-bottom: 2.0rem;
}
.ny-news-img{
    width: 15%;
    position: relative;
    overflow: hidden;    
}
.ny-news-img img{
    width: 100%;
}
.news-content-r{
    width: calc(100% - 17%); 
} 
.ny-news-title{
    font-size: 1.125rem;
    font-weight: bold;
    transition: all 0.6s;
}
.ny-news-title span{
    font-weight: 200;
    font-size: 0.85rem;
    opacity: 0.85;
    display: block;
}
.ny-news-intro{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;  /* 1. 允许换行 */   
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0.2rem 0rem 0.2rem 0.0rem;
}
.ny-news-content:hover{
    background: #f6f6f6;
}

@media (max-width:992px) {
    .ny-news-img,.ny-news-content{
        width: 100%;
    }
    .ny-news-content{
        display: flex;
        flex-direction: column;
    }
    .ny-news-title{
        margin-top: 10px;
        font-size: 1.125rem;
    }
    .news-content-r{
        width: calc(100% - 0%); 
    } 
}
/* 新闻详情 */
.ny-news-info{
    background-color: #fff;
    border-radius: 10px;
    padding: 3.5rem;
}
.news-info-title{
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
    border-bottom: 1px solid #f6f6f6;
    padding: 1.0rem 0rem;
}
.news-info-title span{
    font-size: 0.875rem;
    font-weight: normal;
}
.news-info-content {
    margin-top: 60px;
}
.news-info-content h3{
    margin: 15px 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: #008080;
}
.news-info-content strong{
    display: inline-block;
    margin: 1rem 0;
}
.news-info-content p{
    font-size: 1rem;
    line-height: 1.8;
}
.news-info-content img{
    margin-bottom: 15px;
}
@media (max-width:992px) {
    .news-info-title{
        font-size: 1.35rem;
        font-weight: bold;
    }
    .ny-news-info {    
        padding: 1.5rem;
    }
    .news-info-content {
        margin-top: 30px;
    }
    .news-info-content h3{
        font-size: 1.25rem;
    }
}
/*相关下载*/
.downlist ul{
    border-top: 1px solid #e5e5e5;
}
.downlist ul li a{
    display: block;
    padding: 1.75rem 0;
    font-size: 1.125rem;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;    
    position: relative;
    border-bottom: 1px solid #e5e5e5;
}
.downlist ul li a span{
    float: right;
    font-size: 1.0rem;
    padding: 0.1rem 1rem;    
    border-radius: 3rem;
    background: transparent;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}
.downlist ul li a:hover span{
    background: #d82528;
    color: #fff;
}
@media (max-width:992px){
    .downlist ul li a{
        font-size: 1.0rem;
        padding: 1.0rem 0;
    }
    .downlist ul li a span{
        font-size: 0.875rem;
        padding: 0.1rem 0.5rem;
    }
    .downlist ul li a span i{
        font-size: 0.875rem;
    }
}
/* 联系我们 */
.contact{
    background-color: #fff;
    padding: 2.5rem 2.5rem;
}
.contact .contact-title{    
    font-size: 1.5rem;
    margin-bottom: 1.0rem;
    font-weight: bold;
}
.contact ul {
    display: flex;
    justify-content: flex-end;
}
.contact ul li {     
    display: flex;
    flex-direction: row;
    align-items: start;
}
.contact ul li .er-box{
    width: 140px;    
    padding: 10px;
    border-radius: 5px;
    background: #fff;
    text-align: center;
}
.contact-list{margin:0px auto;width:100%; }
.contact-item{width:100%;height:100%;margin-bottom: 1.0rem;}
.contact-icon,.contact-item{display:flex; align-items:center}
.contact-icon{justify-content:center;width:50px;min-width:50px;height:50px;background-color:#008080;}
.contact-icon span{ color:#fff; font-size:2.0rem;}
.contact-info{padding-left:20px;display:flex;flex-direction:column;justify-content:space-around}
.contact-t{text-transform:uppercase;font-weight:600}

#gmap{width:100%;max-width:1920px;height:440px;position:absolute;left:0px;top:0px}
@media screen and (max-width:768px){  
    .contact .contact-title{font-size:1.25rem;}
    .contact-list{flex-wrap:wrap;height:auto;padding:4vw;box-sizing:border-box}
    .contact-item{width:100%;justify-content:flex-start;margin-bottom:4vw}
}
.map{
    border: 1px solid #efefef;
    padding: 5px;
    margin-top: 30px;
    background: #fff;
}
.map img{
    width: auto;
    max-width: none;
}
.BMap_stdMpCtrl, .BMapLabel, .BMap_omCtrl{
    display: none !important;
}
@media(max-width:992px){     
    .contact .contact-title {
        font-size: 1.35rem;
        margin-bottom: 5px;
    }
    .contact ul{
        justify-content: flex-start;
    }
    .contact ul li{
        margin-top: 1.0rem;
        margin-left: 0;
    }
}
/* 在线留言 */
.message {
    border-radius: 10px;
    background-color: #fff;
    padding: 2.5rem;
}
.message .msg-title{
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 2.0rem;
}
.message .msg-title span{
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
}
.message .input_item {
    flex: 1;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 20px;
}
.message .input_item i {
    color: #999;
    margin-right: 10px;
    font-size: 18px;
}
.message .modal-header i{
    font-size: 1.75rem;
    font-style: normal;
    line-height: 1.0;
    padding-left: 5px;
    border-left: 5px solid #008080;
}
.message .modal-body p {    
    font-size: 1.125rem;
    padding: 0px 0 1.0rem;
}
.form-control{
    border: none;
    padding: 0;
    background: transparent;
    outline: none;
    font-size: 0.875rem;
    border-radius: 0;
}
.form-contro:focus, .form-contro textarea:focus {
    border-bottom-color: #008080;
}
.form-control1{
    height:120px !important;
}
.message .msg-btn{
    width: 100%;
    background: #008080;
    color: #fff;
    border: none;
    font-size: 1.125rem;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 600;    
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}
.message .msg-btn:hover {
    background: #006464;
    box-shadow: 0 10px 20px rgba(0,100,176,0.2);
}