/* 定义主题色值 */
:root {
    --white: #ffffff;
    --primary: #1C71C7;
    --primary-dark: #134C86;
    --primary-light: #6AE1FC;
    --purple: #6F5EDF;
    --grey: #333333;
    --grey-m: #666666;
    --grey-light: #D4D6D7;
    --grey-f7: #F7F7F7;
    --grey-f3: #F3F3F3;
    --dark: #000000;
    --light: #F3F3F3;
    --yellow: #E27B17;

    /* 添加Bootstrap相关自定义属性 */
    --bs-primary: var(--primary);
    --bs-secondary: #666666;
    --bs-success: var(--primary);
    --bs-danger: var(--primary);
}

.bg-purple {
    background-color: var(--purple) !important;
}

.bg-grey-f7 {
    background-color: var(--grey-f7) !important;
}

.bg-grey-f3 {
    background-color: var(--grey-f3) !important;
}

.bg-deep-primary {
    background-color: var(--primary-dark) !important;
}

.text-primary-dark {
    color: var(--primary-dark) !important;
}

.text-grey {
    color: var(--grey) !important;
}

.text-grey-m {
    color: var(--grey-m) !important;
}

.cursor-pointer {
    cursor: pointer;
}

.h-600 {
    height: 600px;
}

/* 字体自定义 */

.fs-12 {
    font-size: 0.75rem !important;
}

.fs-14 {
    font-size: 0.875rem !important;
}

.fs-16 {
    font-size: 1rem !important;
}

.fs-18 {
    font-size: 1.125rem !important;
}

.fs-20 {
    font-size: 1.25rem !important;
}

.fs-24 {
    font-size: 1.5rem !important;
}

.fs-28 {
    font-size: 1.75rem !important;
}

.fs-30 {
    font-size: 1.875rem !important;
}

.fs-32 {
    font-size: 2rem !important;
}

.fs-34 {
    font-size: 2.125rem !important;
}

.fs-36 {
    font-size: 2.25rem !important;
}

.fs-40 {
    font-size: 2.5rem !important;
}

.fs-46 {
    font-size: 2.8125rem !important;
}

.fs-50 {
    font-size: 3.125rem !important;
}

.fs-title {
    font-size: 4rem;
}

.shadow {
    box-shadow: 0px 3px 3px 0px #E5E5E5;
}

.border {
    border: 1px solid #E5E5E5;
}

.radius-4 {
    border-radius: 0.25rem;
}

.radius-8 {
    border-radius: 0.5rem;
}

.radius-10 {
    border-radius: 0.625rem;
}

.radius-12 {
    border-radius: 0.75rem;
}

.radius-16 {
    border-radius: 1rem;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.object-cover {
    object-fit: cover;
}

.lh-14 {
    line-height: 1.4;
}

.lh-2 {
    line-height: 2;
}


html,
body {
    background-color: #fff;
    font-weight: normal;
    font-size: 1rem;
    font-family: '微软雅黑', 'sans-serif', 'microsoft YaHei';
    line-height: 1.5;
    color: var(--grey);
}


main {
    padding-top: 8.75rem;
    box-sizing: border-box;
    transition: all 0.2s linear;
}

main.pc-scroll-hide {
    padding-top: 5.625rem;
}

ul,
p,
span,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.15s linear;
}

a:hover {
    text-decoration: none;
    /* font-weight: bold; */
}

svg {
    height: 1em;
}

.h-100vh {
    height: 100vh;
}

.w-100vw {
    width: 100vw;
}

.pt-40 {
    padding-top: 2.5rem;
}

/* 文字超出一行 */
.text-overflow-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 文字超出2行省略号 */
.text-overflow-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 文字超出3行省略号 */
.text-overflow-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.2rem;
    line-height: 1.6;
}

/* 自定义滚动条 兼容各个浏览器 */
.customScrollbar {
    scrollbar-width: thin;
    scrollbar-color: #ccc;
}

.customScrollbar::-webkit-scrollbar {
    width: 0.5rem;
}

.customScrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.customScrollbar::-webkit-scrollbar-thumb {
    background-color: var(--theme);
    border-radius: 0.25rem;
}

.section-panel {
    padding-inline: 16%;
    padding-block: 4rem;
    box-sizing: border-box;
}

.section-panel-content {
    padding-inline: 10%;
    box-sizing: border-box;
}


/* 渐变按钮 */
.btn-primary-gradient {
    width: auto;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    background: linear-gradient(46.11deg, #c4262e, #870a20 98.14%);
    border: none;
    color: var(--white) !important;
    transition: all 0.35s linear;
}

.btn-primary-gradient:hover {
    background: linear-gradient(46.11deg, #828688, #575e61 61.34%);
    color: var(--white) !important;
}

/* 竖型菜单-公共样式 */
.nav-menu {

    /* overflow-y: auto;
    overflow-x: hidden; */
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 0;
    background-color: var(--light);
    z-index: 999;
    /* display: none; */
}

.nav-menu .sub-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--grey05);
    list-style: none;
    padding: 0;
    margin: 0;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.nav-menu .sub-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.nav-menu .nav-item {
    border-bottom: 1px solid var(--grey-light);
}

.nav-menu .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5.125rem;
    padding: 0rem 1rem 0rem 2.25rem;
    color: var(--grey-m);
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    /* border-bottom: 1px solid #D4D6D7; */
}

.nav-menu .nav-link:hover {
    color: var(--primary);
}

.nav-menu .nav-item.show .nav-link,
.nav-menu .nav-item .nav-link:hover {
    color: var(--primary-dark);
    padding-left: 1.5rem;
}

.custom-dropdown-menu {
    width: calc(100vw - 21.875rem - 15px);
    height: 100%;
    top: -1px;
    left: 21.8rem;
    border-radius: 0;
    padding: 1.875rem 6.5625rem 1.875rem 2.5rem;
    margin: 0;
    background-color: var(--light);
    overflow-y: auto;
    border-bottom: none;
}

.custom-dropdown-menu .product-card {
    width: 28.125rem;
    height: 26.25rem;
}

.custom-second-dropdown-toggle>span {
    cursor: pointer;
    cursor: pointer;
    display: flex;
    width: 100%;
    margin-left: 1rem;
}

.application-menu-card-warp {
    display: flex;
    flex-wrap: wrap;
}

.application-menu-card-warp .application-menu-card {
    width: 24.375rem;
    height: 9.375rem;
    border: 1px solid #E5E5E5;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3.375rem;
    color: var(--grey);
    transition: all 0.2s linear;
    margin: 1rem;
}

.application-menu-card:hover {
    color: var(--primary-dark) !important;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.102);
}

.application-menu-card:hover .iconfont {
    font-weight: normal;
}

.application-menu-card .iconfont {
    font-size: 3.5rem;
    transition: all 0.2s linear;
}




.product-card {
    height: 39.75rem;
    width: 26.25rem;
    transition: all 0.2s linear;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.102);
    display: inline-flex;
    flex-direction: column;
    margin: 1.25rem;
    border-radius: 4px;
    overflow: hidden;
}

.product-card .img-warp {
    padding-top: 1.5rem;
}

.product-card .card-body {
    padding: 1.875rem 1.5rem 0;
}

.product-card .card-text {
    padding-top: 2rem;
}

.product-card .card-tool {
    padding-top: 2rem;
}

.product-card-view {
    position: relative;
    border: none;
}

.product-card-view .img-warp {
    padding-top: 2rem;
}

.product-card-view:hover {
    box-shadow: none;
}

.product-card-view:after {
    content: '';
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 75%;
    bottom: 0;
    left: 0;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0.25rem;
    transition: all 0.2s linear;
    box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.102);
}

.product-card-view:hover:after {
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.102);
    height: 100%;
}

.product-card-view .product-card-contant {
    position: relative;
    z-index: 2;
}

