.content_box {
    padding: 72px 0 84px;
    background: var(--ll-bg-section);
}

.content_body {
    padding: 0 15px;
    display: flex;
    gap: 40px;
}

.content_body .html_body {
    flex: 1;
    min-width: 0;
}

.content_body .products_list {
    display: grid;
    grid-column-gap: 36px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
}

.content_body .products_item {
    overflow: hidden;
    border: 1px solid var(--ll-border);
    border-radius: 12px;
    background-color: var(--ll-bg-card);
    box-shadow: 0 8px 24px rgba(17, 17, 17, .045);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.content_body .products_item .products_img {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 72%, #f1f3f5 100%);
}

.content_body .products_item .products_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    object-fit: cover;
    transition: transform .26s ease;
}

.content_body .products_item .item_box {
    min-height: 84px;
    padding: 19px 20px 22px;
    background-color: var(--ll-bg-card);
}

.content_body .products_item p {
    color: var(--ll-text-main);
    font-size: 16px;
    font-weight: 650;
    line-height: 1.48;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    transition: color .2s ease;
}

.content_body .products_item:hover {
    transform: translateY(-5px);
    border-color: var(--ll-border-strong);
    box-shadow: 0 18px 42px rgba(17, 17, 17, .10);
}

.content_body .products_item:hover .products_img img {
    transform: scale(1.03);
}

.content_body .products_item:hover p {
    color: var(--ll-brand-red);
}

.pagination_box {
    margin-top: 60px;
}

.content_body .public_side_panel {
    flex: 0 0 292px;
}

.content_body .public_side_panel .classify_body {
    overflow: hidden;
    border: 1px solid var(--ll-border);
    border-radius: 12px;
    background: var(--ll-bg-card);
    box-shadow: 0 8px 24px rgba(17, 17, 17, .045);
}

.content_body .public_side_panel .classify_body .title {
    height: auto;
    min-height: 50px;
    padding: 0 20px;
    background: linear-gradient(90deg, var(--ll-section-dark) 0%, #1f2529 100%);
    color: var(--ll-text-inverse);
    font-size: 18px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0;
    text-transform: none;
    position: relative;
}

.content_body .public_side_panel .classify_body .title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 3px;
    height: 22px;
    border-radius: 0 2px 2px 0;
    background: var(--ll-brand-red);
}

.content_body .public_side_panel .classify_body .item {
    position: relative;
    border-top: 1px solid var(--ll-border);
    background: var(--ll-bg-card);
}

.content_body .public_side_panel .classify_body .item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--ll-brand-red);
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: opacity .2s ease;
}

.content_body .public_side_panel .classify_body .item:hover {
    background: var(--ll-bg-section);
}

.content_body .public_side_panel .classify_body .item:hover::before,
.content_body .public_side_panel .classify_body .show_box::before {
    opacity: 1;
}

.content_body .public_side_panel .classify_body .item .item_cont {
    min-height: 52px;
    padding: 13px 16px 13px 20px;
}

.content_body .public_side_panel .classify_body .item .item_cont a {
    color: var(--ll-text-secondary);
    font-size: 15px;
    line-height: 1.4;
    transition: color .2s ease;
}

.content_body .public_side_panel .classify_body .item .item_cont span {
    color: var(--ll-text-muted);
    font-size: 18px;
}

.content_body .public_side_panel .classify_body .item .item_cont a:hover,
.content_body .public_side_panel .classify_body .item:hover .item_cont > a,
.content_body .public_side_panel .classify_body .show_box .item_cont > a {
    color: var(--ll-brand-red) !important;
}

.content_body .public_side_panel .classify_body .item .hide_body {
    padding: 6px 0 10px;
    border-top: 1px solid var(--ll-border);
    background: #ffffff;
}

.content_body .public_side_panel .classify_body .item .hide_body .son_item {
    padding: 0 18px 0 34px;
    color: var(--ll-text-secondary);
    font-size: 14px;
    line-height: 34px;
}

.content_body .public_side_panel .classify_body .item .hide_body .son_item:hover {
    background: var(--ll-bg-section);
    color: var(--ll-brand-red);
}

.content_body .side_panel_input {
    height: 46px;
    margin-top: 28px;
    margin-bottom: 28px;
    border: 1px solid var(--ll-border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--ll-bg-card);
    box-shadow: 0 8px 24px rgba(17, 17, 17, .045);
}

.content_body .side_panel_input:focus-within {
    border-color: var(--ll-brand-red);
    box-shadow: 0 0 0 3px rgba(181, 18, 27, .10);
}

.content_body .side_panel_input input {
    height: 100%;
    background: var(--ll-bg-card);
    color: var(--ll-text-main);
    font-size: 14px;
}

.content_body .side_panel_input input::placeholder {
    color: var(--ll-text-muted);
}

.content_body .side_panel_input .search_btn {
    width: 50px;
    background: var(--ll-brand-red);
}

.content_body .side_panel_input .search_btn:hover {
    background: var(--ll-brand-red-hover);
}

.content_body .public_side_panel .new_list .new_item {
    padding: 18px 20px;
    border-bottom: 1px solid var(--ll-border);
    background: var(--ll-bg-card);
    transition: background .2s ease;
}

.content_body .public_side_panel .new_list .new_item:hover {
    background: var(--ll-bg-section);
}

