.dropdown {
    position: relative;
    display: inline-block;
    width: 10.4rem;
}

.dropdown-select {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    text-align: center;
    width: 10.4rem;
    justify-content: center;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 10.4rem;
    min-width: 10.4rem;
}

.dropdown-menu a {
    color: #333;
    padding: 10px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.dropdown-menu a:hover {
    background-color: #f1f1f1;
}

.headrebig {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 2.5rem;
    background: url(../images/headerbackground.png) no-repeat;
    background-size: 100% 100%;
    height: 8.5rem;
}

header {
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
}

.logo img {
    height: 6.1rem;
}

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

.menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    margin-right: 3rem;
}

.menu ul li a {
    font-size: 1.8rem;
    color: #000;
    line-height: 4.1rem;
    display: block;
    border-bottom: 3px solid transparent;
    transition: .5s;
}

.menu ul li.active a,
.menu ul li:hover a {
    border-bottom: 3px solid #00ada8;
    transition: .5s;
}

.menu ul li {
    margin-right: 6rem;
}

.headerrightsearch input {
    width: 28.1rem;
    height: 3.8rem;
    display: block;
    padding: 0.1rem 1.1rem;
    outline: none;
    display: inline-flex;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    background-image: none;
    border: 1px solid #dcdfe6;
}

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

.headerrightsearch .dropdown {
    margin: 0 1.5rem;
}

.dropdown-select svg {
    height: 1.4rem;
}

.dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.dropdown-select {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.dropdown-select.active {
    border: 1px solid #00ada8;
}

.dropdown-select svg {
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
}

.dropdown-menu a.active {
    color: #00ada8;
}

.dropdown-menu a:hover {
    background-color: #f0f0f0;
}

.dropdown.open .dropdown-menu {
    display: block;
}

.dropdown.open .dropdown-select svg {
    transform: rotate(180deg);
}

.headerrightsearch button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7.1rem;
    height: 3.8rem;
    background: #00ada8;
    color: #fff;
    border: 0;
}

.dropdown.open .dropdown-select {
    border: 1px solid #00ada8;
}

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

.headerrightlogin a {
    color: #444;
    font-size: 1.4rem;
    margin-left: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7.1rem;
    height: 3.8rem;
    background: #00ada8;
    color: #fff;
    border: 0;
}

.banner {
    overflow: hidden;
}

#banner .swiper-button-next {
    background-image: url(../images/jtr.png);
    background-repeat: no-repeat;
    width: 3.6rem;
    height: 3.6rem;
    background-color: rgba(31, 45, 61, .23);
    border-radius: 100%;
    background-size: 1.2rem;
}

#banner .swiper-button-prev {
    background-image: url(../images/jtl.png);
    background-repeat: no-repeat;
    width: 3.6rem;
    height: 3.6rem;
    background-color: rgba(31, 45, 61, .23);
    border-radius: 100%;
    background-size: 1.2rem;
}

.container {
    width: 144rem;
}

.homechanyelian ul {
    display: grid;
    /* 启用 Grid 布局 */
    grid-template-columns: repeat(7, 1fr);
    /* 一行分为 6 列，每列平分 */
    gap: 1rem;
    /* 设置网格项之间的间距 */
    padding: 0;
    margin: 0;
    list-style: none;
}

.homechanyelian ul li a {
    text-align: center;
    /* 可选：内容居中 */
    background-color: #f2f2f2;
    /* 可选：测试背景色 */
    padding: 1rem;
    /* 可选：内容内边距 */
    box-sizing: border-box;
    /* 确保 padding 不影响宽度 */
    display: flex;
    align-items: center;
    height: 100%;
}

.homechanyelian {
    margin: 3rem 0 5rem;
}

.cylleft {
    width: 6rem;
    margin-right: 1rem;
}

.cylright h2 {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: left;
}