.product-card .product-size-list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    /* gap: 0.5rem; */
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.product-card .product-size-list>.size-item {
    width: 100%;
    /* 高度跟随宽度一致 */
    aspect-ratio: 1/1;
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: var(--primary-dark);
    border-radius: 3rem;
    /* margin-right: 1rem; */
    font-size: 1rem;
    /* margin: 0 0.25rem; */
    cursor: pointer;
}

.product-card .product-size-list>.size-item:hover {
    background-color: var(--yellow);
}

.product-card .product-size-list>.size-item:hover a {
    color: #fff;
}

.product-card .product-card-btn {
    width: 100%;
    height: 4.375rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: var(--primary-dark);
    /* margin-right: 1rem; */
    font-size: 1.25rem;
    position: relative;
}

.product-card .product-card-btn i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.5rem;
    opacity: 0;
    transition: all 0.2s linear;
}

.product-card .product-card-btn:hover i {
    opacity: 1;
    right: 1rem;
}



.product-card2 {
    background-color: white;
    margin: 0;
    width: 100%;
    height: 44.2rem;

    position: relative;
    overflow: inherit;
    transition: all 0.2s linear;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.102);
}

.product-card2 .img-warp {
    padding-top: 2rem;
    width: auto;
    height: 8.625rem;
}

.product-card2 .img-warp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card2 .product-size-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    min-height: 6.5rem;
}

.product-card2 .product-size-list>.size-item {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    margin: 0 0.25rem !important;
}

.product-card2 .product-size-list>.size-item:hover {
    background-color: var(--yellow);
}

.product-card2 .product-size-list>.size-item:hover a {
    color: #fff;
}

.product-card2 .product-card-content .img-warp {
    transition: all 0.4s linear;
}

.product-card2 .product-card-content {
    position: absolute;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.2s linear;
}

.product-card2:hover {
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.25);
}

.product-card2 .product-card-content:hover {
    z-index: 15;
}

.product-card2 .product-card-content:hover .img-warp {
    transform: scale(1.5);
}

.reducer-card {
    width: 28.125rem;
    height: 29rem;
    border: 1px solid #D4D6D7;
}

.reducer-card .img-warp {
    height: 12rem;
    overflow: hidden;
}

.reducer-card .img-warp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reducer-card .card-body {}

.reducer-card-btn {
    padding: .5rem 2.5rem;
    border: 0.5px solid #999999;
    font-size: 1.125rem !important;
    color: black;
    margin: 2rem auto;
}

.reducer-card-btn:hover {
    background-color: var(--primary-dark);
    color: #fff;
}


.tool-warp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
}

.tool-card {
    height: 46.25rem;
    overflow: hidden;
    border-radius: 5px;
    border: none;
    box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.1608);
}

.tool-card .card-body {
    padding: 1.5rem 1.5rem;
}

.tool-card .img-warp2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 14.5rem;
}

.tool-card .img-warp2 .iconfont {
    font-size: 5.625rem;
    transition: all 0.3s linear;
}

.tool-card .tool-view {
    height: 5.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: var(--primary-dark);
    font-size: 1.125rem;
    position: relative;
}

.tool-card .tool-view i {
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.3s linear;
}

.tool-card .tool-view:hover i {
    opacity: 1;
    transform: translateX(0);
}

.tool-card:hover .img-warp2 .iconfont {
    color: var(--primary-dark) !important;
}

.contact-panel {
    height: 28.375rem;
    border-radius: 0.5rem;
    background: #F0F0F0;
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1608);
    padding: 6.875rem;
}

.contact-panel .contact-btn {
    width: 15.875rem;
    height: 5rem;
    border-radius: 5rem;
    background: #134C86;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: normal !important;
    margin-top: 6.75rem;
    font-size: 1.125rem;
    transition: all 0.2s linear;
}

.contact-panel .contact-btn:hover {
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1608);
}


.user-dropdown-menu {
    width: 12.5rem;
    top: 1.1rem !important;
    border-radius: 0;
    padding: 0 !important;
    display: none;
    flex-direction: column;
}