.content_body .public_side_panel .new_list .new_item .name {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--ll-text-main);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.content_body .public_side_panel .new_list .new_item .name .iconfont {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--ll-text-muted);
    font-size: 14px;
}

.content_body .public_side_panel .new_list .new_item:hover .name,
.content_body .public_side_panel .new_list .new_item:hover .name span:last-child {
    color: var(--ll-brand-red);
}

.content_body .public_side_panel .new_list .new_item p {
    color: var(--ll-text-secondary);
    font-size: 13px;
    line-height: 1.55;
}

.content_body .products_top {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 50px;
}

.content_body .products_top .left {
    flex: 1 1 auto;
    max-width: 560px;
    min-height: 520px;
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--ll-border);
    border-radius: 12px;
    background: var(--ll-bg-card);
    box-shadow: 0 8px 24px rgba(17, 17, 17, .045);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content_body .products_top .right {
    flex: 0 0 430px;
    min-width: 0;
}

.content_body .products_top .right > div {
    padding: 26px 30px;
    border: 1px solid var(--ll-border);
    border-radius: 12px;
    background: var(--ll-bg-card);
    box-shadow: 0 8px 24px rgba(17, 17, 17, .045);
}

.content_body .products_top .left .swiper_body {
    width: 100%;
}

.content_body .products_top .left .swiper {
    width: 100%;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.products_swiper2 {
    height: 100%;
    box-sizing: border-box;
}

.products_swiper2 .swiper-slide {
    width: 25%;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--ll-border);
    border-radius: 6px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
    opacity: .55;
}

.products_swiper2 .swiper-slide-thumb-active {
    border: 1px solid var(--ll-brand-red);
    opacity: 1;
}

.products_swiper_box {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 72%, #f1f3f5 100%);
}

.products_swiper_body,
.swiper_page_body {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.swiper_page_box {
    margin-top: 16px;
    position: relative;
    height: 40px;
}

.products_swiper_body .swiper-button-next:after,
.products_swiper_body .swiper-button-prev:after {
    display: none;
}

.products_swiper_body .swiper-button-next,
.products_swiper_body .swiper-button-prev {
    width: 34px;
    height: 34px;
    background-color: rgba(17, 17, 17, .44);
    border-radius: 50%;
    transition: background-color .2s ease, opacity .2s ease;
}

.products_swiper_body .swiper-button-next:hover,
.products_swiper_body .swiper-button-prev:hover {
    background-color: rgba(17, 17, 17, .72);
}

.products_swiper_body .swiper-button-next span,
.products_swiper_body .swiper-button-prev span {
    color: #fff;
    font-size: 22px;
}

.products_swiper_body .swiper-button-prev {
    left: 16px;
}

.products_swiper_body .swiper-button-next {
    right: 16px;
}

.products_top .products_name {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 16px;
    color: var(--ll-text-main);
    font-size: 25px;
    font-weight: 800;
    line-height: 1.25;
    border-bottom: 1px solid var(--ll-border);
}

.products_top .products_name::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 64px;
    height: 3px;
    background: var(--ll-brand-red);
}

.products_top .product_info {
    list-style: none;
    padding: 0;
    margin-top: 0;
}

.products_top .product_info pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    background-color: transparent;
    border: none;
    line-height: 1.62;
    font-family: Arial, 'microsoft yahei', Helvetica, sans-serif;
    color: var(--ll-text-body);
    font-size: 15px;
    padding: 0;
}

.products_top .product_info p {
    margin: 0 0 10px;
    line-height: 1.62;
    font-family: Arial, 'microsoft yahei', Helvetica, sans-serif;
    color: var(--ll-text-body);
    font-size: 15px;
}

.products_top .product_btn {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 22px;
    border-radius: 6px;
    background-color: var(--ll-brand-red);
    cursor: pointer;
    transition: background-color .2s ease, transform .2s ease;
}

.products_top .product_btn:hover {
    background-color: var(--ll-brand-red-hover);
    transform: translateY(-1px);
}

.products_top .product_btn span {
    color: #ffffff;
    line-height: 24px;
    vertical-align: bottom;
    font-weight: 700;
    letter-spacing: .01em;
}

.products_top .product_btn .iconfont {
    font-size: 18px;
}

.content_box .pr {
    margin: 42px 0 24px 0;
    background: transparent;
}

.content_box .pr span {
    background: transparent;
    color: var(--ll-text-main);
    display: inline-block;
    line-height: 1.3;
    padding: 0 0 13px;
    position: relative;
    text-transform: none;
    font-weight: 800;
    font-size: 22px;
}

.content_box .pr span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 64px;
    height: 3px;
    border-radius: 999px;
    background: var(--ll-brand-red);
}

.product_con {
    padding: 32px 36px;
    border: 1px solid var(--ll-border);
    border-radius: 12px;
    background: var(--ll-bg-card);
    box-shadow: 0 8px 24px rgba(17, 17, 17, .045);
    color: var(--ll-text-body);
    line-height: 1.7;
}

.product_con .rich-text-content {
    min-width: 0;
}

.product_con p,
.product_con li {
    color: var(--ll-text-body);
    line-height: 1.7;
}

.product_con ul,
.product_con ol {
    padding-left: 22px;
    margin: 14px 0;
}

.product_con table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-size: 13px;
    border-color: var(--ll-border);
}