.homechanyelian ul li.fenlei1 a {
    background: linear-gradient(180deg, rgba(247, 147, 30, .1) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 1rem 1.7rem rgba(247, 147, 30, .1);
    color: #fbb03b;
}

.homechanyelian ul li.fenlei2 a {
    background: linear-gradient(180deg, rgba(237, 28, 36, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 1rem 1.7rem rgba(237, 28, 36, 0.1);
    color: #f15a24;
}

.homechanyelian ul li.fenlei3 a {
    background: linear-gradient(180deg, rgba(0, 146, 69, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 1rem 1.7rem rgba(0, 146, 69, 0.1);
    color: #006837;
}

.homechanyelian ul li.fenlei4 a {
    background: linear-gradient(180deg, rgba(140, 198, 63, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 1rem 1.7rem rgba(140, 198, 63, 0.1);
    color: #8cc63f;
}

.homechanyelian ul li.fenlei5 a {
    background: linear-gradient(180deg, rgba(96, 56, 19, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 1rem 1.7rem rgba(96, 56, 19, 0.1);
    color: #845209;
}

.homechanyelian ul li.fenlei6 a {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 1rem 1.7rem rgba(0, 0, 0, 0.1);
    color: #4d4d4d;
}
.homechanyelian ul li.fenlei7 a {
    background: linear-gradient(180deg, rgba(0, 113, 188, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 1rem 1.7rem rgba(0, 0, 0, 0.1);
    color: #3889ff;
}
.cylright p {
    text-align: left;
    margin-top: 0.5rem;
    font-size: 1.4rem;
}

.homechanyelian ul li {
    border-radius: 10px;
    border: 2px solid #ffffff;
    transition: .5s;
}

.homechanyelian ul li:hover {
    transform: translateY(-1.4rem);
    transform-origin: center center;
    transition: .5s;
}

.homechanyelian ul li.fenlei1:hover {
    border: 2px solid #fbb03b;
}

.homechanyelian ul li.fenlei2:hover {
    border: 2px solid #f15a24;
}

.homechanyelian ul li.fenlei3:hover {
    border: 2px solid #006837;
}

.homechanyelian ul li.fenlei4:hover {
    border: 2px solid #8cc63f;
}

.homechanyelian ul li.fenlei5:hover {
    border: 2px solid #845209;
}

.homechanyelian ul li.fenlei6:hover {
    border: 2px solid #4d4d4d;
}
.homechanyelian ul li.fenlei7:hover {
    border: 2px solid #4d4d4d;
}
.gongxudatingtitle h2 {
    font-size: 3.6rem;
    color: #00ada8;
    font-weight: bold;
    text-align: center;
    line-height: 6rem;
}

.gongxulist {
    margin-top: 4.25rem;
}

.gongxulist ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    background: #4addce;
}

.gongxulist ul:before {
    display: none;
}

.gongxulist ul li {
    height: 6.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.gongxulist ul li a {
    font-size: 1.6rem;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.gongxulist ul li.active,
.gongxulist ul li a:hover {
    background: linear-gradient(146deg, #00d4ce 0%, rgba(0, 173, 168) 100%);
    color: #fff;
}

.gongxulist .nav-pills>li.active>a,
.gongxulist .nav-pills>li.active>a:focus,
.gongxulist .nav-pills>li.active>a:hover {
    display: flex;
    background: transparent;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.homefuwuleft,
.homefuwuright {
    width: 50%;
}

.homefuwuright {
    margin-left: 2.6rem;
}

.homefuwu {
    display: flex;
    justify-content: space-between;
}

.homefuwutitle img {
    width: 2.4rem;
    margin-right: 1rem;
}

.homefuwutitle {
    font-size: 2.4rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    height: 5.4rem;
    align-items: center;
}

.homefuwutitle section {
    display: flex;
    align-items: center;
}

.homefuwutitle a {
    font-weight: normal;
    color: #00ada8;
    font-size: 1.6rem;
}

.gongxulistbig {
    height: 56rem;
}

.gongxulistbig .homefuwulist-main .img {
    width: 10.4rem;
    height: 10.4rem;
    background: #ff8f00;
    color: #fff;
    font-size: 4.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border-radius: 5px;
    min-width: 10.4rem;
}

.gongxulistbig .homefuwulist-main .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homefuwulist-main-item a {
    display: flex;
    height: 11.22rem;
    margin: 1.275rem 0;
    background: #ffffff;
    padding: 0.85rem 2.6rem;
    border-radius: 10px;
    box-sizing: content-box;
    border: 1px solid #fff;
    align-items: center;
    background: linear-gradient(180deg, #ecfaf2 0%, #ffffff 100%);
}

.homefuwulist-main-list-main-item-right {
    flex: 1;
    height: 9.989rem;
    padding-left: 2.083rem;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.homefuwulist-main-list-main-item-right-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 700;
    font-size: 1.8rem;
    color: #3d3d3d;
    line-height: 1;
}

.homefuwulist-main-list-main-item-right-content {
    display: flex;
    font-size: 1.4rem;
    color: #000000a6;
    margin-top: 1rem;
        overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.homefuwulist-main {
    height: 48.9rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.seamless-warp {
    overflow: hidden;
    height: 58rem;
}

.schq {
    height: 79vh;
    padding: 4.25rem 0;
}

.schqbig {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.schqtitle {
    color: #00ada8;
    font-weight: 700;
    font-size: 3.6rem;
    margin: 0 auto;
}

.schqcontent ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.schqcontent ul:after,
.schqcontent ul:before {
    display: none;
}

.schqcontent ul li {
    height: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #4addce;
}

.schqcontent ul li a {
    font-size: 1.8rem;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.schqcontent ul li.active,
.schqcontent ul li a:hover {
    background: linear-gradient(146deg, #00d4ce 0%, rgba(0, 173, 168) 100%);
    color: #fff;
}

.schqcontent .nav-pills>li.active>a,
.schqcontent .nav-pills>li.active>a:focus,
.schqcontent .nav-pills>li.active>a:hover {
    display: flex;
    background: transparent;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.schqcontent {
    margin-top: 3.3rem;
}

.schqcontent ul {
    margin-bottom: 1.7rem;
}

.schqcontentform {
    background: #fff;
    box-shadow: 0 1px 2px #00000014;
    border-radius: 4px;
    padding: 0.9375rem 4rem 0px;
    padding-bottom: 1.8rem;
}

#productForm {
    display: flex;
}

#productForm .productname {
    font-size: 1.6rem;
    height: 4rem;
    display: flex;
    align-items: center;
    margin: 0;
    padding-right: 1.2rem;
}

#productName,
#purchaseDate {
    padding: 0 1.1rem;
    border: 1px solid #dcdfe6;
    margin-right: 2rem;
}

#purchaseDate {
    padding-left: 4.1rem;
}

#purchaseDate {
    background: url(../images/rili.png) no-repeat;
    background-size: 1.4rem;
    background-position: 1rem center;
}

#distpicker select {
    height: 4rem;
    border: 1px solid #dcdfe6;
    margin-right: 0.5rem;
}

.form-buttons button {
    height: 4rem;
    width: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: none;
    margin-right: 0.5rem;
}

.form-buttons {
    display: flex;

}

.form-buttons button img {
    width: 1.4rem;
    margin-right: 0.6rem;
}

#searchButton {
    background: #00ada8;
    color: #fff;
}

#distpicker {
    margin-right: 2rem;
}

.t-header {
    display: flex;
    background: #4addce;
    height: 4.4rem;
    line-height: 4.4rem;
    justify-content: space-between;
}

.t-header p {
    width: 20%;
    text-align: center;
    font-size: 1.6rem;
}

.schqcontentformlist .t-body {
    margin: 0.68rem 0;
    background: linear-gradient(180deg, #ebf8f7 0%, #fefefe 100%);
    border-radius: 4px;
    border: 1px solid #e8e9ee;
    display: flex;
    justify-content: space-between;
}
.schqcontentformlist .t-body:last-child{
    margin-bottom:0;
}
.t-body p {
    height: 4.4rem;
    line-height: 4.4rem;
    width: 20%;
    text-align: center;
}

.schqcontentformlist {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;

}

.homehzhb {
    padding: 4rem 0 7.8rem;
    background: #fff;
    background-size: cover;
    overflow: hidden;
}

.homehzhb p {
    margin-bottom: 5rem;
}

.cylleft img {
    width: 6rem;
}

.homehzhb h2 {
    font-size: 3.6rem;
    margin-top: 0px;
    margin-bottom: 1.5rem;
    color: #333333;
}

.homehzhb ul {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

#hzkh img {
    width: 100%;
    height: 11.1rem;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.homehzhb ul li {
    width: 100%;
}

.homehzhb ul li img {
    width: 100%;
}

.footerleft ul {
    display: flex;

}

.footerleft ul li {
    font-size: 1.6rem;
    font-weight: 500;

    line-height: 3.4rem;
    padding: 0 2rem;
    position: relative;
    cursor: pointer;
}

.footerleft ul li:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: #8c8985;
}

.footerleft ul li a {
    color: #8c8985;
}

footer {
    padding: 1.8rem 0 2rem;
    background: #303030;
}

.footerbig {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #8c8985;
    padding-bottom: 4rem;
}

.footerright ul {
    display: flex;
}

.footerright ul li {
    margin-left: 2rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #8c8985;
    position: relative;
}

.footerright ul li img {
    width: 12rem;
    border-radius: 10px;
}

.banquanbig {
    display: flex;
    justify-content: space-between;
    padding-top: 4rem;
    padding-bottom: 2rem;
    color: #8c8985;
}

.banquanbig a {
    color: #8c8985;
}

.banquanbig a:hover,
.footerleft a:hover {
    color: #ff8f00;
}

.banner img {
    width: 100%;
}

#hzkh .swiper-slide i {
    display: block;
    border-right: 1px rgba(0, 0, 0, .1) solid;
    border-bottom: 1px rgba(0, 0, 0, .1) solid;
    padding: 3.5rem;
    background: #fbfbfb;
}

#hzkh .swiper-slide {
    margin: 0 !important;
}

#hzkh {
    border-left: 1px rgba(0, 0, 0, .1) solid;
    border-top: 1px rgba(0, 0, 0, .1) solid;
}

.footerleft h2 {
    color: #fff;
    margin: 2rem 0;
    font-size: 3rem;
    font-weight: bold;
}

.footerleft p {
    color: #8c8985;
    margin-bottom: 2rem;
}

.footerleft input {
    border: 1px solid #8c8985;
    background: transparent;
    height: 4rem;
    width: 100%;
    outline: none;
    padding:2rem;
}

.footerleft form {
    display: flex;
    align-items: center;
    position: relative;
    width: 40rem;
}

.footerleft button {
    height: 4rem;
    width: 8rem;
    background: url(../images/email.png) no-repeat;
    background-size: 3rem;
    background-position: center center;
    background-color: #00ada8;
    border: 0;
    position: absolute;
    right: 0;
}

.footerright ul li a {
    position: relative;
    display: flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.chj-footer-popover {
    display: none;
    position: absolute;
    top: -16rem;
    /* 根据需要调整位置 */
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 14rem;
}

.chj-footer-popover.popshow {
    display: block;
}

.popover-text {
    text-align: center;
}

.chj-footer-popover.popshow:after {
    position: absolute;
    left: 50%;
    bottom: -16px;
    border: 10px solid transparent;
    margin-left: -10px;
    border-top-color: #f7f8f9;
    content: "";
}

.footermid h2 {
    color: #fff;
    margin: 2rem 0;
    font-size: 3rem;
    font-weight: bold;
}

.footermid a {
    color: #fff;
    font-size: 1.6rem;
}

.footermid a:hover {
    color: #00ada8;
}

.footermid ul li {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 3.4rem;
    padding: 0 2rem;
    position: relative;
    cursor: pointer;
}

.footermid ul li:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: #8c8985;
}

.footermid ul {
    display: flex;
}

.ablan {
    position: absolute;
    width: 100%;
    height: 7.2rem;
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0.31);
    left: 0px;
    bottom: 0px;
}

.ablanbig {
    display: flex;
    justify-content: space-between;
}

.ablan-left {
    width: 70%;
    float: left;
}

.ablan-left ul {
    display: flex;
}

.ablan-left li {
    list-style-type: none;
    width: auto;
    height: 7.2rem;
    background: url(../images/fenge.png) center right;
    background-repeat: no-repeat;
    position: relative;
    float: left;
    padding: 0 2rem;
}

.ablan-left li a {
    display: block;
    line-height: 7.2rem;
    text-align: center;
    color: #FFFFFF;
    font-size: 1.6rem;
    cursor: pointer;
    transition: .5s;
}

.nybanner {
    position: relative;
}

.wenxiancontent {
    padding: 8.8rem 0;
}

.wenxianlb ul li {
    padding-bottom: 3rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid #dcd9d9;
}

.wenxianlb ul li a {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.wenxianlbtu {
    width: 20.64%;
    border-radius: 10px;
    overflow: hidden;
}

.wenxianlbwen {
    width: 78%;
}

.wenxianlbwen h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #000000;
    transition: .5s;
}

.wenxianlbwen h3 {
    font-size: 1.8rem;
    color: #757575;
    line-height: 3.3rem;
    margin-bottom: 0.8rem;
}

.shijian dl {
    display: flex;
    margin-bottom: 2.3rem;
}

.wenxianlbmore {
    width: 13.5rem;
    height: 4.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #434343;
    background: #e7e7e7;
    border-radius: 30px;
    transition: .5s;
}

.shijian dl dd {
    display: flex;
    align-items: center;
    margin-right: 3.1rem;
}

.shijian dl dd span {
    color: #aaaaaa;
    font-size: 1.6rem;
}

.wenxianlb ul li a:hover h2 {
    color: #00ada8;
    transition: .5s;
}

.wenxianlb ul li a:hover .wenxianlbmore {
    color: #fff;
    background: #00ada8;
    transition: .5s;
}

.inewsct .inews-tt {
    border-bottom: 1px rgba(0, 0, 0, .25) dashed;
    padding-bottom: 1rem;
}

.inewsct .inews-tt p {
    font-size: 2.0rem;
    text-align: center;
    font-weight: bold;
    line-height: 2.6rem;
    margin-bottom: 2rem;
}

.inewsct .inews-tt .skk {
    color: rgba(0, 0, 0, .55);
    text-align: center;
    margin-bottom: 2rem;
}

.inewsct .inews-ct {
    padding: 2rem 0px 0px;
    color: rgba(0, 0, 0, .7);
    line-height: 200%;
    font-size: 1.8rem;
}

.contact {
    margin-top: 6rem;
    margin-bottom: 6rem;
    line-height: 3.6rem;
    font-size: 1.6rem;
}

.contactbig {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contactleft {
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contactleft>h2 {
    font-size: 3rem;
    color: #333333;
    margin-bottom: 4rem;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    width: 100%;
}

.contactleft dl {
    display: flex;
    border-bottom: 1px rgba(255, 255, 255, .1) solid;
    padding: 2.5rem 0px;
    width: 18.75%;
}
.contactleft dl p{
    line-height: 2;
    word-break: keep-all;
    white-space: nowrap;
}
.contactleft dl:nth-child(2) {
    width: 25%;
}

.contactleft dl dt {
    width: 16%;
    margin-right: 2rem;
}

.contactleft dl dt img {
    display: block;
    margin: 0 auto;
    width: 4rem;
}

.contactleft dl dd h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.contactleft dl dd a {
    color: #333;
}
.contactleft dl dd  img{
    width: 10rem;
}
.contactright {
    width: 100%;
    float: right;
    padding: 3.5rem 3.5rem 3.5rem;
    background: #f3f3f3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contactright form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.contactright form h3 {
    font-size: 3rem;
    color: #262626;
    margin: 0px;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.contactright form h4 {
    font-size: 1.6rem;
    line-height: 2.7rem;
    margin: 1rem 0;
}

.kk {
    background: transparent;
    border: #666666 1px solid;
    height: 6rem;
    margin-bottom: 2rem;
}

.contactright form button {
    width: 18rem;
    height: 6rem;
    border: 0;
    color: #fff;
    background-color: #232323;
    font-size: 1.8rem;
    margin-top: 20px;
    transition: .5s;
}

.kk2 {
    background: transparent;
    border: #666666 1px solid;
    border-radius: 0;
}

.contactmid ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 2rem 0;
}

.contactmid ul li {
    width: 32.466667%;
    background: #fff;
    margin-bottom: 2rem;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
    padding: 3.2rem;
}

.hezuotop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
}

.hezuobottom {
    font-size: 1.4rem;
    color: #666666;
    line-height: 2;
    min-height: 5.6rem;
}

.hezuotopl {
    font-size: 2.2rem;
    color: #000000;
}

/* 弹窗样式 */
#popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52rem;
    padding: 2rem;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 1000;
}

#popup.show {
    display: block;
}

#popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

#popup-overlay.show {
    display: block;
}

.popup-header {
    font-size: 2.4rem;
    font-weight: bold;
    padding-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 2rem;
}

.popup-header:after {
    content: "";
    margin-top: 1rem;
    width: 5rem;
    height: 3px;
    display: block;
    background: #00ada8;
}

#popup form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#popup form input {
    width: 38rem;
    margin-bottom: 2rem;
    border-radius: 25px;
    line-height: 5rem;
    height: 5rem;
    padding-left: 2rem;
    border: 1px solid #DCDFE6;
}

#popup form input:hover {
    border-color: #C0C4CC;
}

.popup-buttons {
    text-align: right;
}

.popup-buttons button {
    margin-left: 1rem;
}

.anniu2 {
    height: 5rem;
    border-radius: 30px;
    background: linear-gradient(146deg, #00d4ce 0%, rgba(0, 173, 168) 100%);
    width: 38rem;
    border: 0;
    margin-bottom: 2rem;
    font-size: 2rem;
}

#popup p {
    text-align: right;
    width: 38rem;
    margin: 0 auto;
    margin-bottom: 2rem;
}

#closePopup {
    position: absolute;
    right: 2rem;
    top: 2rem;
}

#closePopup img {
    width: 3rem;
    height: 3rem;
}

body.overflow-hidden {
    overflow: hidden;
}

.cpnei {
    height: auto;
    overflow: hidden;
    padding: 2rem;
    padding-top: 3rem;
    background-color: #FFFFFF;
}

.pro-img .colmd5 {
    width: 35%;
    float: left;
    position: relative;
    background: #ff8f00;
    color: #fff;
    font-size: 4.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border-radius: 5px;
}

.pro-img .colmd7 {
    width: 60%;
    float: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pro-img .colmd5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-img .colmd7 .pro-ptt {
    font-size: 2.7rem;
    font-weight: bold;
    padding: 0px 0px 1.5rem;
    border-bottom: 1px #e8e8e8 solid;
    font-weight: bold;
}

.pro-img .colmd7>span {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px #e8e8e8 solid;
    color: #515151;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 2.2rem;
    width: 100%;
    word-wrap: break-word;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pro-img .colmd7>span section {
    width: 50%;
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.pro-img .colmd7>span p:first-child {
    font-size: 1.6rem;
    color: #999;
    padding-bottom: 0;
    position: relative;
    margin-bottom: 0;
    font-weight: normal;
    min-width: 4.8rem;
}

.pro-img .colmd7>span p:last-child {
    margin-bottom: 0;
    font-weight: normal;
    color: #000;
}

.xqmore a {
    display: block;
    width: 20.6rem;
    height: 5.2rem;
    line-height: 5.2rem;
    font-size: 1.8rem;
    background-color: #00ada8;
    color: #fff;
    text-align: center;
    text-decoration: none;
}

.pro-img {
    display: flex;
    justify-content: space-between;
}

.pro-img:after,
.pro-img:before {
    display: none;
}

.productsd {
    padding-bottom: 6rem;
}

.zhuce {
    margin-top: 8.5rem;
    padding-top: 6rem;
    background: #f2f2f2;
    padding-bottom: 6rem;
    min-height: calc(100vh - 18.9rem);
}

.zhucebig {
    background: #fff;
    width: 100%;
    padding: 5rem 10rem;
}

.zhucetop {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.zhucetop p a {
    color: #00ada8;
}

.step-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    /* 根据需要调整宽度 */
    margin: 4rem auto 4rem;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #bcbcbc;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
}

.step-label {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

.step-line {
    position: absolute;
    top: 33%;
    left: 50%;
    width: 88%;
    height: 1px;
    background-color: #ccc;
    z-index: 1;
    transform: translate(-50%, -50%);
}

.step.active .step-circle {
    background-color: #00ada8;
    /* 当前步骤的颜色 */
}

.step.active~.step-line {
    background-color: #00ada8;
    /* 当前及之前的线条颜色 */
}

.step .step-label {
    color: #bcbcbc;
}

.step.active .step-label {
    color: #00ada8;
}



.form-group {
    margin-bottom: 4rem;
    float: left;
    width: 49%;
    position:relative;
}
.form-group>span{
    position: absolute;
    right: 0;
    bottom: 0;
}
#enterpriseForm {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

#enterpriseForm label {
    display: block;
    margin-bottom: 2rem;
    font-weight: bold;
}

#enterpriseForm input,
#enterpriseForm select,
#enterpriseForm textarea {
    width: 100%;
    padding: 0.8rem;
    box-sizing: border-box;
    border: 1px solid #f5f5f5;
    border-radius: 6px;
    resize: none;
    height: 4.2rem;
    overflow: hidden;
}

#enterpriseForm .thumbnail {
    display: block;
    margin-top: 1rem;
    max-width: 20rem;
    max-height: 20rem;
}

#enterpriseForm .tab-container {
    margin-bottom: 2rem;
    width: 48%;
}

#enterpriseForm .tab {
    display: none;
}

#enterpriseForm .tab.active {
    display: block;
}

#enterpriseForm .tabs button {
    padding: 1rem;
    cursor: pointer;
}

.el-switch {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.el-switch__core {
    width: 4rem;
    height: 22rem;
    border-radius: 10px;
    background-color: rgb(220, 220, 220);
    position: relative;
    margin: 0 1rem;
    transition: background-color 0.3s;
}

.el-switch.is-checked .el-switch__core {
    background-color: rgb(19, 206, 102);
}

.el-switch__core:before {
    content: '';
    position: absolute;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: white;
    top: 50%;
    left: 0;
    transform: translate(0px, -50%);
    transition: transform 0.3s;
}

.el-switch.is-checked .el-switch__core:before {
    transform: translate(2rem, -50%);
}

/* 未上传图片时的样式 */
.el-upload--picture-card {
    background-color: #fbfdff;
    border: 1px dashed #c0ccda;
    border-radius: 6px;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.el-upload--picture-card i {
    font-size: 32px;
    color: #c0ccda;
}

/* 上传图片后的样式 */
.upload-preview {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.upload-preview .upload-actions {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    gap: 5px;
}

.upload-preview .upload-actions i {
    font-size: 16px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
}

.upload-preview .upload-actions i:after {
    font-size: 24px;
    color: #fff;
}

.upload-preview .upload-actions i:hover {
    background: rgba(0, 0, 0, 0.8);
}

.upload-container {
    width: 15rem;
    height: 15rem;
    border: 1px dashed #c0ccda;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background-color: #fbfdff;
}

.upload-container input[type="file"] {
    display: none;
}

.upload-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.upload-container .placeholder {
    font-size: 24px;
    color: #c0ccda;
    position:relative;
}
.switch-container span{
    position:relative;
}
.form-group button,
.form-group a {
    display: block;
    width: 20.6rem;
    height: 4.4rem;
    line-height: 4.4rem;
    font-size: 1.8rem;
    background-color: #00ada8;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border: 0;
    margin-top: 2.4rem;
    cursor: pointer;
}

#dynamicForm .hidden {
    display: none;
}

#dynamicForm .form-group {
    margin-bottom: 1.5rem;
}

#dynamicForm label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

#dynamicForm input,
#dynamicForm select,
#dynamicForm textarea {
    width: 100%;
    padding: 0.8rem;
    margin-top: 0.3rem;
    box-sizing: border-box;
}

#dynamicForm {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.infobig .form-group button,
.infobig .form-group a {
    margin-top: 5.2rem;
}
#partnerWarehouseQuestion .form-group {
    width: 100%;
}