.user-dropdown-menu.show {
    display: flex !important;
}

.user-dropdown-menu a {
    height: 3rem;
    display: flex;
    align-items: center;
}

/* header */
.header-warp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.3s ease;
    height: 50px;
    z-index: 99;
}


.header-warp.pc-scroll-hide {
    transform: translateY(-4.75rem);
}

.header-warp.pc-scroll-hide .header-bottom-logo {
    margin-right: 0;
}

.header-warp.pc-scroll-hide .header-bottom {
    /* background-color: #575E61; */
    border-bottom: 1px solid transparent;
}

.header-warp.pc-scroll-hide .header-bottom.border-bottom {
    /* border-bottom: 1px solid var(--light); */
}

.header-warp .header-top {
    height: 4.75rem;
    background-color: var(--light);
    display: flex;
    justify-content: space-between;
}

.header-warp .logo {
    width: 21.875rem;
    height: 100%;
    min-height: 4.75rem;
    background-color: var(--primary-dark);
    margin-right: auto;
    background-size: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-warp .logo img {
    width: 12.75rem;
}

.header-warp .search-icon {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
}

.header-warp .search-icon1 {
    display: none;
}

.header-warp .search-icon1 .search-close1 {
    display: none;
}

.header-warp .search-icon1.active {
    justify-content: flex-end;
}

.header-warp .search-icon1.active .search-icon__wrapper {
    display: none;
}

.header-warp .search-icon1.active .search-close1 {
    display: block;
}

.header-warp .search-icon__wrapper {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s linear;
    cursor: default;
}

.header-warp .search-icon__wrapper .search-icon__img {
    width: auto;
    height: 40%;
    object-fit: contain;
}

.header-warp .language-warp {
    position: relative;
    width: 9.375rem;
    min-width: 5em;
    text-align: left;
    /* pointer-events: none; */
    overflow: hidden;
    z-index: 999;
    flex-shrink: 0;
    border-left: 1px solid var(--grey40);
}

.header-warp .search-warp {
    display: flex;
    height: 60px;
    width: 100%;
    /* margin: 0 25px; */
    padding: 0 25px;
    align-items: center;
    background-color: var(--white);
}

.header-warp .search-warp1 {
    display: none;
}

.header-warp .search-warp svg {
    /* width: 1rem; */
    height: 1.25rem;
    margin-right: 0.5rem;
    color: var(--grey);
}

.header-warp .search-warp input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}

.header-warp .search-warp input::placeholder {
    color: var(--grey40);
}

.header-warp .language-warp .language-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s linear;
    z-index: 999;
    cursor: default;
}

.header-warp .language-warp .language-btn.active {
    transform: translateY(-100%);
}

.header-warp .language-warp .language-btn>span {
    display: inline-flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}



.header-warp .language-warp .language-btn svg {
    width: 1rem;
    margin-right: 0.5rem;
}

.language-menu {
    position: fixed;
    top: 8.75rem;
    left: auto;
    right: 1px;
    transform: translateX(100%);
    display: none;
    width: 10rem;
}

.language-menu.active {
    display: block !important;
    transform: translateX(0);
}


.header-warp .header-bottom {
    height: 4rem;
    background-color: var(--grey);
    display: flex;
    color: var(--white);
    transition: all 0.3s linear;
    font-size: 1.125rem;
}


.header-warp .menu-warp {
    position: relative;
    width: 21.875rem;
    text-align: left;
    overflow: hidden;
    z-index: 999;
    flex-shrink: 0;
    border-right: 1px solid var(--grey-light);
}

.header-warp .menu-warp .menu-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s linear;
    z-index: 999;
    cursor: default;
}

.header-warp .menu-warp .menu-btn.active {
    transform: translateY(-100%);
}

.header-warp .menu-warp .menu-btn>span {
    display: inline-flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.125rem;
}


.header-warp .header-bottom .link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 4.75rem;
    border-right: 1px solid var(--grey-light);
}