.product_con table th {
    padding: 12px 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: var(--ll-section-dark);
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

.product_con table td {
    padding: 10px;
    border: 1px solid var(--ll-border);
    color: var(--ll-text-body);
    text-align: center;
}

.product_con table tbody tr:nth-child(even) {
    background: var(--ll-bg-section);
}

.product_con .tags {
    margin: 15px 0px 10px 0px;
}

.product_con .tags a {
    margin-right: 3px;
    padding: 0 8px;
    line-height: 26px;
    color: var(--ll-text-secondary);
    background: var(--ll-bg-section);
    display: inline-block;
}

.product_con .point {
    clear: both;
    margin: 26px 0 0 0;
    padding-top: 24px;
    padding-bottom: 0;
    border-top: 1px solid var(--ll-border);
    line-height: 22px;
    display: flex;
}

.product_con .point span {
    flex: 1;
}

.product_con .point span a {
    color: var(--ll-brand-red);
}

.products_form .form_row_lable {
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 800;
    color: var(--ll-text-main);
}

.products_form {
    padding: 32px 36px;
    border: 1px solid var(--ll-border);
    border-radius: 12px;
    background: var(--ll-bg-card);
    box-shadow: 0 8px 24px rgba(17, 17, 17, .045);
}

.products_form .form_group {
    margin-bottom: 18px;
}

.products_form input {
    display: block;
    width: 100%;
    height: 42px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: var(--ll-text-main);
    background-color: #fff;
    background-image: none;
    border: 1px solid var(--ll-border);
    border-radius: 6px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.products_form input::placeholder {
    color: var(--ll-text-muted);
}

.products_form input:focus {
    border: 1px solid var(--ll-brand-red);
    box-shadow: 0 0 0 3px rgba(181, 18, 27, .10);
}

.products_form textarea {
    outline: none;
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    min-height: 96px;
    height: auto;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ll-text-main);
    background-color: #fff;
    background-image: none;
    border: 1px solid var(--ll-border);
    border-radius: 6px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.products_form textarea::placeholder {
    color: var(--ll-text-muted);
}

.products_form textarea:focus {
    border: 1px solid var(--ll-brand-red);
    box-shadow: 0 0 0 3px rgba(181, 18, 27, .10);
}

.products_form .form_btn_list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
}

.products_form .form_btn_list .form_btn {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--ll-border-strong);
    border-radius: 6px;
    background-color: #ffffff;
    cursor: pointer;
    color: var(--ll-text-main);
    line-height: 26px;
    font-weight: 700;
}

.products_form .form_btn_list .form_btn:nth-child(1) {
    background-color: var(--ll-brand-red);
    border-color: var(--ll-brand-red);
    color: #ffffff;
}

.products_form .form_btn_list .form_btn:nth-child(1):hover {
    background-color: var(--ll-brand-red-hover);
    border-color: var(--ll-brand-red-hover);
}

.products_form .form_btn_list .form_btn:hover {
    background-color: var(--ll-bg-section);
}

.download_list .download_item {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    color: #898989;
    font-family: "Opensans-Regular";
    list-style: none;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    margin-bottom: 10px;
    font-size: 14px;
}

.download_list .download_item a {
    flex: 1;
    color: #333333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

}

.download_list .download_item a:hover {
    color: var(--primary-color);
}

.application_list .products_item {
    background-color: #ffffff;
}

.application_details_body {
    width: 67%;
    margin: 0 auto;
    margin-bottom: 50px;
}

.application_details_swiper {
    position: relative;
    width: 100%;
    height: 500px;
    transition: all 0.1s;
}

.application_details_swiper .products_swiper_box {
    padding-bottom: 0;
    height: 100%;
}

.application_details_swiper .swiper-slide img {
    display: block;
    height: auto;
}

.application_details_swiper_page {
    width: 200px;
    margin: 0 auto;
}

.application_details_swiper_page .swiper_page_box {
    height: 60px;
}

.news_body .news_title {
    margin: 0px;
    padding-bottom: 10px;
    /* text-align: center; */
    color: #000;
    font-size: 30px;
    font-weight: normal;
    line-height: 34px;
}

.news_body .contents p {
    font-size: 14px;
    margin: 0 0 10px;
}

.news_body .point * {
    font-size: 14px;
}

.new_btn_body {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--ll-border);
}

.new_btn_body .text {
    font-size: 17px;
    color: var(--ll-text-secondary);
}

.new_btn_body .menu {
    display: flex;
    align-items: center;
}