#partnerWarehouseQuestion {
    width: 49%;
}

#partnerWarehouseDetails,
#ownWarehouseDetails {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.shenhetitle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 2rem;
}

.shenhetitle img {
    margin-bottom: 2rem;
}

.shenhetitle p {
    font-size: 2rem;
    font-weight: bold;
}

.shenhe section {
    text-align: center;
    line-height: 2;
}

.logind .dropdown {
    position: relative;
    display: inline-block;
}

.logind .dropdown-button {
    background-color: transparent;
    color: #333;
    padding: 1rem;
    font-size: 1.6rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.logind .dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    z-index: 1;
    padding: 8px 0;
}

.logind .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    width: 100%;
    background: #fff;
    color: #333;
    height: auto;
}

.logind .dropdown .touxiang img {
    width: 3rem;
    margin-left: 0;
    margin-right: 1rem;
    border-radius: 100%;
}

.logind .dropdown-content a:hover {
    background-color: #00ada8;
    color: #fff;
}

.logind .dropdown:hover .dropdown-content {
    display: block;
}

.logind .dropdown img {
    width: 1rem;
    margin-left: 1rem;
}

.logind .dropdown {
    width: auto;
}

.logind {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logind a {
    background: transparent;
    color: #333;
    width: 3rem;
    margin-left: 1rem;
}

.gongxu {
    margin-top: 8.5rem;
    padding-top: 6rem;
    background: #f2f2f2;
    padding-bottom: 6rem;
}

.gongxubig {
    background: #fff;
    width: 100%;
    padding: 5rem 10rem;
}

.gongxubig .form-container form {
    overflow: hidden;
}

.gongxubig .form-group {
    margin-bottom: 1.5rem;

}

.gongxubig .form-group label {
    display: block;
    margin-bottom: 2rem;
    font-weight: bold;
    width: 100%;
}

.gongxubig .required::after {
    content: " *";
    color: red;
}

.gongxubig .upload-container input {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

.gongxubig .upload-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.gongxubig textarea {
    resize: none;
    height: 4.2rem;
}

.gongxutop {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 4rem
}

.gongxubig .form-group div {
    display: flex;
}

.gongxubig .form-group div label input {
    height: 1.4rem;
    margin: 0;
}

.gongxubig .form-group div label p {
    word-break: keep-all;
}

.gongxubig .form-group div label {
    display: flex;
    width: 8rem;
}

.gongxubig input,
.gongxubig select,
.gongxubig textarea {
    width: 100%;
    padding: 0.8rem;
    box-sizing: border-box;
    border: 1px solid #f5f5f5;
    border-radius: 6px;
}

.gongxubig input {
    height: 4.2rem;
}

.gongxubig .form-container form {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#startDate,
#endDate {
    width: 49%;
}

#startDate {
    float: left;
}

#endDate {
    float: right;
}