.header-warp .header-bottom .link.active,
.header-warp .header-bottom .link:hover {
    background-color: var(--primary-dark);
    color: var(--light);
    border-color: var(--primary-dark);
}

.header-bottom-logo {
    width: 60px;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -60px;
    transition: margin-right 0.3s linear;
}

.header-bottom-logo>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--theme);
}



/* 移动端mobileAccordion */
#mobileAccordion {
    padding: 0 1rem;
    box-sizing: border-box;
}

#mobileAccordion .btn-link {
    font-size: 1.25rem;
    color: white;
    display: flex;
    justify-content: space-between;

}

#mobileAccordion .btn-link:hover {
    text-decoration: none;
}

#mobileAccordion .btn-link:focus {
    box-shadow: none;
    outline: none;
}

#mobileAccordion .card {
    background-color: var(--primary-dark);
    border: none;
}

#mobileAccordion .card .card-header {
    background-color: transparent;
    margin-bottom: 0px;
    /* border-top: 0.5px solid rgba(255, 255, 255, 0.2); */
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
    height: 5.125rem;
    display: flex;
    align-items: center;
}

#mobileAccordion .card .card-header>h2 {
    width: 100%;
}

#mobileAccordion .card .card-body {
    background-color: var(--primary);
    padding: 0rem;
}

#mobileAccordion .list-group-item {
    height: 5.125rem;
    font-size: 1.25rem;
    background-color: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    border: none;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
}

#mobileAccordion .list-group-item:last-child {
    border-bottom: none;
}

/* 导航菜单 */
.custom-nav-menu {
    transition: all 0.1s linear;
    top: 8.75rem;
    left: 0;
    width: 21.875rem;
    height: calc(100vh - 8.75rem);
    position: fixed;
    transform: translateX(-100%);
}

.custom-nav-menu.active {
    transform: translateX(0);
}

.custom-nav-menu.of-pc-scroll-hide {
    height: calc(100vh - 5.625rem);
}


/* 自定义导航菜单 */
.custom-dropdown-panel {
    height: 50.5rem;
    transform: none !important;
    width: 28.5rem;
    top: 4rem !important;
    display: none;
    position: absolute;
    border: 1px solid var(--grey-light);
}

.custom-dropdown-panel.active {
    display: block;
}

.custom-dropdown-panel .nav-menu {
    position: relative;
}

.custom-dropdown-panel .nav-menu .nav-link {
    padding: 0rem 1rem 0rem 2.25rem;
    height: 5.125rem;
    font-size: 1.125rem;
}

.custom-dropdown-panel .nav-menu .nav-link.active {
    padding-left: 1.5rem !important;
}

.custom-dropdown-panel .nav-menu .nav-link.active>span {
    color: var(--primary-dark);
}

.custom-dropdown-panel .nav-menu .nav-link img {
    width: 3.75rem;
}

.custom-dropdown-panel2 {
    width: 23.25rem !important;
}



.custom-second-dropdown {
    /* position: relative; */
}

.custom-second-dropdown-panel {
    height: 50.5rem;
    transform: none !important;
    min-width: 81.25rem;
    top: -1px !important;
    left: 28.4rem;
    display: none;
    position: absolute;
    background-color: var(--light);
    border: 1px solid var(--grey-light);
    padding: 1.25rem;
    overflow-y: auto;
    flex-wrap: wrap;
}


.custom-second-dropdown-panel2 {
    min-width: 23.25rem !important;
    left: 23.125rem !important;
    padding: 0 !important;
    overflow-y: inherit;
}

.custom-second-dropdown-panel2 .nav-menu {
    width: 100%;
    /* padding: 0 1rem; */
}

.custom-second-dropdown-panel2 .nav-menu .nav-item {
    padding: 0 1rem;
}

.custom-second-dropdown-panel2 .nav-menu .nav-link {
    padding: 0 0 0 1.5rem;
}

.custom-second-dropdown-panel2 .nav-menu .nav-link.active {
    padding-left: 0.5rem !important;
}


.custom-three-dropdown .custom-three-dropdown-toggle {
    cursor: pointer;
}