.inquiry_AddToAny {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--ll-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.inquiry_AddToAny .text {
    color: var(--ll-text-secondary);
    font-size: 15px;
    font-weight: 600;
}

/* Product detail page redesign */
.product-detail-page {
    padding: 76px 0 112px;
    background:
        radial-gradient(circle at 12% 8%, rgba(181, 18, 27, .035), transparent 28%),
        linear-gradient(180deg, #f5f6f8 0%, #f7f8fa 100%);
}

.product-detail-page .container {
    width: min(1440px, calc(100% - 56px));
    max-width: 1440px;
    padding: 0;
}

.product-detail-page .content_body {
    align-items: flex-start;
    gap: 36px;
    padding: 0;
}

.product-detail-page .public_side_panel {
    position: sticky;
    top: 130px;
    flex: 0 0 270px;
}

.product-detail-page .public_side_panel .new_list .new_item {
    padding: 17px 18px;
    background: #ffffff;
}

.product-detail-page .public_side_panel .classify_body,
.product-detail-page .side_panel_input,
.product-detail-page .public_side_panel .new_list {
    box-shadow: 0 10px 26px rgba(15, 23, 42, .04);
}

.product-detail-page .public_side_panel .new_list .new_item .name span:last-child,
.product-detail-page .public_side_panel .new_list .new_item p {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.product-detail-page .public_side_panel .new_list .new_item .name span:last-child {
    -webkit-line-clamp: 3;
    margin-bottom: 0;
    color: #202832;
    font-size: 13.2px;
    font-weight: 700;
    line-height: 1.45;
}

.product-detail-page .public_side_panel .new_list .new_item p {
    display: none;
}

.product-detail-page .public_side_panel .new_list .new_item + .new_item {
    border-top: 1px solid #edf0f3;
}

.product-detail-page .html_body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-detail-page .product-detail-bottom-full {
    display: flex;
    flex-direction: column;
    gap: 34px;
    margin-top: 38px;
    margin-bottom: 60px;
}

.product-detail-page .product-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 56%) minmax(380px, 44%);
    align-items: center;
    gap: 34px;
    margin-bottom: 0;
    padding: 28px 32px;
    border: 1px solid #e6ebf0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(15, 23, 42, .065);
}

.product-detail-page .products_top .left {
    max-width: none;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.product-detail-page .products_top .right {
    flex: none;
    min-width: 0;
}

.product-detail-page .products_top .right > div {
    height: 100%;
    padding: 34px 34px 30px;
    border: 1px solid #e5eaf0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: none;
}

.product-detail-page .products_swiper_box {
    min-height: 460px;
    padding-bottom: 0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px #f0f2f5;
    overflow: hidden;
}

.product-detail-page .products_swiper_box::before {
    content: "";
    position: absolute;
    left: 24%;
    right: 24%;
    bottom: 38px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(15, 23, 42, .13), transparent 68%);
    filter: blur(2px);
    pointer-events: none;
    z-index: 1;
    display: none;
}

.product-detail-page .products_swiper_box::after {
    content: "";
    position: absolute;
    top: 36px;
    right: -72px;
    width: 330px;
    height: 330px;
    border: 46px solid rgba(15, 23, 42, .035);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    display: none;
}

.product-detail-page .products_swiper_body,
.product-detail-page .swiper_page_body {
    position: relative;
    height: 100%;
}

.product-detail-page .products_swiper1,
.product-detail-page .products_swiper1 .swiper-wrapper,
.product-detail-page .products_swiper1 .swiper-slide {
    min-height: 460px;
}

.product-detail-page .products_swiper1 .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.product-detail-page .products_swiper1 .swiper-slide img {
    position: relative;
    z-index: 2;
    width: 96%;
    height: 96%;
    max-width: 96%;
    max-height: 460px;
    object-fit: contain;
    cursor: zoom-in;
    filter: none;
}

.product-detail-page .swiper_page_box {
    height: 78px;
    margin-top: 12px;
}

.product-detail-page .products_swiper2 .swiper-wrapper {
    justify-content: center;
}

.product-detail-page .products_swiper2 .swiper-slide {
    width: 72px;
    height: 72px;
    border: 1px solid #e5e8ec;
    border-radius: 10px;
    background: #ffffff;
    opacity: .62;
    transition: border-color .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.product-detail-page .products_swiper2 .swiper-slide-thumb-active {
    border-color: var(--ll-brand-red);
    box-shadow: 0 0 0 2px rgba(181, 18, 27, .10);
    opacity: 1;
}

.product-detail-page .products_swiper2 .swiper-slide img {
    width: 100%;
    height: 100%;
    padding: 6px;
    object-fit: contain;
}

.product-detail-page .product-detail-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #c81428;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.product-detail-page .product-detail-kicker::before {
    content: "";
    width: 22px;
    height: 2px;
    background: currentColor;
}

.product-detail-page .products_top .products_name {
    margin-bottom: 20px;
    padding-bottom: 18px;
    color: #111820;
    font-size: clamp(28px, 2.05vw, 36px);
    font-weight: 850;
    line-height: 1.14;
    letter-spacing: -0.025em;
}

.product-detail-page .products_top .product_info {
    margin-top: 18px;
}

.product-detail-page .products_top .product_info pre.product-spec-text {
    position: relative;
    margin: 0;
    padding: 22px 24px;
    border: 1px solid #e2e6eb;
    border-left: 4px solid #d71920;
    border-radius: 14px;
    background: #ffffff;
    color: #1f2933;
    font-size: 14px;
    line-height: 1.82;
    font-family: Arial, 'microsoft yahei', Helvetica, sans-serif;
    white-space: pre-wrap;
    word-break: break-word;
    box-shadow: none;
}

.product-detail-page .product-spec-list {
    margin-top: 20px;
    padding: 18px 20px;
    border: 1px solid #e3e8ee;
    border-left: 4px solid #d71920;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.product-detail-page .product-spec-row {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 16px;
    padding: 7px 0;
    border-bottom: 1px solid #eef1f4;
}

.product-detail-page .product-spec-row:last-child {
    border-bottom: 0;
}

.product-detail-page .product-spec-label {
    color: #6b7280;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.55;
}

.product-detail-page .product-spec-value {
    color: #111820;
    font-size: 13.5px;
    font-weight: 650;
    line-height: 1.55;
}

.product-detail-page .product-spec-value-full {
    grid-column: 1 / -1;
}

.product-detail-page .product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.product-detail-page .products_top .product_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 0;
    padding: 11px 26px;
    border: 1px solid var(--ll-brand-red);
    border-radius: 7px;
    background: var(--ll-brand-red);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color .22s ease, border-color .22s ease, color .22s ease;
}