.info {
    margin-top: 8.5rem;
    padding-top: 6rem;
    background: #f2f2f2;
    padding-bottom: 6rem;
    min-height: calc(100vh - 20rem);
}

.infoleft {
    width: 19%;

}

.infoleftlb ul li a {
    display: flex;
    padding: 1.6rem 0.9rem 1.6rem 1.7rem;
    align-items: center;
    transition: .5s;
    color: #7b7b7b;
    justify-content: center;

}

.infoleftlbwen {
    font-size: 1.6rem;
}

.infoleftlb ul li:hover>a,
.infoleftlb ul li.hover>a {
    background-color: #00ada8;
    color: #fff;
    transition: .5s;
}

.infoavatarbig {
    padding: 1.6rem 0.9rem 1.6rem 1.7rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    background: #fff;
    justify-content: center;
    flex-wrap: wrap;
}


.infoavatar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width:100%;
    margin-bottom:2rem;
    margin-top:2rem;
    font-size:2rem;
}

.renzheng {
    color: #B0B0B0;
}

.renzhengd {
    color: #00ada8;
}

.infoavatar img {
    width: 10rem;
    border-radius: 100%;
    overflow: hidden;
    height: 10rem;
    object-fit: contain;
    border: 1px solid #f2f2f2;
}
.infoavatar p{
    margin:20px 0;
    margin-bottom:0;
}
.infoleft ul {
    background: #fff;
}