.custom-three-dropdown .custom-three-dropdown-panel {
    width: 38.75rem;
    height: 50.5rem;
    top: -1px !important;
    left: 23.125rem !important;
    display: none;
    position: absolute;
    background-color: var(--light);
    border: 1px solid var(--grey-light);
    padding: 1.25rem;
    overflow-y: auto;
}



/* 浮动侧边栏 */
.float-side-warp {
    width: 4.5rem;
    ;
    height: 12rem;
    position: fixed;
    top: 40%;
    right: 0;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow: -3px 3px 9px rgba(0, 0, 0, 0.08);
}

.float-side-warp .float-item {
    width: 100%;
    height: 33.3%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    background-color: var(--primary-dark);
    border: none;
}

.float-side-warp .float-item a span {
    display: none;
}

.float-side-warp .float-item:hover {
    background-color: #fff;
}

.float-side-warp .float-item:hover i {
    display: none;
}

.float-side-warp .float-item:hover span {
    display: inline-block;
    font-weight: bold;
}

.float-side-warp .float-item:hover a,
.float-side-warp .float-item:hover i {
    color: var(--primary-dark);
}

.float-side-warp .float-item a {
    width: 100%;
    height: 3.125rem;
    display: flex;
    margin: 0 0.4rem;
    text-align: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    align-items: center;
    box-sizing: content-box;
    flex-shrink: 0;
}

.float-side-warp .float-item:last-of-type a {
    border: none;
}

.float-side-warp .float-item:hover {
    font-size: 1.5rem;
    color: #fff;
}

.float-side-warp .dropdown:hover .dropdown-panel {
    display: block;
}

/* 自定义下拉面板样式 */
.float-side-warp .dropdown-panel {
    display: none;
    position: fixed;
    z-index: 999;
    width: 17.5rem;
    height: 14rem;
    right: 4.5rem;
    background-color: #fff;
    /* box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.102); */
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.302);
    top: 50%;
    transform: translateY(-50%);
}


.float-side-warp .qrcode-warp {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.float-side-warp .qrcode-warp p {
    font-size: 0.75rem;
    margin-top: 0.625rem;
    text-align: center;
}

.float-side-warp .qrcode-warp img {
    width: 7.25rem;
    height: 7.25rem;
    object-fit: contain;
}

.float-side-warp .telphone-warp {
    height: 100%;
}

.float-side-warp .telphone-warp .telphone-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50%;
    margin: 0 1.5rem;
}

.float-side-warp .telphone-warp .telphone-item:first-of-type {
    border-bottom: 1px dashed #E3E3E3;
}


.float-side-warp .telphone-warp .content {
    width: 100%;
    font-size: 1rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.25rem;
    font-weight: bold;
}

.float-side-warp .telphone-warp .content i {
    display: inline-block !important;
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.float-side-warp .telphone-warp .tip {
    width: 100%;
    font-size: 0.5rem;
    white-space: nowrap;
    margin-top: 0.1rem;
}

.float-side-warp .telphone-warp .telphone-item:last-of-type .tip {
    margin-left: -4px;
}


#aff-im-root .embed-icon {
    display: none !important;
}

.section-head {
    margin-left: 6.875rem;
    padding: 6.875rem 0;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--primary-dark);
}

.section-head2 {
    padding-block: 5.5rem 4rem;
}

/* 用户登录弹窗 */
.user-login-modal .modal-dialog {
    width: 100%;
    height: 100%;
    max-width: 33.125rem;
    max-height: 41.5625rem;
    margin: 15% auto;
}

.user-login-modal .modal-dialog .modal-content {
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1608);
    border: none;
    border-radius: 0.625rem;
}

.user-login-modal .close-btn {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 3.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s linear;
}

.user-login-modal .close-btn:hover {

    background-color: var(--primary-dark);
}

.user-login-modal .close-btn i {

    transition: all 0.2s linear;
}

.user-login-modal .close-btn:hover i {
    color: #fff;
}

.user-login-modal .modal-body {
    /* padding: ; */
}