.product-detail-page .products_top .product_btn:hover {
    background: var(--ll-brand-red-hover);
    border-color: var(--ll-brand-red-hover);
}

.product-detail-page .inquiry_AddToAny {
    margin-top: 24px;
    padding-top: 18px;
    opacity: .72;
    transition: opacity .2s ease;
}

.product-detail-page .inquiry_AddToAny:hover {
    opacity: 1;
}

.product-detail-page .product-description-card {
    margin-top: 0;
    padding: 30px 34px;
    border: 1px solid #e5e8ec;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .05);
}

.product-detail-page .product-description-card .pr {
    margin: 0 0 22px;
}

.product-detail-page .product-description-card h2,
.product-detail-page .product-description-card h3 {
    color: #111820;
    font-weight: 800;
    line-height: 1.3;
}

.product-detail-page .product-description-card h2 {
    margin: 0 0 16px;
    font-size: 24px;
}

.product-detail-page .product-description-card h3 {
    position: relative;
    margin: 28px 0 12px;
    font-size: 20px;
}

.product-detail-page .product-description-card h3::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    margin-top: 10px;
    background: var(--ll-brand-red);
}

.product-detail-page .product-description-card p,
.product-detail-page .product-description-card li {
    color: #364152;
    font-size: 15px;
    line-height: 1.78;
}

.product-detail-page .product-description-card ul {
    margin: 14px 0 0 20px;
    padding: 0;
}

.product-detail-page .product-description-card li {
    margin-bottom: 8px;
}

.product-detail-page .product-description-card .rich-text-content {
    overflow-x: auto;
}

.product-detail-page .product-description-card table {
    width: 100%;
    min-width: 760px;
    margin-top: 18px;
    border: 1px solid #e0e5eb;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 14px;
}

.product-detail-page .product-description-card table th {
    padding: 11px 10px;
    border: 1px solid #2b3440;
    background: #111820;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

.product-detail-page .product-description-card table td {
    padding: 11px 10px;
    border: 1px solid #dfe4ea;
    color: #333333;
    text-align: center;
}

.product-detail-page .product-description-card .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 0;
    padding-top: 18px;
    border-top: 1px solid #e5e8ec;
}

.product-detail-page .product-description-card .tags strong {
    color: #111820;
}

.product-detail-page .product-description-card .tags a {
    margin: 0;
    border-radius: 999px;
    background: #f4f5f7;
    color: #4b5563;
    font-size: 12px;
    font-weight: 700;
    line-height: 28px;
}

.product-detail-page .product-description-card .point {
    gap: 18px;
}

.product-detail-page .product-description-card .point span {
    padding: 16px 18px;
    border: 1px solid #e5e8ec;
    border-radius: 10px;
    background: #fbfcfd;
}

.product-detail-page .product-detail-bottom-full .related-products-card {
    margin-top: 0;
    padding: 36px 46px 38px;
    border: 1px solid #e5eaf0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 20px 52px rgba(15, 23, 42, .055);
}

.product-detail-page .product-detail-bottom-full .related-products-card .pr {
    margin: 0 0 26px !important;
}

.product-detail-page .product-detail-bottom-full .related-products-card .pr span {
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -0.01em;
}

.product-detail-page .product-detail-bottom-full .related-products-card .products_list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.product-detail-page .product-detail-bottom-full .related-products-card .products_item {
    display: grid;
    grid-template-columns: 43% 57%;
    align-items: center;
    min-height: 190px;
    padding: 22px 24px;
    border: 1px solid #e4e9ef;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
    box-shadow: 0 10px 26px rgba(15, 23, 42, .035);
    text-align: left;
    overflow: hidden;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.product-detail-page .product-detail-bottom-full .related-products-card .products_item:hover {
    transform: translateY(-3px);
    border-color: rgba(200, 20, 40, .32);
    box-shadow: 0 18px 38px rgba(15, 23, 42, .08);
}

.product-detail-page .product-detail-bottom-full .related-products-card .products_img {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px #f0f2f5;
    overflow: hidden;
}

.product-detail-page .product-detail-bottom-full .related-products-card .products_img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 12px;
    object-fit: contain;
}

.product-detail-page .product-detail-bottom-full .related-products-card .item_box {
    min-height: auto;
    padding: 0 0 0 24px;
}

.product-detail-page .product-detail-bottom-full .related-products-card .item_box p {
    margin: 0;
    color: #111820;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product-detail-page .product-detail-bottom-full .related-products-card .item_box::after {
    content: "VIEW DETAILS  \2192";
    display: inline-flex;
    margin-top: 20px;
    color: #d71920;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .03em;
}

.product-detail-page .product-detail-bottom-full .product-inquiry-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(440px, 520px);
    min-height: 330px;
    margin-bottom: 24px;
    border: 1px solid #e5eaf0;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 20px 52px rgba(15, 23, 42, .06);
}