.inforrmid .avatar-container {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border:1px solid #afafaf;
}

.inforrmid .avatar-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}

.inforrmid .avatar-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 14px;
    text-align: center;
}

.inforrmid .avatar-container:hover .overlay {
    opacity: 1;
}

.inforight {
    width: 78.93%;
    box-shadow: 1px 1px 15px rgb(161 161 161 / 30%);
    padding: 3.8rem 3.7rem 3.8rem 4.4rem;
    position: relative;
    background: #fff;
    font-size: 1.6rem;
    line-height: 200%;
}

.infobig {
    display: flex;
    justify-content: space-between;
}

.inforrleft h2 {
    font-size: 2rem;
    border-right: 1px solid #7b7b7b;
}

.inforrleft h2:last-child {
    border-right: 0;
}

.inforrleft {
    margin-right: 4rem;
    display: flex;
    align-items: center;
    height: 4rem;
    width: 100%;
}

.inforrleft a {
    margin: 0 1rem;
    color: #7b7b7b;
    transition: .5s;
}

.inforrleft a:first-child {
    margin-left: 0;
}

.inforrleft a:hover {
    color: #00ada8;
    transition: .5s;
}

.inforrcontent {
    display: flex;
    flex-wrap: wrap;
}

.inforrmid {
    width: 100%;
}

.infomiditem span {
    font-size: 1.6rem;
    width: 6.8rem;
    display: block;
    text-align: right;
    margin-right: 2rem;
}

.infomiditem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.infomiditem input {
    width: -moz-calc(95% - (2.4rem) * 2);
    width: -webkit-calc(95% - (2.4rem) * 2);
    width: calc(95% - (2.4rem) * 2);
    height: 4.6rem;
    border: 1px solid #afafaf;
    padding-left: 1.5rem;
}

.infomiditem {
    position: relative;
}

.infomiditem a {
    font-size: 1.6rem;
    color: #b5a7f0;
    position: absolute;
    right: 1.6rem;
    top: 50%;
    transform: translate(0, -50%);
    cursor: pointer;
}

.inforrmid {
    margin-top: 5rem;
}

.infoleftlb {
    height: 100%;
}

.infoleft ul {
    height: calc(100% - 11.8rem);
}

.inforrmid .anniu2 {
    width: 20.6rem;
    margin: 0 auto;
    display: block;
}

.inforrmid .infomiditem {
    justify-content: flex-start;
}

.inforrleft h2.hover a {
    color: #00ada8;
}

.xgmm h2 {
    font-size: 2rem;
    line-height: 4.3rem;
    margin-bottom: 4rem;
}

.form_item {
    padding-bottom: 1.2rem;
    padding-top: 2.7rem;
    border-bottom: 1px solid #bfbfbf;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form_info img {
    width: 1.8rem;
}

.form_item input {
    width: 70%;
    border: 0;
    outline: none;
    font-size: 1.4rem;
}

.form_item button {
    width: 10rem;
}

#toggleButton1 {
    background: transparent;
    border: 0;
}

#toggleButton1 img {
    width: 2.3rem;
    float: right;
}

#toggleButton2 img {
    width: 2.3rem;
    float: right;
}

#toggleButton2 {
    background: transparent;
    border: 0;
}

.xgmm .anniu2 {
    height: 4.8rem;
    border-radius: 30px;
    width: 100%;
    border: 0;
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
    font-size: 2rem;
}

.xgmm {
    width: 100%;
    margin-top: 5rem;
}

