*, img, ul, li, a, p {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
}

body {
    font-family: Arial, Arial;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    font-style: normal;
    text-transform: none;
}

a {
    color: #337ab7;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #23527c;
    text-decoration: none;
}

.clear_both {
    clear: both;
}


.header{
    width: 100%;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.header .header-content{
    width: 100%;
}

.header-bottom{
    width: 1200px;
    margin: 0 auto;
    font-size: 16px;
    height: 8.715vh;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-bottom .header-logo{
    float: left;
    margin-top: 0px;
    width: 213px;
}
.header-bottom .header-logo img{
    width: 100%;
}
.header-bottom .header-logo img.normal{
    display: block;
}
.header-bottom .header-logo img.active{
    display: none;
}
.header-bottom .header-nav{
    float: right;
}

/* 页面在顶部时（未滚动）的导航样式 */
.header:not(.header-active) .header-bottom .header-nav {
    width: auto;
    height: 6.53vh;
    background: #FFFFFF;
    border-radius: 39px;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

/* 未滚动时的导航项样式调整 */
.header:not(.header-active) .header-bottom .header-nav .header-nav-item {
    line-height: 60px;
    height: 60px;
}

/* 核心修改：顶部状态下导航项hover仅文字变红和显示红线 */
.header:not(.header-active) .header-bottom .header-nav .header-nav-item:hover a {
    color: #E60012; /* 文字变红 */
}

.header:not(.header-active) .header-bottom .header-nav .header-nav-item {
    float: left;
    cursor: pointer;
    font-size: 16px;
    line-height: 8.71vh;
    height: 8.71vh;
    margin-left: 20px;
    position: relative; /* 新增：用于红线定位 */
}

/* 顶部状态下hover显示红线 */
.header:not(.header-active) .header-bottom .header-nav .header-nav-item:hover::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #E60012; /* 红线 */
}

.header-bottom .header-nav .header-nav-item{
    float: left;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    line-height: 8.71vh;
    height: 8.71vh;
    margin-right: 20px;
    margin-left: 20px;
}
.header-bottom .header-nav .header-nav-item:last-child{
    margin-right: 0;
}
.header-bottom .header-nav .header-nav-item a{
    color: #1A1A1A;
    transition: color 0.3s; /* 平滑过渡 */
}
/* 修改原有hover样式，仅在滚动后生效 */
.header.header-active .header-bottom .header-nav .header-nav-item:hover{
    position: relative; /* 确保伪元素可定位 */
}

/* 用伪元素实现距离底部10px的红线 */
.header.header-active .header-bottom .header-nav .header-nav-item:hover::after{
    content: '';
    position: absolute;
    bottom: 20px; /* 距离底部10px */
    left: 0;
    width: 100%;
    height: 1px; /* 线的粗细 */
    background-color: #E60012; /* 红色 */
}

/* 滚动后hover时字体变红 */
.header.header-active .header-bottom .header-nav .header-nav-item:hover a{
    color: #E60012; /* 红色字体 */
    transition: color 0.3s; /* 可选：添加过渡效果使颜色变化更平滑 */
}

.sub-nav{
    width: 100%;
    background: #FFFFFF;
    position: fixed;
    top: 8.71vh;
    left: 0;
    z-index: -1;
    display: none;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
}
.sub-nav .sub-nav-content{
    width: 1200px;
    margin: 60px auto 30px;
    font-size: 14px;
    color: #262626;
    text-align: center;
    display: flex;
    align-items: center;
}
.sub-nav .sub-nav-content .sub-nav-title{
    font-weight: bold;
    font-size: 40px;
    color: #262626;
    line-height: 28px;
}
.sub-nav .sub-nav-content .sub-nav-line{
    width: 2px;
    height: 206px;
    background: #D8D8D8;
    margin: 0 50px;
}
.sub-nav .sub-nav-content .sub-nav-list{
    display: flex;
    flex-wrap: wrap;
}
.sub-nav .sub-nav-content .sub-nav-list .sub-nav-item{
    width: 150px;
    margin-right: 30px;
    margin-top: 20px;
}
.sub-nav .sub-nav-content .sub-nav-list .sub-nav-item:nth-child(5n){
    margin-right: 0;
}
.sub-nav .sub-nav-content .sub-nav-list .sub-nav-item:nth-child(-n+5){
    margin-top: 0;
}
.sub-nav .sub-nav-content .sub-nav-list .sub-nav-item img{
    width: 100%;
    aspect-ratio: 1/1;
}
.sub-nav .sub-nav-content .sub-nav-list .sub-nav-item .sub-nav-item-title{
    font-size: 14px;
    color: #262626;
    line-height: 16px;
    margin-top: 10px;
}
.header-nav-product:hover .product-nav{
    display: block;
}


/** header active styles - 滚动后样式 **/
.header.header-active{
    background-color: #fff;
}
.header.header-active .header-bottom-warp{
    box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.16);
}
.header.header-active .header-bottom .header-logo img.normal{
    display: none;
}
.header.header-active .header-bottom .header-logo img.active{
    display: block;
}
.header.header-active .header-bottom .header-nav .header-nav-item a{
    color: #1A1A1A;
}

/* 滚动后（active状态）的导航样式重置 */
.header.header-active .header-bottom .header-nav {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    padding: 0 20px;
}

@media screen and (min-width: 1000px) and (max-width: 1440px){
    .header-bottom{
    width: 83.33%;
    }
    .header .header-top,
    .header-bottom,
    .sub-nav .sub-nav-content .sub-nav-title{
        font-size: 30px;
    }
    .sub-nav .sub-nav-content .sub-nav-line{
        margin: 0 30px;
        height: 180px;
    }
    .sub-nav .sub-nav-content .sub-nav-list .sub-nav-item{
        width: 120px;
        margin-right: 15px;
    }
}

@media screen and (max-width: 999px){
    .header-bottom{
    width: 90%;
    }
    .header .header-top,
    .header-bottom,
    .sub-nav .sub-nav-content{
        width: 90%;
    }
    .header-bottom .header-logo{
        width: 180px;
        margin-left: 10px;
    }
    .header-bottom .header-nav .header-nav-item{
        margin-right: 10px;
    }
    .sub-nav .sub-nav-content .sub-nav-title{
        font-size: 24px;
    }
    .sub-nav .sub-nav-content .sub-nav-line{
        margin: 0 20px;
        height: 140px;
    }
    .sub-nav .sub-nav-content .sub-nav-list .sub-nav-item{
        width: 96px;
        margin-right: 10px;
    }
}

.title{
    font-weight: bold;
    font-size: 40px;
    line-height: 44px;
    color: #1A1A1A;
    text-align: center;
}
.description{
    font-size: 16px;
    color: #666666;
    line-height: 17px;
    text-align: center;
    margin-top: 20px;
}

@media screen and (min-width: 1000px) and (max-width: 1440px){
    .title{
        font-size: 30px;
        line-height: 33px;
    }
    .description{
        font-size: 14px;
    }
}
@media screen and (max-width: 1000px){
    .title{
        font-size: 24px;
        line-height: 27px;
    }
    .description{
        font-size: 12px;
    }
}



/**** footer styles ****/

.footer-warp{
    width: 100%;
    background-color: #111111;
}

/* 新的footer-contact样式 */
.footer-contact{
    max-width: 100%;
    margin: 0 auto;
    height: 136px;
    background: #353535;
    border-radius: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-contact-inner{
    width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* 左侧文本版块样式 */
.footer-contact-left{
    width: 40%;;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-contact-title{
    width: 100%;
    height: 30px;
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 26px;
    color: #FFFFFF;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 10px;
}

.footer-contact-desc{
    width: 100%;
    height: 14px;
    font-family: Arial, Arial;
    font-weight: 400;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 18px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

/* 中间输入框和按钮样式 */
.footer-contact-middle{
    width: 45%; ;
    display: flex;
    align-items: center;
    gap: 10px;
}

.email-input{
    width: 72%;
    height: 48px;
    background: #FFFFFF;
    border-radius: 4px;
    border: none;
    padding: 0 15px;
    font-family: Arial, Arial;
    font-weight: 400;
    font-size: 14px;
    color: #7C819E;
}

.email-input::placeholder{
    color: #7C819E;
}

.consult-btn{
    width: 24%;
    height: 48px;
    background: #111111;
    border-radius: 4px;
    border: none;
    font-family: Arial, Arial;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 35px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    cursor: pointer;
}

.consult-btn:hover{
    background: #333333;
}

/* 右侧社媒链接样式 */
.footer-contact-right{
    display: flex;
    gap: 20px;
}

.social-link img{
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.social-link:hover img{
    transform: scale(1.1);
}

.footer{
    width: 1200px;
    margin: 0 auto;
}

.footer .footer-contact{
    width: 100%;
    height: 70px;
    background: #111111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}
.footer .footer-contact .footer-contact-item{
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
}
.footer .footer-contact .footer-contact-item .footer-contact-item-img{
    width: 30px;
    height: 30px;
    margin-right: 20px;
}
.footer .footer-contact .footer-contact-item .footer-contact-item-img img{
    width: 100%;
    height: 100%;
}
.footer .footer-contact .footer-contact-item .footer-contact-item-text{

}
.footer .footer-contact .footer-contact-item .footer-contact-item-text .footer-contact-item-title{
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 16px;
}
.footer .footer-contact .footer-contact-item .footer-contact-item-text .footer-contact-item-content {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
}
.footer .footer-contact .footer-contact-item .footer-contact-item-text .footer-contact-item-content a{
    color: #FFFFFF;
}

.footer .footer-content{
    width: 100%;
    height: 308px;
    padding-top: 40px;: ;
}
.footer .footer-content .footer-left{
    width: 33%;
    float: left;
}
.footer .footer-content .footer-left .footer-logo{
    width: 213px;
    height: 40px;
}
.footer .footer-content .footer-left .footer-logo img{
    width: 100%;
    height: 100%;
}
.footer .footer-content .footer-left .footer-description{
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 18px;
    margin-top: 20px;
}
/* 版权信息样式 */
.footer .footer-content .footer-left .copyright{
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 18px;
    margin-top: 40px; /* 保持与原链接区域相同的间距 */
}

.footer .footer-content .footer-products{
    width: 24%;
    float: left;
    margin-left: 5%;
}
.footer .footer-content .footer-products .footer-products-title,
.footer .footer-content .footer-form .footer-form-title{
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 22px;
    margin-bottom: 20px;
}
.footer .footer-content .footer-products .footer-products-list{
    width: 100%;
}
.footer .footer-content .footer-products .footer-products-list .footer-products-item{
    width: 100%;
    margin-bottom: 20px;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 16px;
    background: url("../images/footer-more.webp") no-repeat 100% center;
    cursor: pointer;
    opacity: 0.6;
}
.footer .footer-content .footer-products .footer-products-list .footer-products-item:hover {
    font-weight: bold;
    opacity: 0.9;
}


.footer .footer-content .footer-form{
    width: 33%;
    float: right;
}
/* 联系信息样式 */
.contact-info-list{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info-item{
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon{
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.contact-text{
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.contact-text:hover{
    color: rgba(255, 255, 255, 0.9);
    nderline;
}

@media only screen and (min-width: 1000px) and (max-width: 1439px) {
    .footer-contact-inner{
        width: 83.33%;
    }
    .footer-contact-title{
        font-size: 20px;
    }
    .footer{
        width: 83.33%;
    }
    .footer .footer-content .footer-left .copyright{
        margin-top: 20px;
    }
}
@media only screen and (max-width: 999px) {
    .footer-contact-inner{
        width: 90%;
    }
    .footer-contact-title{
        font-size: 18px;
    }
    .footer{
        width: 90%;
    }
    .footer .footer-content .footer-left .copyright{
        margin-top: 15px;
    }
}



.banner {
    width: 100%;
    position: relative;;
    overflow: hidden;
}
.banner img{
    width: 100%;
}
.banner .banner-text {
    position: absolute;
    top: calc(50% + 45px);
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    width: 100%;
    z-index: 1;
    line-height: 60px;
}

.crumb{
    width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #CECECE;
    line-height: 36px;
    font-size: 14px;
    color: #666666;
}
.crumb a{
    color: #666666;
}
.crumb span{
    color: #E60012;
}

.pagination{
    margin: 30px auto;
    text-align: center;
    display: flex;
    justify-content: center;
}
.pagination .page-item{
    margin: 0 5px;
}
.page-link{
    color: #999999;
    border-color: #999999;
    border-radius: 8px!important;
}
.page-item.active .page-link{
    color: #FFFFFF!important;
    background: linear-gradient( 90deg, #E60012 0%, #F39800 100%);
}
.page-item:hover .page-link{
    color: #999999;
}

@media screen and (min-width: 1000px) and (max-width: 1440px) {
    .banner .banner-text {
        font-size: 40px;
        line-height: 60px;
    }
    .crumb{
    width: 100%;
    }
}
@media screen and (max-width: 1000px) {
    .banner .banner-text {
        font-size: 30px;
        line-height: 45px;
    }
    .crumb{
        width: 100%;
    }
}



.right_fix {
    width: 50px; /* 修改宽度为50px */
    height: 230px; /* 修改高度为230px */
    position: fixed;
    right: 10px; /* 改为右侧悬浮，距离右侧10px */
    top: 50%;
    margin-top: -115px; /* 调整垂直居中 */
    z-index: 99999;
    border-radius: 8px; /* 增加圆角，提升美观度 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0; /* 添加内边距 */
}

.right_fix .right_fix_connect {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.right_fix .right_fix_connect .right_fix_box {
    width: 50px; /* 调整盒子宽度 */
    height: 50px; /* 调整盒子高度 */
    font-size: 12px;
    color: #333333;
    text-align: center;
    cursor: pointer;
    position: relative;
    margin-bottom: 10px; /* 图标之间间隔10px */
}

/* 黑色实心圆形背景 */
.right_fix .right_fix_connect .right_fix_box::before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    background-color: rgba(17,17,17,0.8);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.right_fix .right_fix_connect .right_fix_box:last-child {
    margin-bottom: 0;
    border: none;
}

.right_fix .right_fix_connect .right_fix_box img {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 2; /* 确保图标在圆形背景上方 */
    margin-top: 13px; /* 调整图标位置 */
    filter: brightness(0) invert(1); /* 将图标转为白色 */
}

.right_fix .right_fix_connect .right_fix_box .right_fix_box_title {
    display: none; /* 隐藏文字标题 */
}

.right_fix .right_fix_connect .right_fix_box .right_fix_box_connect {
    display: none;
    width: 180px;
    height: 60px;
    position: absolute;
    right: 64px; /* 调整到左侧显示 */
    top: 50%;
    transform: translateY(-50%);
    background: #FFFFFF;
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.16);
    border-radius: 4px;
}

.right_fix .right_fix_connect .right_fix_box.right_fix_email .right_fix_box_connect {
    width: 224px;
}

.right_fix .right_fix_connect .right_fix_box .right_fix_box_connect p {
    font-size: 16px;
    color: #333333;
    line-height: 28px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-left: 10px;
    margin-bottom: 0;
}

.right_fix .right_fix_connect .right_fix_box .right_fix_box_connect p.right_fix_box_connect_text {
    font-size: 16px;
}

.right_fix .right_fix_connect .right_fix_box .right_fix_box_connect p:first-child {
    margin-top: 7px;
}

.right_fix .right_fix_connect .right_fix_box .right_fix_box_connect p a {
    color: #333333;
    text-decoration: none;
}

.right_fix .right_fix_connect .right_fix_box .right_fix_box_connect p a:hover {
    text-decoration: underline;
}

/* 调整箭头方向和位置 */
.right_fix .right_fix_connect .right_fix_box .right_fix_box_connect_arrow {
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #FFFFFF;
    position: absolute;
    right: -15px;
    left: auto;
    width: 0;
    height: 0;
    top: 16px;
}

.right_fix .right_fix_connect .right_fix_box:hover .right_fix_box_connect {
    display: block;
}

/* 移除线条，改用间距分隔 */
.right_fix .right_fix_connect .right_fix_line {
    display: none;
}

/*弹窗*/
.popover_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99999;
}

.popover_wrap .popover_container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1212px;
    height: 586px;
    margin-top: -273px;
    margin-left: -606px;
    background: linear-gradient(180deg, #FFE8EA 0%, #FFFFFF 30%);
    border-radius: 24px;
    overflow: hidden;
    z-index: 1000;
}

.popover_wrap .popover_container .popover_close {
    float: right;
    margin-right: 20px;
    margin-top: 20px;
    cursor: pointer;
}

.popover_wrap .popover_container .popover_content {
    width: 1050px;
    margin-left: 80px;
    margin-top: 40px;
}

.popover_wrap .popover_container .popover_content .popover_title h1 {
    width: 100%;
    font-family: Arial-BoldMT, Arial-BoldMT;
    font-weight: bold;
    font-size: 40px;
    color: #333333;
    line-height: 44px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin-bottom: 40px;
}

.popover_wrap .popover_container .popover_content .popover_contact{
    width: 40%;
    height: 340px;
    float: left;
    padding: 20px;
    border-radius: 16px 16px 16px 16px;
    border: 1px solid #F0F0F0;
}
.popover_wrap .popover_container .popover_content .popover_contact h1{
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 24px;
    color: #262626;
}
.popover_wrap .popover_container .popover_content .popover_contact p{
    font-family: Arial, Arial;
    font-size: 20px;
    color: #262626;
    line-height: 28px;
    margin-top: 20px;
    padding-left: 40px;
}
.popover_wrap .popover_container .popover_content .popover_contact .popover_email{
    background: url("../images/popover-email.webp") no-repeat left center;
    cursor: pointer;
}
.popover_wrap .popover_container .popover_content .popover_contact .popover_address{
    background: url("../images/popover-location.webp") no-repeat left 5px;
}
.popover_wrap .popover_container .popover_content .popover_contact .popover_tel{
    background: url("../images/popover-tel.webp") no-repeat left center;
    cursor: pointer;
}
.popover_wrap .popover_container .popover_content .popover_contact .popover_wechat{
    background: url("../images/popover-wechat.webp") no-repeat left center;
}
.popover_wrap .popover_container .popover_content .popover_contact .popover_whatsapp{
    background: url("../images/popover-whatsapp.webp") no-repeat left center;
    cursor: pointer;
}

.popover_wrap .popover_container .popover_content .popover_form {
    width: 57%;
    float: left;
    margin-left: 3%;

}

.popover_wrap .popover_container .popover_content .popover_form .popover_form_name,
.popover_wrap .popover_container .popover_content .popover_form .popover_form_phone{
    width: 47%;
    float: left;
}

.popover_wrap .popover_container .popover_content .popover_form .popover_form_phone{
    margin-left: 6%;
}

.popover_wrap .popover_container .popover_content .popover_form .popover_form_name input,
.popover_wrap .popover_container .popover_content .popover_form .popover_form_phone input{
    width: 100%;
    height: 50px;
    background: #FFFFFF;
    border-radius: 25px;
    padding-left: 20px;
    border: 1px solid #F0F0F0;
}
.popover_wrap .popover_container .popover_content .popover_form .popover_form_email{
    width: 100%;
    margin-top: 20px;
}
.popover_wrap .popover_container .popover_content .popover_form .popover_form_email input{
    width: 100%;
    height: 50px;
    background: #FFFFFF;
    border-radius: 25px;
    padding-left: 20px;
    border: 1px solid #F0F0F0;
}

.popover_wrap .popover_container .popover_content .popover_form .popover_form_content textarea {
    width: 100%;
    height: 200px;
    margin-top: 20px;
    background: #FFFFFF;
    border-radius: 16px;
    font-family: Arial, Arial;
    font-size: 16px;
    color: #999999;
    line-height: 32px;
    padding: 10px 20px;
    border: 1px solid #F0F0F0;
    resize: none;
}

.popover_wrap .popover_container .popover_content .popover_form .popover_form_submit {
    width: 220px;
    margin-top: 30px;
    margin-left: 30px;
}

.popover_wrap .popover_container .popover_content .popover_form .popover_form_submit button {
    width: 220px;
    height: 60px;
    background: linear-gradient( 90deg, #E60012 0%, #F39800 100%);
    border-radius: 30px 30px 30px 30px;
    border-width: 0;
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
}


@media only screen and (min-width: 1080px) and (max-width: 1440px) {
    .popover_wrap .popover_container{
        width: 960px;
        height: 480px;
        margin-top: -240px;
        margin-left: -480px
    }
    .popover_wrap .popover_container .popover_content .popover_contact{
        height: 260px;
        padding: 10px;
    }
    .popover_wrap .popover_container .popover_content .popover_contact p{
        margin-top: 7px;
        font-size: 16px;
    }
    .popover_wrap .popover_container .popover_content .popover_contact{
        height: 260px;
    }
    .popover_wrap .popover_container .popover_content{
        width: 900px;
        margin-left: 30px;
        margin-top: 40px;
    }
    .popover_wrap .popover_container .popover_content .popover_title h1{
        font-size: 30px;
        line-height: 33px;
    }
    .popover_wrap .popover_container .popover_content .popover_title .popover_title_description{
        font-size: 18px;
    }
    .popover_wrap .popover_container .popover_content .popover_form .popover_form_email{
        margin-top: 10px;
    }
    .popover_wrap .popover_container .popover_content .popover_form .popover_form_content textarea{
        height: 140px;
        margin-top: 10px;
    }
    .popover_wrap .popover_container .popover_content .popover_form .popover_form_submit{
        width: 180px;
        margin-top: 20px;
    }
    .popover_wrap .popover_container .popover_content .popover_form .popover_form_submit button{
        width: 180px;
        height: 50px;
    }
}

@media only screen and (min-width: 900px) and (max-width: 1080px) {
    .popover_wrap .popover_container{
        width: 680px;
        height: 360px;
        margin-top: -180px;
        margin-left: -340px
    }
    .popover_wrap .popover_container .popover_content{
        width: 640px;
        margin-left: 20px;
        margin-top: 30px;
    }
    .popover_wrap .popover_container .popover_content .popover_title h1{
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 10px;
    }
    .popover_wrap .popover_container .popover_content .popover_contact{
        height: 230px;
        padding: 10px;
    }
    .popover_wrap .popover_container .popover_content .popover_contact p{
        margin-top: 5px;
        font-size: 12px;
        line-height: 24px;
    }
    .popover_wrap .popover_container .popover_content .popover_form{
        margin-top: 10px;
    }
    .popover_wrap .popover_container .popover_content .popover_form .popover_form_name input,
    .popover_wrap .popover_container .popover_content .popover_form .popover_form_phone input,
    .popover_wrap .popover_container .popover_content .popover_form .popover_form_email input{
        height: 40px;
    }
    .popover_wrap .popover_container .popover_content .popover_form .popover_form_email{
        margin-top: 10px;
    }
    .popover_wrap .popover_container .popover_content .popover_form .popover_form_content textarea{
        height: 120px;
        margin-top: 10px;
    }
    .popover_wrap .popover_container .popover_content .popover_form .popover_form_submit{
        width: 130px;
        margin-top: 10px;
    }
    .popover_wrap .popover_container .popover_content .popover_form .popover_form_submit button{
        width: 130px;
        height: 40px;

    }
}


@media only screen and (max-width: 900px) {
    .header .header-up .header-up-left{
        display: none;
    }
    .header-down{
        width: 100%;
    }
}