.product-detail-page .product-inquiry-visual {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    min-height: 330px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .08) 26%, rgba(255, 255, 255, .78) 55%, rgba(255, 255, 255, .98) 100%),
        var(--product-inquiry-bg, linear-gradient(135deg, #e4e9ef 0%, #ffffff 100%));
    background-size: cover;
    background-position: left center;
    overflow: hidden;
}

.product-detail-page .product-inquiry-visual.has-bg-image::before,
.product-detail-page .product-inquiry-visual.has-bg-image::after {
    display: none;
}

.product-detail-page .product-inquiry-visual::before {
    content: "";
    position: absolute;
    left: -42px;
    bottom: -54px;
    width: 270px;
    height: 270px;
    border: 38px solid #151a20;
    border-radius: 50%;
    box-shadow:
        inset 0 0 0 10px rgba(255, 255, 255, .08),
        0 24px 52px rgba(15, 23, 42, .22);
    opacity: .82;
}

.product-detail-page .product-inquiry-visual::after {
    content: "";
    position: absolute;
    left: 168px;
    bottom: 46px;
    width: 318px;
    height: 132px;
    border-radius: 10px;
    background:
        linear-gradient(90deg, rgba(200, 20, 40, .18), rgba(200, 20, 40, 0) 42%),
        repeating-linear-gradient(0deg, #8f9aa6 0 14px, #73808d 14px 16px);
    opacity: .34;
}

.product-detail-page .product-inquiry-copy {
    position: relative;
    z-index: 2;
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 470px;
    margin-left: clamp(300px, 31vw, 420px);
    padding: 64px 44px 64px 0;
    background: transparent;
}

.product-detail-page .product-inquiry-kicker {
    position: relative;
    display: inline-flex;
    width: max-content;
    margin-bottom: 24px;
    padding-bottom: 12px;
    color: var(--ll-brand-red);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.product-detail-page .product-inquiry-kicker::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    background: var(--ll-brand-red);
}

.product-detail-page .product-inquiry-copy h2 {
    position: relative;
    max-width: 410px;
    margin: 0;
    padding-bottom: 26px;
    color: #111820;
    font-size: clamp(40px, 3.25vw, 54px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.product-detail-page .product-inquiry-copy h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 74px;
    height: 4px;
    border-radius: 999px;
    background: var(--ll-brand-red);
}

.product-detail-page .product-inquiry-copy p {
    max-width: 405px;
    margin: 24px 0 0;
    color: #4f5b68;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
}

.product-detail-page .product-inquiry-form {
    grid-column: 2;
    grid-row: 1;
    padding: 36px 40px;
    border-left: 1px solid #e5eaf0;
    background: #ffffff;
}

.product-detail-page .product-inquiry-form .pr {
    display: none;
}

.product-detail-page .product-inquiry-form .products_form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.product-detail-page .product-inquiry-form .products_form .form_group {
    margin-bottom: 0;
}

.product-detail-page .product-inquiry-form .products_form .form_group:first-child,
.product-detail-page .product-inquiry-form .products_form .form_group:nth-last-child(2),
.product-detail-page .product-inquiry-form .products_form .form_group:last-child {
    grid-column: 1 / -1;
}

.product-detail-page .product-inquiry-form .products_form .form_row_lable {
    display: block;
    margin: 0 0 6px;
    color: #1f2933;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.3;
}

.product-detail-page .product-inquiry-form input,
.product-detail-page .product-inquiry-form textarea {
    width: 100%;
    height: 42px;
    border: 1px solid #dfe5ec;
    border-radius: 8px;
    background: #ffffff;
    color: #111820;
    font-size: 13.5px;
}

.product-detail-page .product-inquiry-form textarea {
    height: 96px;
    min-height: 96px;
}

.product-detail-page .product-inquiry-form input[disabled] {
    background: #f8fafc;
    color: #4b5563;
    cursor: not-allowed;
}

.product-detail-page .product-inquiry-form .form_btn_list {
    display: block;
}

.product-detail-page .product-inquiry-form #submit_btn {
    width: 100%;
    min-height: 52px;
    border-radius: 8px;
    background: #d71920;
    font-size: 14px;
    font-weight: 850;
    text-align: center;
}

.product-detail-page .product-inquiry-form #reset_btn {
    display: none;
}

@media screen and (max-width: 1199px) {
    .product-detail-page .content_body {
        gap: 26px;
    }

    .product-detail-page .public_side_panel {
        flex-basis: 260px;
    }

    .product-detail-page .product-detail-hero,
    .product-detail-page .product-detail-bottom-full .product-inquiry-panel {
        grid-template-columns: 1fr;
    }

    .product-detail-page .product-inquiry-form {
        grid-column: 1;
        grid-row: 2;
        border-left: 0;
        border-top: 1px solid #e6ebf0;
    }

    .product-detail-page .product-inquiry-copy {
        margin-left: 0;
        padding-right: 60px;
        background: linear-gradient(90deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .72) 58%, rgba(255, 255, 255, 0) 100%);
    }
}