.login-form {
    padding: 3.125rem 5rem 0;
}

.login-form .form-control {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #999;
}

.login-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-dark);
}

.login-form .login-btn {
    width: 100%;
    height: 3.75rem;
    border-radius: 1.875rem;
    background-color: var(--primary-dark);
    color: var(--light);
    font-size: 1.125rem;
    font-weight: lighter !important;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1608);
}

.login-form .btn-warp {
    border-bottom: 1px dashed #e5e5e5;
    padding-bottom: 4rem;
}

.login-form img {
    width: 2rem;
    margin-right: 0.5rem;
}


/* 移动端底部菜单导航 */
.footer-nav-warp {
    width: 100%;
    height: 4.75rem;
    background-color: var(--grey);
    position: fixed;
    bottom: 0;
    left: 0;
    visibility: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(100%);
    transition: all 0.3s linear;
    z-index: 999;
}

.footer-nav-warp.show {
    transform: translateY(0);
}

.footer-nav-warp .footer-nav {
    width: 100%;
    display: flex;
    align-items: center;
}

.footer-nav-warp .footer-nav li {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    cursor: pointer;
}

.footer-nav-warp .footer-nav li svg {
    height: 1rem;
    margin-bottom: 0.25rem;
}

.footer-nav-warp .footer-nav-btn {
    width: 65px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--grey);
    color: var(--white);
}


.footer-warp {
    padding: 3.875rem 0;
}

.copyright-warp {
    height: 3.75rem;
    background-color: var(--primary-dark);
}

.copyright-warp-content {
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 0.875rem;
    padding: 0;
}

.copyright-warp-content a {
    margin: 0 0.5rem;
}

.copyright-warp-content a:hover {
    color: #fff;
    font-weight: normal;
    text-decoration: underline;
}


/* 移动端弹出框 */
.mobile-modal-warp {
    overflow-y: auto;
    color: var(--white);
    background-color: var(--primary-dark);
    height: calc(100% - 4.75rem);
    width: 100%;
    left: 0;
    top: 4.75rem;
}

.mobile-modal-warp .modal-dialog {
    margin: 0;
    max-width: 100% !important;
    width: 100% !important;
}

.mobile-modal-warp .modal-content {
    background-color: transparent;
}

.mobile-modal-warp .modal-header {
    border: none;
    padding: 2rem;
}

.modal-backdrop.show {
    display: none;
}

.mobile-nav-menu {
    position: relative;
    width: 100%;
    height: calc(100% - 65px);
    transform: translateX(0);
    top: 0;
    font-size: 1.25rem;
    background-color: var(--primary-dark);
}

.mobile-nav-menu .nav-item {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* display: flex;
    justify-content: space-between; */
    margin: 0 2rem;
}

.mobile-nav-menu .nav-link {
    color: var(--white) !important;
}

.mobile-nav-menu .sub-menu {
    background-color: var(--primary);
    height: 100%;
    overflow-y: auto;
}


/* 面包屑 */
.custom-breadcrumb {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--grey);
    /* margin-top: 60px; */
    padding-top: 4rem;
    padding-bottom: 3.375rem;
    margin-bottom: 0;
    font-size: 1rem;
    transition: all 0.3s linear;
    border-radius: 0;
}

.custom-breadcrumb>.iconfont {
    margin-inline: 0.625rem;
    font-size: 1.25rem;
}

.custom-breadcrumb.top {
    margin-top: 0;
}

.custom-breadcrumb>a {
    font-weight: normal !important;
}


/* 表单弹出框 */
.dialog-warp {
    position: fixed;
    top: 110px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 110px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transform: translateY(-150%);
    transition: transform 0.3s linear;
    z-index: 999;
    cursor: default;
    background-color: rgba(196, 38, 46, .95);
    overflow-y: auto;
    z-index: 3;
}

.dialog-warp.show {
    transform: translateY(0);
}