#toggleButton1 {
    background: transparent;
    border: 0;
    position: absolute;
    right: 1.5rem;
}

#toggleButton2 {
    background: transparent;
    border: 0;
    position: absolute;
    right: 1.5rem;
}

.floating-menu {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px;
    z-index: 1000;

}

.menu-item {
    margin: 10px 0;
    padding: 10px 15px;
    text-align: center;
    background-color: #00ada8;
    /* 你的网站主色调 */
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-item img {
    width: 4rem;
    margin-bottom: 1rem;
}

.menu-item:hover {
    background-color: #008d88;
    /* 悬停时的颜色 */
    color: #fff;
}

.fabu {
    display: flex;
    flex-direction: column;
    position: relative;
}

.fabu .search-container {
    display: flex;
    padding: 1.6rem;
    border-radius: 8px;
    padding-bottom: 0;
}

.fabu .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    margin-right: 2rem;
}

.fabu label {
    margin-bottom: 0.8rem;
    font-weight: bold;
}

.fabu select,
.fabu input {
    padding: 0.8rem;
    font-size: 1.4rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.fabu .actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.fabu .btn {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fabu .btn-primary {
    background-color: #00ada8;
    color: #fff;
}

.fabu .btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.fabu .inforrmid {
    width: 100%;
    margin: 0;
}

.fabu .actions {
    flex-direction: row;
}

.fabu .tab-container {
    margin: 2rem;
    margin-top: 0;
}

.fabu .tabs {
    display: flex;
    border-bottom: 2px solid #ddd;
}

.fabu .tab-btn {
    padding: 1rem 2rem;
    cursor: pointer;
    border: none;
    background-color: transparent;
    font-size: 16px;
    font-weight: bold;
    color: #666;
    transition: color 0.3s, border-bottom 0.3s;
}

.fabu .tab-btn.active {
    color: #00ada8;
    border-bottom: 2px solid #00ada8;
}

.fabu .tab-content {
    margin-top: 20px;
}

.fabu .tab-panel {
    display: none;
}

.fabu .tab-panel.active {
    display: block;
}

.fabu .data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.fabu .data-table th,
.fabu .data-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.fabu .data-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.fabu .btn-action {
    padding: 5px 10px;
    font-size: 14px;
    color: #fff;
    background-color: #00ada8;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.fabu .btn-action:hover {
    background-color: #00ada8;
}

.inforrmid .form-container form {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.fabud .form-group {
    width: 48%;
    margin-bottom: 1.5rem;
}

.fabud input {
    height: 4.2rem;
}

.fabud .form-group {
    flex-direction: column;
    display: block;
}

.fabud .form-group label {
    display: block;
    margin-bottom: 2rem;
    font-weight: bold;
    width: 100%;
}

.fabud input,
.fabud select,
.fabud textarea {
    width: 100%;
    padding: 0.8rem;
    box-sizing: border-box;
    border: 1px solid #f5f5f5;
    border-radius: 6px;
}

.fabud .form-group div label input {
    height: 1.4rem;
    margin: 0;
    display: inline-block;
    width: auto;
}

.fabud .form-group div {
    display: flex;
}

.fabud .form-group div label {
    display: flex;
    width: 13rem;
    align-items: center;
}

.fabud .form-group div label p {
    word-break: keep-all;
    width:120px;

}

.thumbnail {
    margin-bottom: 0;
}

.tongguozhuangtai {
    position: absolute;
    right: 2rem;
    top: 2rem;
}

.tongguozhuangtai img {
    width: 10rem;
    height: 10rem;
}

.shibai {
    margin-top: 2rem;
}

.shibaiyuanyin {
    margin: 2rem 0;
}

.shibaiyuanyin .red {
    color: #d81e06;
}

.products {
    margin-top: 8.5rem;
    padding-top: 6rem;
    background: #f2f2f2;
    padding-bottom: 6rem;
}

.productsbig {
    background: #fff;
    width: 100%;
}

.productstitle {
    font-size: 3rem;
    color: #333333;
    margin-bottom: 4rem;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #00ada8;
}

.productstfenlei ul li {
    width: 24rem;
    height: 4rem;
    line-height: 4rem;
    text-align: center;
    border:1px solid #4addce;
    margin: 0 1rem;
    cursor: pointer;
    font-size: 1.6rem;
    color: #000000a6;
    border-radius: 4px;
}

.productstfenlei ul li a {
    color: #000;
}

.productstfenlei ul li.active,
.productstfenlei ul li:hover {
    background: linear-gradient(146deg, #00d4ce 0%, rgba(0, 173, 168) 100%);
}

.productstfenlei ul li.active a,
.productstfenlei ul li:hover a {
    color: #fff;
}

.productstfenlei ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.productsbiaoti {
    background: #fff;
    width: 100%;
    padding: 5rem 10rem;
    border-bottom: 1px solid #f5f5f5;
}

.productsleft {
    width: 17%;
    border-right: 1px solid #e8e8e8;
}

.productsleft ul li {
    text-align: center;
    height: 6.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.productsleft ul li a {
    color: #000000d9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
    padding:0 2rem;
}

.productsleft ul li.hover,.productsleft ul li:hover {
    color: #00ada8;
    border-right: 3px solid #00ada8;
    background: #4addce;
    transition: .5s;
}

.productsleft ul li.hover a,.productsleft ul li:hover a {
    color: #fff;
    transition: .5s;
}

.productsright {
    width: 83%;
}

.productsbig {
    display: flex;

}

.productsbig .form-group {
    margin-bottom: 2rem;
    float: left;
    width: 33%;
}

.productsrighttop {
    padding: 2rem 2rem 2rem 3rem;
    border-bottom: 1px solid #e8e8e8;
}

.productsbig input,
.productsbig select,
.productsbig textarea {
    width: 50%;
    padding: 0.8rem;
    box-sizing: border-box;
    border: 1px solid #f5f5f5;
    border-radius: 6px;
}

#searchForm {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.productsbig .form-actions button {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
}

.productsbig .form-actions button:first-child {
    background-color: #00ada8;
    color: #fff;
}

.productsbig .form-actions {
    display: flex;
    justify-content: space-between;
}

.productsrightbottom {
    padding: 2rem;
}

.productsrightbottom table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 1.6rem;
    text-align: left;
    table-layout: fixed;
    /* 强制固定列宽 */
}

.productsrightbottom th,
.productsrightbottom td {
    padding: 1rem;
    border: 1px solid #ddd;
    width: 12%;
    position: relative;
    /* 为悬浮窗定位 */
}

.productsrightbottom th {
    background-color: #f4f4f4;
    text-align: center;
}

.productsrightbottom img {
    max-width: 5rem;
    max-height: 5rem;
    margin-right: 1rem;
    vertical-align: middle;
}

.productsrightbottom .ellipsis {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 20rem;
}

.productsrightbottom .flex-container span,
.productsrightbottom .flex-container div {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.productsrightbottom .flex-container {
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    justify-content: center;
    color:#333;
}
.productsrightbottom .flex-container a{
    color:#333;
}
.productsrightbottom .tooltip {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 10px;
    font-size: 14px;
    display: none;
    /* 初始隐藏 */
    z-index: 10;
    width: 100%;
    word-wrap: break-word;
    height: 100%;
    /* 自动换行 */
    opacity: 1;
}

.productsrightbottom td:hover .tooltip {
    display: block;
    /* 悬浮显示 */
    white-space: break-spaces;
}

.productsrightbottom tbody tr:nth-child(even) {
    background-color: #f4f4f4;
    /* 偶数行背景色 */
    color: #333;
    /* 字体颜色可调整为白色以提高对比度 */
}
.about1big{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.abouttitle{
    color: #00ada8;
    font-size: 3.6rem;
    line-height: 5rem;
    padding-bottom: 2rem;
    position: relative;
    margin-bottom: 4rem;
    width: 100%;
}
.abouttitle::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 7.2rem;
    height: 0.2rem;
    background: #00ada8;
}
.about-1 {
    padding: 9rem 0 5.8rem;
}
.aboutleft{
    width: 50%;
    line-height: 2;
    font-weight: bold;
}
.aboutright{
    width: 45%;
}
.about-2{
    padding-bottom: 9rem;
}
.about-2 ul li{
    width: 20%;
    border-right: 1px solid rgba(255, 255, 255, .3);
    padding: 12.5rem 0 15rem !important;
    float:left;
}
.g_round {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0 auto 3.4rem;
    border-radius: 50%;
    background: #ffffff;
    position: relative;
}
.g_cultpt1_tit {
    text-align: center;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 2.4rem;
}
.about-2 ul{
    overflow: hidden;
}

.g_round::before {
    width: 0;
    height: 0;
    border-radius: 50%;
    border: 1px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    transition: all .5s ease-out;
}

.about-2 ul li:hover .g_round::before {
    width: 50px;
    height: 50px;
}
.shenhe2 .form-group>span{
    position:absolute;
    right: 0;
    bottom: 0;
}
.shenhe2 .form-group{
    position:relative;
}
/* 弹窗样式 */
.contactbig .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.contactbig .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 40rem;
}

.contactbig .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.contactbig .close:hover {
    color: #000;
}

.contactbig .contact-item {
    margin: 1rem 0;
    font-size: 1.6rem;
    display:flex;
    align-items: center;
}
.contactbig .contact-item p{
    min-width: 15rem;
    font-size: 1.4rem;
}
.contactbig .qrcode {
    width: 10rem;
    height: 10rem;
    margin-top: 0.5rem;
}
.nybanner img{
    width:100%;
}


.contact-item {
  position: relative;
}




.menu-item:hover .contact-details,
.menu-item .contact-details:hover {
  display: block;
}

.menu-item img.contact-qr {
  width: 12rem;
  height: 12rem;
}

.contact-item {
  position: relative;
}

.contact-details {
  display: none;
  position: absolute;
  left: 0%;
  bottom: 100%; /* 放在上方 */
  transform: translate(-134%, 58%);
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 1rem;
  min-width: 16rem;
  text-align: center;
  z-index: 1000;
  color:#333;
}



.menu-item:hover .contact-details,
.menu-item .contact-details:hover {
  display: block;
}

.contact-qr {
  width: 12rem;
  height: 12rem;
}
.red{
    color:#f00;
    display: inline-block;
}
.m_header{
    display: none;
}
.yc{
    display: none;
}
.language {
    margin-left: 6.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.language a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.8rem;
    color: #000;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.language ul {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: red;
    width: 18rem;
    top: 100%;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.8);
    display: none;
}

.language ul li a {
    font-size: 1.8rem;
    line-height: 3.6rem;
    color: #666;
    white-space: nowrap;
    display: block;
    text-align: center;
    transition: .4s;
}

.language a img {
    margin-right: 0.8rem;
    width: 1.8rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.language:hover ul {
    display: block;
}

.language ul li a:hover {
    color: #00ada8;
}
@media(max-width:992px){
    .yc{
        display: block;
    }
    header{
        display: none;
    }
    .m_header {
        display: block;
    }

    .container {
        width: 100%;
    }

    .m_header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        z-index: 100002;
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    }

    .m_header {
        height: 60px;
    }

    .logo_box {
        width: 100%;
        height: 60px;
        text-align: center;
        padding: 5px 0;
        line-height: 0;
        font-size: 0;
        zoom: 1;
        background: #fff;
    }
    .logo_box a{
        display: inline-block;
        height: 50px;
    }
    .logo_box img {
        height: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .nav_toggle {
        color: #fff;
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
        -o-transform: scale(0.7);
        transform: scale(0.7);
        transform-origin: 50% 50%;
        position: absolute;
        top: 50%;
        left: 10px;
        margin-top: -13px;
        z-index: 999;
    }

    .nav_toggle {
        cursor: pointer;
        padding: 10px 35px 16px 0;
    }

    .nav_toggle span,
    .nav_toggle span:before,
    .nav_toggle span:after {
        cursor: pointer;
        height: 3px;
        width: 40px;
        background: #000;
        position: absolute;
        display: block;
        content: '';
    }

    .nav_toggle span:before {
        top: -10px;
    }

    .nav_toggle span:after {
        bottom: -10px;
    }

    .nav_toggle span,
    .nav_toggle span:before,
    .nav_toggle span:after {
        transition: all 500ms ease-in-out;
        -webkit-transition: all 500ms ease-in-out;
        -moz-transition: all 500ms ease-in-out;
        -o-transition: all 500ms ease-in-out;
    }

    .nav_toggle.active span {
        background-color: transparent;
    }

    .nav_toggle.active span:before,
    .nav_toggle.active span:after {
        top: 0;
    }

    .nav_toggle.active span:before {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
    }

    .nav_toggle.active span:after {
        transform: translateY(-10px) rotate(-45deg);
        -webkit-transform: translateY(-10px) rotate(-45deg);
        -ms-transform: translateY(-10px) rotate(-45deg);
        top: 10px;
    }

    /*移动端导航*/
    .m_header .m_nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        bottom: 0;
        width: 100%;
        background: #ffffff;
        z-index: 2;
        overflow: auto;
        border-top: 1px solid #f0f0f0;
        margin-top: -1px;
    }

    .m_header .m_nav_list a {
        display: block;
        width: 100%;
        padding: 0 15px;
        line-height: 35px;
        text-align: left;
        font-size: 14px;
        color: #000000;
    }

    .m_header .m_nav_list>li {
        position: relative;
        border-bottom: 1px solid #f0f0f0;
        transition: transform .5s ease;
        transform: matrix(1, -1, 0, 1, 200, 100);
    }



    .m_header .m_nav_list>li>a {
        opacity: 0;
    }

    .m_header .m_nav_list .dropdown .dropdown_menu {
        height: 0;
        overflow: hidden;
    }

    .m_header .m_nav_list .dropdown .dropdown_menu.on {
        height: auto;
    }

    .m_header .m_nav_list .dropdown_menu>li {
        border-top: 1px solid #f0f0f0;
        background: #f5f5f5;
    }
    .homechanyelian ul {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    .gongxulist ul{
        grid-template-columns: repeat(2, 1fr);
    }
    .homefuwuleft, .homefuwuright{
        width:100%;
    }
    .homefuwu{
        flex-wrap: wrap;
    }
    .footerbig{
        flex-wrap: wrap;
    }
    .floating-menu {
        position: fixed;
        right: 0;
        top: auto;
        width: 100%;
        bottom:0;
        display: flex;
        transform: none;
        background-color: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border-radius: 0;
        padding: 0;
        z-index: 1000;
    }
    .menu-item {
        margin: 0;
        padding: 10px 8px;
        text-align: center;
        background-color: #00ada8;
        color: #fff;
        border-radius: 0;
        text-decoration: none;
        font-size: 14px;
        transition: background-color 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .menu-item img{
        margin-bottom:8px;
        width:2rem;
        height: 2rem;
    }
    .mlogin a{
        width:20%;
    }
    .floating-menu a{
        width:25%;
    }
    .contact-details{
        position: absolute;
        left: 0%;
        bottom: 50%;
        transform: translate(-50%, -26%);
        background: #fff;
        border: 1px solid #ddd;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        padding: 1rem;
        min-width: 16rem;
        text-align: center;
        z-index: 1000;
        color: #333;
    }

    footer{
        padding:20px;
        padding-bottom:5.4rem;
    }
    .banner{
        padding-top:6rem;
    }
    .homechanyelian{
        padding:20px;
        margin:0;
    }
    #banner{
        position:relative;
    }
    .gongxulist{
        padding:20px;
        margin:0;
    }
    .homefuwu{
        padding:20px;
    }
    .gongxulistbig{
        height: auto;
    }
    .homefuwuright {
        margin-left: 0;
        margin-top:20px;
    }
    .homefuwulist-main-item a{
        padding:0.85rem 8px;
    }
    .homefuwulist-main-list-main-item-right-content>div{
        word-break: keep-all;
    }
    .homefuwulist-main{
        height: auto;
    }
    .schq{
        height: auto;
        padding:20px;
    }
    .schqbig{
        overflow-x: scroll;
    }
    .schqcontent{
        width:700px;
    }
    .homehzhb{
        padding:20px;
    }
    #hzkh .swiper-slide i{
        padding:8px;
    }
    .footermid ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    .footerbig{
        justify-content: center;
        padding:2rem 0;
    }
    .footermid ul{
        margin-bottom:20px;
    }
    .banquanbig{
        flex-wrap: wrap;
        padding:20px 0;
    }
    .banquanleft{
        width:100%;
    }
    .banquanright{
        width:100%;
    }
    .m_header .m_nav_list>li{
        width:100%;
    }
    .nybanner{
        margin-top:60px;
    }
    .ablan{
        position:relative;
    }
    .contact{
        margin:0;
        padding:20px;
    }
    .contactleft dl,.contactleft dl:nth-child(2){
        width: 100%;
    }
    .contactleft>h2{
        margin-bottom:20px;
    }
    .contactmid ul li{
        width: 100%;
    }
    .contactright form button{
        width:100%;
    }
    .wenxiancontent{
        padding:20px;
    }
    .wenxianlb ul li a{
        flex-wrap: wrap;
    }
    .wenxianlbtu{
        width:100%;
        margin-bottom:20px;
    }
    .wenxianlbwen{
        width: 100%;
    }
    .wenxianlbmore{
        width:100%;
    }
    .about-1{
        padding:20px;
    }
    .about1big{
        flex-wrap: wrap;
    }
    .aboutleft{
        width: 100%;
        margin-bottom:20px;
    }
    .aboutright{
        width: 100%;
    }
    .about-2{
        padding:20px;
    }
    .about-2 ul li {
        width: 100%;
        border-right: 1px solid rgba(255, 255, 255, .3);
        padding: 4rem 0!important;
        float: left;
    }
    .products {
        margin-top: 60px;
        padding-top: 0;
        background: #f2f2f2;
        padding-bottom: 6rem;
    }
    .productsbiaoti{
        padding:20px;
    }
    .productsbig{
        flex-wrap: wrap;
    }
    .productsleft{
        width: 100%;
    }
    .productsleft ul li{
        width: 50%;
    }
    .productsleft ul{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .productsright{
        width:100%;
    }
    .productsbig .form-group{
        width:100%;
    }
    .productsbig .form-group label{
        width:100px;
    }
    .productsbig .form-actions{
        width: 100%;
    }
    .productsrightbottom table{
        width: 1000px;
    }
    .productsrightbottom{
        overflow-x: scroll;
    }
    .zhuce {
        margin-top: 6rem;
        padding-top: 0;
        background: #f2f2f2;
        padding-bottom: 6rem;
    }
    .zhucebig{
        padding:20px;
    }
    .form-group{
        width: 100%;
    }
    .form-group button, .form-group a{
        width: 100%;
    }
    .iti-mobile .iti--container {
        top: 57px !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 30px;
        position: fixed;
    }
    #popup{
        width: 95%;
    }
    #popup form input{
        width: 100%;
    }
    .anniu2{
        width: 100%;
    }
    #popup p{
        width: 100%;
    }
    .pro-img{
        flex-wrap: wrap;
    }
    .pro-img .colmd5{
        width: 100%;
        height: 300px;
        margin-bottom:20px;
    }
    .xqmore a{
        width: 100%;
    }
    .pro-img .colmd7{
        width: 100%;
    }
    .pro-img .colmd7>span section:last-child{
        width:100%;
    }
    .pro-img .colmd7>span section:nth-last-child(2){
        width: 100%;
    }
    .info{
        margin-top: 60px;
        padding-top: 20px;
        background: #f2f2f2;
        padding-bottom: 6rem;
        padding: 20px;
    }
    .infobig{
        flex-wrap: wrap;
    }
    .infoleft{
        width: 100%;
        margin-bottom:10px;
    }
    .inforight{
        width: 100%;
    }
    .infoleft ul{
        height: auto;
    }
    .form-group{
        margin-bottom:10px;
    }
    .inforrmid{
        margin-top:10px;
    }
    .inforight{
        padding:8px 16px;
    }
    #enterpriseForm label{
        margin-bottom:10px;
    }
    .inforight{
        padding:8px 16px;
    }
    .fabu .tab-container{
        width: 800px;
    }
    .fabu .inforrmid{
        overflow-x: scroll;
    }
    .fabu .form-group{
        transform: translateZ(0);
    backface-visibility: hidden;    
    }
    .fabu .search-container{
        padding: 0;
    }
    #search-form{
        display: block !important;
    }
    .infobig .form-group button, .infobig .form-group a{
        margin-top:10px;
    }
    .infomiditem span{
        width: 7.5rem;
    }
    .gongxu{
        margin-top:60px;
        padding:0;
    }
    .gongxubig{
        padding:20px;
    }
    .banquanbig{
        line-height: 2;
    }
    .fabu .data-table th,
    .fabu .data-table td{
        display: none;
    }
    .fabu .data-table th:first-child,.fabu .data-table th:last-child{
        display: table-cell;
    }
    .fabu .data-table td:first-child,
    .fabu .data-table td:last-child {
        display: table-cell;
    }
    .fabu .tab-container{
        width: 100%;
        margin: 0;
    }
    .fabu .tab-btn{
        padding:8px;
    }
    .tongguozhuangtai img {
        width: 5rem;
        height: 5rem;
    }
    .fabud .form-group{
        width: 100%;
        margin-bottom:10px;
    }
    .fabud .form-group label{
        margin-bottom:10px;
    }
    
}