@media screen and (max-width: 991px) {
    .product-detail-page {
        padding: 56px 0 84px;
    }

    .product-detail-page .container {
        width: min(100% - 32px, 1360px);
    }

    .product-detail-page .content_body {
        flex-direction: column;
    }

    .product-detail-page .public_side_panel {
        position: static;
        order: 2;
        width: 100%;
        flex-basis: auto;
    }

    .product-detail-page .html_body {
        order: 1;
        width: 100%;
    }

    .product-detail-page .product-detail-bottom-full .related-products-card .products_list {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    .product-detail-page .container {
        width: min(100% - 28px, 1440px);
    }

    .product-detail-page .product-detail-hero,
    .product-detail-page .product-description-card,
    .product-detail-page .product-detail-bottom-full .related-products-card {
        padding: 22px;
        border-radius: 14px;
    }

    .product-detail-page .products_top .right > div {
        padding: 22px 0 0;
        border: 0;
        background: transparent;
    }

    .product-detail-page .products_swiper_box,
    .product-detail-page .products_swiper1,
    .product-detail-page .products_swiper1 .swiper-wrapper,
    .product-detail-page .products_swiper1 .swiper-slide {
        min-height: 300px;
    }

    .product-detail-page .products_swiper1 .swiper-slide img {
        max-height: 250px;
    }

    .product-detail-page .product-actions {
        flex-direction: column;
    }

    .product-detail-page .products_top .product_btn {
        width: 100%;
    }

    .product-detail-page .product-description-card table {
        display: block;
        overflow-x: auto;
    }

    .product-detail-page .product-description-card .point {
        flex-direction: column;
    }

    .product-detail-page .product-detail-bottom-full .related-products-card {
        padding: 22px;
    }

    .product-detail-page .product-detail-bottom-full .related-products-card .products_item {
        grid-template-columns: 112px minmax(0, 1fr);
        min-height: 132px;
        padding: 12px;
    }

    .product-detail-page .product-detail-bottom-full .related-products-card .item_box {
        padding-left: 14px;
    }

    .product-detail-page .product-inquiry-copy {
        padding: 30px 22px;
    }

    .product-detail-page .product-inquiry-copy h2 {
        max-width: 360px;
        font-size: clamp(32px, 10vw, 42px);
        letter-spacing: -0.035em;
    }

    .product-detail-page .product-inquiry-copy p {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.58;
    }

    .product-detail-page .product-inquiry-form {
        padding: 22px;
    }

    .product-detail-page .product-inquiry-form .products_form {
        grid-template-columns: 1fr;
    }
}
/* End product detail page redesign */

.recruitment_body .side_panel_input .search_btn {
    width: auto;
    padding: 0 15px;
    color: #ffffff;
    font-size: 16px;
}

.recruitment_body .side_panel_input .search_btn .text {
    margin-left: 5px;
    font-size: 16px;
}

.recruitment_body .recruitment_nav {
    padding: 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #DCDCDE;
}

.recruitment_body .recruitment_item {
    padding: 30px 15px;
    border-bottom: 1px solid #DCDCDE;
}

.recruitment_body .recruitment_item:hover {
    background-color: rgba(225, 225, 225, .2);
}

.recruitment_body .recruitment_item .recruitment_title {
    margin-bottom: 15px;
    line-height: 40px;
    font-size: 24px;
    color: #000;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.recruitment_body .recruitment_item .recruitment_title:hover {
    color: var(--primary-color);
}

.recruitment_body .recruitment_item .tag_item {
    font-size: 16px;
    line-height: 25px;
    color: #333333;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #DCDCDE;
}

.recruitment_body .recruitment_item .tag_item:last-child {
    border-right: none;
}

.recruitment_box_title {
    font-size: 18px;
    color: #000;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.recruitment_body .recruitment_nav_box {
    padding: 0;
    padding-bottom: 10px;
    margin-top: 10px;
    margin-bottom: 40px;
    display: flex;
    gap: 15px;
}

.recruitment_body .recruitment_nav_box .tag_list {
    flex: 1;
}

.recruitment_body .recruitment_nav_box .time {
    color: #666;
    font-size: 16px;
    line-height: 25px;
}

.recruitment_body .recruitment_nav_box:hover {
    background-color: transparent;
}

.recruitment_body .news_title {
    font-weight: normal;
}

.case-grid {
    padding: 0 15px;
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
}

.case-card {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background: #f5f5f5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: pointer;
    padding-bottom: 60%;
    /* aspect-ratio: 16 / 10; */
}

.case-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.case-card-item {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 46px rgba(0, 0, 0, .16);
}

.case-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
    transition: transform .7s ease;
    background:
        radial-gradient(circle at 35% 20%, rgba(255, 255, 255, .9), transparent 34%),
        linear-gradient(135deg, rgba(0, 0, 0, .08), transparent 48%),
        linear-gradient(135deg, #f5f5f4, #d6d3d1, #a8a29e);
}

.case-card:hover .case-img {
    transform: scale(1.045);
}

.case-img.img-2 {
    background:
        radial-gradient(circle at 35% 20%, rgba(255, 255, 255, .9), transparent 34%),
        linear-gradient(135deg, rgba(0, 0, 0, .08), transparent 48%),
        linear-gradient(135deg, #f4f4f5, #e2e8f0, #d4d4d4);
}

.case-img.img-3 {
    background:
        radial-gradient(circle at 35% 20%, rgba(255, 255, 255, .9), transparent 34%),
        linear-gradient(135deg, rgba(0, 0, 0, .08), transparent 48%),
        linear-gradient(135deg, #ecfdf5, #e5e5e5, #d4d4d8);
}

.case-img.img-4 {
    background:
        radial-gradient(circle at 35% 20%, rgba(255, 255, 255, .9), transparent 34%),
        linear-gradient(135deg, rgba(0, 0, 0, .08), transparent 48%),
        linear-gradient(135deg, #f5f5f5, #e7e5e4, #d4d4d4);
}

.case-img.img-5 {
    background:
        radial-gradient(circle at 35% 20%, rgba(255, 255, 255, .9), transparent 34%),
        linear-gradient(135deg, rgba(0, 0, 0, .08), transparent 48%),
        linear-gradient(135deg, #fafafa, #e4e4e7, #cbd5e1);
}

.case-img.img-6 {
    background:
        radial-gradient(circle at 35% 20%, rgba(255, 255, 255, .9), transparent 34%),
        linear-gradient(135deg, rgba(0, 0, 0, .08), transparent 48%),
        linear-gradient(135deg, #f7fee7, #e7e5e4, #d4d4d4);
}

.case-img::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 28px;
    width: 112px;
    height: 48px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .7);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    backdrop-filter: blur(8px);
}

.case-img::after {
    content: "";
    position: absolute;
    right: 28px;
    top: 36px;
    width: 128px;
    height: 80px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .45);
    box-shadow: inset 0 2px 14px rgba(255, 255, 255, .35);
    backdrop-filter: blur(8px);
}

.device {
    position: absolute;
    left: 50%;
    bottom: 56px;
    width: 112px;
    height: 128px;
    transform: translateX(-50%);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .75);
    background: rgba(255, 255, 255, .75);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
    backdrop-filter: blur(8px);
}

.device::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 24px;
    width: 56px;
    height: 56px;
    transform: translateX(-50%);
    border-radius: 999px;
    border: 1px solid #d4d4d4;
    background: rgba(255, 255, 255, .8);
}

.device::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 94px;
    width: 56px;
    height: 8px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #d4d4d4;
}