.img-warp {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.img-warp video,
.img-warp img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.img-warp2 {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.img-warp2 video,
.img-warp2 img {
    height: 100%;
    width: auto;
    object-fit: cover;
}


/* 超出 */

.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 公共表单section */
.contact-section {
    height: 25rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.contact-section>form {
    width: 100%;
}

.contact-section .form-control {
    border-radius: 0;
    border: 1px solid #E5E5E5;
    height: 3.75rem;
    padding: 1.5rem;
    color: var(--grey-m);
    font-size: 0.875rem;
}

.contact-section .form-control:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid var(--primary-dark);
}

.contact-section .submit {
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

/* 公共banner */

.banner-panel {
    width: 58.75rem;
    height: 23.375rem;
    background: #1C71C7;
    margin-bottom: 8.125rem;
    border-radius: 10px;
    padding: 3.5rem;
    opacity: 0.9;
}

.banner-panel .banner-btn {
    width: 15.875rem;
    height: 5rem;
    border-radius: 5rem;
    /* border: ; */
    background: #134C86;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: normal !important;
    transition: all 0.2s linear;
}

.banner-panel .banner-btn:hover {
    box-shadow: 0px 3px 15px 0px rgba(255, 255, 255, 0.1);
}

.toast {
    width: 28.125rem;
    max-width: 28.125rem;
}


@media screen and (max-width: 768px) {

    html {
        font-size: 16px;
    }

    html,
    body {
        overflow-x: hidden !important;
    }

    main {
        padding-top: 4.75rem !important;
    }

    .fs-title {
        font-size: 1.25rem;
    }

    .h-600 {
        height: auto;
    }

    .header-warp .logo {
        width: 40%;
    }

    .header-warp {
        transform: translateY(0) !important;
    }

    .header-warp .search-icon1 {
        display: flex !important;
    }

    .header-warp .search-icon2 {
        display: none !important;
    }

    .header-warp .header-bottom {
        display: none;
        background-color: var(--grey10);
    }

    .custom-breadcrumb {
        margin-top: 0;
    }

    .header-warp .search-warp1 {
        display: flex;
    }

    .language-menu {
        top: 50px;
    }

    .footer-nav-warp {
        visibility: visible;
        background-color: var(--grey10);
    }

    .banner-warp {
        height: 23.75rem !important;
        position: relative;
    }

    .banner-warp .banner-panel {
        width: 100%;
        height: auto;
        padding: 1.5rem 2rem 1.5rem;
        margin-bottom: 1rem;
        background-color: rgba(28, 113, 199, 0.9);
    }

    .banner-warp .banner-panel>div {
        padding-bottom: 1rem;
    }

    .banner-warp .banner-panel h2 {
        font-size: 2rem;
        padding-top: 0rem !important;
    }

    .banner-warp .banner-panel>p {
        margin-top: 1rem !important;
    }

    .banner-warp .banner-panel .banner-btn {
        width: 12rem;
        height: auto;
        padding: 1rem 1.5rem;
        margin-top: 1rem !important;
    }


    .section-head {
        margin-left: 3rem;
    }

    /* 底部section */
    .tool-warp {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }

    .tool-warp .tool-card .img-warp2 {
        height: 10rem;
    }

    .tool-warp .tool-card {
        height: 32rem;
        margin-bottom: 1.85rem;
    }

    .login-form {
        padding: 3.125rem 3rem 0;
    }

    .contact-section {
        height: 32rem;
    }


}

@media screen and (max-width: 580px) {
    .h-600 {
        height: auto;
    }

    .menu-warp2 {
        margin-right: 1rem !important;
    }

    .user-warp {}

    .header-warp .language-warp {
        width: 7.5rem !important;
    }


    .header-warp .search-icon1 {
        justify-content: flex-end;
    }

    .header-warp .search-icon1 .search-icon1-text {
        display: none;
    }

    .copyright-warp {
        height: auto !important;
        padding: 3rem 15% !important;
    }

    .copyright-warp-content {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
        text-align: center;
    }

    .copyright-warp-content>span {
        padding-bottom: 2rem;
    }
}