.case-gradient {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 46%;
    background: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .28), transparent);
    z-index: 3;
    pointer-events: none;
}

.case-hover {
    position: absolute;
    inset: 0;
    z-index: 4;
    background: rgba(0, 0, 0, 0);
    transition: background .3s ease;
    pointer-events: none;
}

.case-card:hover .case-hover {
    background: rgba(0, 0, 0, .1);
}

.case-title {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 30px;
    z-index: 5;
}

.case-title h2 {
    max-width: 88%;
    margin: 0;
    font-size: 24px;
    line-height: 1.45;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
    transition: transform .3s ease;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.case-card:hover .case-title h2 {
    transform: translateY(-4px);
}

.case-line {
    width: 48px;
    height: 3px;
    margin-top: 16px;
    border-radius: 999px;
    background: var(--primary-color);
    transition: width .3s ease;
}

.case-card:hover .case-line {
    width: 80px;
}


@media screen and (max-width: 1100px) {
    .content_body {
        padding: 0;
        gap: 28px;
    }

    .content_body .public_side_panel {
        flex-basis: 280px;
    }

    .content_body .products_top {
        flex-direction: column;
        gap: 28px;
    }

    .content_body .products_top .left,
    .content_body .products_top .right {
        width: 100%;
        flex: 0 0 auto;
    }

    .case-title h2 {
        font-size: 22px;
    }
}


@media (max-width: 900px) {
    .content_body {
        gap: 24px;
    }

    .content_body .public_side_panel {
        flex-basis: 250px;
    }

    .content_body .products_list {
        grid-column-gap: 20px;
        grid-row-gap: 26px;
    }

    .case-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

}

@media screen and (max-width: 770px) {
    .content_box {
        padding: 50px 0;
    }

    .content_body {
        flex-direction: column-reverse;
        gap: 28px;
    }

    .content_body .public_side_panel {
        flex: 0 0 auto;
        width: 100%;
    }

    .content_body .products_list {
        grid-column-gap: 16px;
        grid-row-gap: 18px;
        grid-template-columns: 1fr 1fr;
    }

    .content_body .products_item .item_box {
        padding: 14px 12px 16px;
    }

    .content_body .products_item p {
        font-size: 14px;
        line-height: 1.45;
    }

    .content_body .public_side_panel .classify_body .title {
        font-size: 18px;
    }

    .content_body .products_top .left,
    .content_body .products_top .right > div,
    .product_con,
    .products_form {
        padding: 22px;
        border-radius: 10px;
    }

    .products_top .products_name {
        font-size: 23px;
    }

    .products_top .product_info pre,
    .products_top .product_info p {
        font-size: 14px;
    }

    .content_box .pr {
        margin-top: 34px;
    }

    .content_box .pr span {
        font-size: 20px;
    }

    .product_con .point {
        display: block;
    }

    .product_con .point span {
        display: block;
        margin-bottom: 10px;
    }

    .products_form .form_btn_list {
        flex-wrap: wrap;
    }

    .new_btn_body {
        align-items: flex-start;
        flex-direction: column;
    }

    .recruitment_body .recruitment_nav {
        padding: 0;
        padding-bottom: 10px;
    }

    .recruitment_body .recruitment_item {
        padding: 15px 0px;
    }

    .recruitment_body .recruitment_item .recruitment_title {
        font-size: 20px;
    }

    .recruitment_body .recruitment_item .tag_item {
        font-size: 14px;
        line-height: 20px;
    }

    .recruitment_body .recruitment_nav_box {
        margin-top: 5px;
        padding: 10px 0;
    }

    .case-grid {
        padding: 0;
    }

    .case-card {
        padding-bottom: 85%;
    }

}

@media (max-width: 560px) {

    .case-title {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .case-title h2 {
        max-width: 96%;
        font-size: 19px;
    }

}
