.w-full {
    width: 100% !important;
}

.h-full {
    width: 100% !important;
}

.bg-dark {
    background-color: #3c3c3c;
    color: #fff;
}

.bg-light {
    background-color: #fff;
}

.bg-gray {
    background-color: #f5f5f5;
}

.text-center {
    text-align: center;
}

.btn-more {
    display: block;
    width: 15rem;
    font-size: .6rem;
    line-height: 3.2;
    text-align: center;
    color: #fff;
    border-radius: 1rem;
    background-color: var(--main-color);
    transition: all .3s ease 0s;
}

.btn-more:hover {
    opacity: .9;
    transition: all .3s ease 0s;
}

/* 内页头部样式 */
.header.header--page {
    position: initial;
    border-bottom: 1px solid #f4f4f4;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
}

.header--page .header_layout {
    height: 4.8rem;
}

.header--page .header_telephone {
    color: #05233a;
}

.header--page .header_navgation_font {
    color: #05233a;
}

.header--page .header_language_font:nth-child(2) {
    color: #bdc3c7;
}

.header--page .header_language_font:nth-child(3) {
    color: #05233a;
}

.header--page .header_navgation_font--active {
    color: var(--focus-color);
}

.header--page .header_navgation_font--active:after {
    width: 100%;
}

.page_banner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page_banner::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 99;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #05233a;
    opacity: .2;
}

.page_banner_image {
    width: 100%;
    height: 18rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page_banner_image img {
    width: 100%;
    height: auto;
    animation: scaleDown 5s ease-in-out forwards;
}

.page_banner_image video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    object-fit: cover; /* 使视频占满div并保持比例 */
}

.page_banner_title {
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 5rem;
}

.page_banner_title h2 {
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
    font-family: 'MontserratBold';
}

.page_banner_title p {
    font-size: 1rem;
    color: #fff;
    font-family: 'MiSansBold';
}

.page_layout {
    padding: 2rem 1.5rem;
}


.page_menu {
    display: flex; 
}

.page_menu_item {
    margin-left: 1rem;
}

.page_menu_item:first-child {
    margin-left: 5px;
}

.page_menu_item a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 2rem;
    font-size: .65rem;
    border: 1px solid #bdc3c7;
    color: #121212;
    line-height: 1;
    font-family: 'MiSansMedium';
    letter-spacing: 1px;
    transition: all .3s ease 0s;

}

.page_menu .active {
    background-color: #121212;
}

.page_menu .active a {
    border: 1px solid #121212;
    color: #fff;
}

.profile {
    padding: 5rem 0;
}

.profile_logo {
    padding: 1.5rem 2rem 2rem 2rem;
    text-align: center;
    background: #adb3b9;
    background: -webkit-linear-gradient(to top, #eef2f3, #adb3b9);
    background: linear-gradient(to top, #eef2f3, #adb3b9);
}

.profile_logo img {
    width: 20rem;
    height: auto;
}

.profile_content {
    width: 32rem;
}

.profile_content p {
    font-size: .8rem;
    color: #212121;
    line-height: 2;
    text-align: justify;
    font-family: 'MiSans';
    margin: 0;
    letter-spacing: 2px;
}

.supply {
    background-color: #f4f4f4;
    padding: 5rem 0;
}

.supply_list {
    width: 50rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 2rem auto;
}

.supply_item {
    width: 15rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.supply_item:after {
    content: '';
    display: block;
    width: 1px;
    height: 2rem;
    background: #9c9c9c;
    background: -webkit-linear-gradient(to top, #f4f4f4, #9c9c9c, #f4f4f4);
    background: linear-gradient(to top, #f4f4f4, #9c9c9c, #f4f4f4);
}

.supply_item:nth-child(3n):after {
    display: none;
}

.supply_item_info {
    width: 18rem;
    text-align: center;;
}

.supply_item h3 {
    font-size: .8rem;
    color: #212121;
    margin-bottom: 10px;
    transition: all .3s ease 0s;
}

.supply_item p {
    font-size: .5rem;
    color: #999;
    margin: 0;
    font-family: 'MiSansLight';
    text-transform: uppercase;
    transition: all .3s ease 0s;
}

.supply_item:hover h3,
.supply_item:hover p {
    color: #c7000b;
    transition: all .3s ease 0s;
}

.supply_content {
    margin-bottom: 3rem;
}

.supply_content p {
    font-size: .8rem;
    color: #212121;
    line-height: 2;
    text-align: justify;
    font-family: 'MiSans';
    margin: 0;
    letter-spacing: 2px;
}

.supply_area {
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 2rem;
}

.supply_area .supply_area_item {
    list-style: none;
    height: 18rem;
    transition: width 0.5s;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.supply_area .supply_area_item:not(:hover) {
    width: 20%;
}

.supply_area .supply_area_item:hover {
    width: 36rem;
}

.supply_area .supply_area_item:hover::after {
    opacity: 1;
}

.supply_area .supply_area_item::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .4);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s;
}

.supply_area .supply_area_item h3 {
    color: #fff;
    font-size: 1rem;
    font-family: 'MiSansBold';
    z-index: 2;
}

.sales {
    background: url('page/company_sales.jpg') no-repeat;
    background-size: 100%;
    padding: 5rem 0;
    height: 30rem;
}

.sales .main-title--sub p {
    margin-bottom: 2rem;
}

.sales_content::before {
    content: '';
    display: block;
    width: 5rem;
    height: 2px;
    background-color: #fff;
    margin: 0rem auto 2rem;
}

.sales_content p {
    width: 42rem;
    margin: 0 auto;
    color: #f6f6f6;
    font-size: .8rem;
    text-align: center;
    line-height: 2;
    /* font-family: 'MiSansLight'; */
    text-shadow: 1px 1px rgba(0, 0, 0, .2882),
            2px 2px rgba(0, 0, 0, .2882),
            3px 3px rgba(0, 0, 0, .2882),
            4px 4px rgba(0, 0, 0, .2882);
}

.honor {
    padding: 3rem 0 5rem;
}

.honor_list {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}

.honor_item {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
    padding-bottom: 24%;
}

.honor_item img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border: 0;
    vertical-align: middle;
    border-radius: 2%;
}

.page_title::after {
    content: "";
    display: block;
    width: 2rem;
    height: 3px;
    background-color: #05233a;
    margin: 1rem auto 1.5rem;
}

.page_subtitle {
    font-size: .6rem;
    font-weight: lighter;
    color: #9c9c9c;
    text-align: center;
    margin-bottom: 2rem;
}

.page_content {
    padding: 1rem 2rem;
    margin-top: 1rem;
}

.page_content--contact {
    background-color: #fff;
    padding: 2rem 0;
    margin: 0;
}

.page_content h2 {
    font-size: 1.5rem;
    font-family: 'MiSansBold';
    line-height: 1.5;
    color: #212121;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 1px;;
}

.page_inner {
    text-align: justify;
    margin: 2rem 0;
}

.page_inner h3 {
    font-size: 1rem;
    font-family: 'MiSansBold';
    line-height: 1;
    color: #212121;
    margin: 1rem 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.page_inner h3::before {
    content: "";
    display: block;
    width: 5px;
    height: 1.2rem;
    background-color: #c7000b;
    margin-right: 1rem;
}

.page_table_item {
    width: 50rem;
    display: flex;
    flex-wrap: nowrap;  
    height: 6rem;
    border: 1px solid #ccc;
    border-bottom: none;
}

.page_table_item:last-child {
    border-bottom: 1px solid #ccc;
}

.page_table_item h4 {
    width: 10rem;
    font-size: .8rem;
    margin: 0;
    color: #212121;
    line-height: 1;
    font-family: 'MiSansMedium';
    display: flex;
    align-items: center;
    justify-content: center;
}

.page_table_item p {
    width: 40rem;
    display: flex;
    align-items: center;
    font-size: .72rem;
    color: #212121;
    line-height: 2;
    margin: 0;
    padding: 0 2rem;
    border-left: 1px solid #ccc;
    font-family: 'MiSansLight';
}

.page_cotact_content {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.page_contact_img {
    width: 28rem;
}

.page_contact_img img {
    width: 100%;
    height: auto;
}

.page_contact_info {
    margin-left: 2rem;
}

.page_contact_info h2 {
    font-size: 1.2rem;
    font-family: 'MiSansBold';
    line-height: 1;
    color: #212121;
    text-align: left;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.page_contact_info p {
    font-size: .8rem;
    line-height: 1;
    color: #232323;
    text-align: left;
    margin-bottom: .5rem;
    letter-spacing: 2px;
    font-family: 'MiSansLight';
}

.page_contact_tel {
    display: flex;
    width: 18rem;
    height: 3rem;
    border: 1px solid #c7000b;
    border-radius: 30px;
    align-items: center;
    justify-content: center;
    margin: 2rem 0 0 0;
    cursor: pointer;
    transition: all .3s ease 0s;
}

.page_contact_tel:hover {
    background-color: #c7000b;
    transition: all .3s ease 0s;
}

.page_contact_tel:hover span {
    color: #fff;
}

.page_contact_tel:hover svg path {
    fill: #fff;
}

.page_contact_info svg {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.page_contact_info svg path {
    fill: #c7000b;
}

.page_contact_tel span {
    position: relative;
    top: 3px;
    font-size: 1.3rem;
    line-height: 1;
    color: #c7000b;
    font-family: 'AcuminProBold';
    letter-spacing: 1px;
    padding-right: 1rem;
}

.page_contact_map {
    margin-top: 2rem;
    padding: 2rem;
    width: 100%;
    height: 32rem;
    border-top: 1px solid #f4f4f4;
}

.product_view_bg_01 {
    background-image: url(views/bg001.jpg);
}

.product_view_bg_01 h2::after {
    background: #fff;
    background: -webkit-linear-gradient(to right, #212121, #fff, #212121);
    background: linear-gradient(to right, #212121, #fff, #212121);
}

.product_view_bg_02 {
    background-image: url(views/bg002.jpg);
}

.product_view_bg_02 h2::after {
    background: #212121;
    background: -webkit-linear-gradient(to right, #fff, #212121, #fff);
    background: linear-gradient(to right, #fff, #212121, #fff);
}

.product_view_bg_02 .product_view_title p {
    color: #212121;
}

.product_view_header.column_put {
    flex-direction: column-reverse;
}

.product_view_header.column_put .product_view_title {
    margin: 0;
}

.product_view_header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 30rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.product_view_thumb {
    width: 28rem;
}

.product_view_thumb img {
    width: 100%;
    height: auto;
}

.product_view_title {
    margin-left: 2rem;
}

.product_view_title h2 {
    font-size: 1.8rem;
    font-family: 'MiSansBold';
    line-height: 1;
    margin: 0;
    letter-spacing: 2px;
    text-align: center;
    color: transparent;
    background: linear-gradient(45deg, #f12711 0%, #f5af19 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.product_view_title h2::after {
    content: "";
    display: block;
    width: 8rem;
    height: 1px;
    margin: 1rem auto;
}

.product_view_title p {
    font-size: .8rem;
    font-family: 'MiSansLight';
    text-align: center;
    line-height: 1;
    color: #fff;
    letter-spacing: 1px;
    margin: 0;
}

.product_view_special {
    padding: 3rem 0 4rem;
}

.product_view_special_list {
    width: 50rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem auto;
}

.product_view_special_item {
    width: 15rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.product_view_special_item:after {
    content: '';
    display: block;
    width: 1px;
    height: 2rem;
    background: #9c9c9c;
    background: -webkit-linear-gradient(to top, #f4f4f4, #9c9c9c, #f4f4f4);
    background: linear-gradient(to top, #f4f4f4, #9c9c9c, #f4f4f4);
}

.product_view_special_item:last-child:after {
    display: none;
}

.product_view_special_item_info {
    width: 18rem;
    text-align: center;
}

.product_view_special_item h3 {
    font-size: .8rem;
    color: #212121;
    margin-bottom: 10px;
    transition: all .3s ease 0s;
}

.product_view_special_item p {
    font-size: .5rem;
    color: #999;
    margin: 0;
    font-family: 'MiSansLight';
    text-transform: uppercase;
    transition: all .3s ease 0s;
}

.product_view_special_item:hover h3,
.product_view_special_item:hover p {
    color: #c7000b;
    transition: all .3s ease 0s;
}

.product_view_special_album {
    display: flex;
    justify-content: center;
}

.product_view_special_img {
    width: 20rem;
    height: 12rem;
    padding: 1rem;
    background-color: #f4f4f4;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f6f6f6;
    overflow: hidden;
    transition: all .5s ease 0s;
}

.product_view_special_img:first-child {
    margin-left: 0;
}

.product_view_special_img img {
    max-width: 96%;
    max-height: 96%;
    transition: all .5s ease 0s;
}

.product_view_sample {
    padding: 3rem 0 4rem;
    background: #f4f4f4;
    background: #000000;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #434343, #000000);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #434343, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.product_view_sample_album {
    display: flex;
    justify-content: center;
}

.product_view_sample_img {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    padding: 1rem;
    background: #bdc3c7;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #2c3e50, #bdc3c7);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #2c3e50, #bdc3c7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all .5s ease 0s;
}

.product_view_sample_img:first-child {
    margin-left: 0;
}

.product_view_sample_img img {
    max-width: 60%;
    max-height: 60%;
    transition: all .5s ease 0s;
}

.product_view_range {
    padding: 3rem 0 4rem;
    background-color: #f4f4f4;
    
}

.product_view_range .page_table {
    width: 36rem;
    margin: 0 auto;
}

.product_view_range .page_table_item {
    width: 36rem;
    height: 3.2rem;
    border: none;
    margin-bottom: 10px;
}

.product_view_range .page_table_item h4 {
    width: 10rem;
    background-color: #c1c1c1;
    color: #fff;
    font-size: .8rem;
    font-family: 'MiSansLight';
    text-align: right;
}

.product_view_range .page_table_item p {
    width: 26rem;
    justify-content: center;
    text-align: center;
    color: #212121;
    background-color: #fff;
}

.product_view_message {
    padding: 3rem 0 4rem;
}

.product_view_message .page_msg_content {
    width: 36rem;
}

.product_view_message .page_msg_item {
    border-bottom: 1px solid #ccc;
}

.product_view_message .page_msg_item input {
    font-size: .8rem;
    border: none;
    outline: none;
}

.product_view_message .page_msg_form button {
    width: 10rem;
    margin: 3rem auto 0;
    display: block;
    font-family: 'MiSansBold';
    background-color: orangered;
    line-height: 3.2;
    font-size: .8rem;
}


.page_inner img {
    max-width: 100% !important;
    display: block;
    margin: .5rem auto;
}

.page_link p {
    font-size: .8rem;
    color: #3c3c3c;
    line-height: 1;
}

.side {
    width: 12rem;
}

.side_nav {
    background-color: #f6f6f6;
    padding: 2rem 1rem;
}

.side_nav h6 {
    color: var(--main-color);
}

.side_nav h6::after {
    content: "";
    display: block;
    height: 3px;
    background-color: #cecece;
    border-left: 3rem solid var(--main-color);
    margin: .6rem 0;
}

.side_nav_item::after {
    content: "";
    display: block;
    height: 1px;
    background-color: #ccc;
    margin: .6rem 0;
}

.side_nav_item a {
    font-size: .72rem;
    color: #3c3c3c;
    line-height: 1;
}

.side_nav_item a:hover {
    color: var(--main-color);
    font-weight: bold;
    transition: all .3s ease 0s;
}

.side_nav_item--list {
    margin: .5rem 0;
}

.side_nav_item--item a {
    font-weight: lighter;
    color: #6c6c6c;
    line-height: 2;
}

.side_contact {
    padding: 2rem 1rem;
    font-size: .6rem;
    color: #fff;
    background-color: var(--main-color);
}

.side_contact h6::after {
    content: "";
    display: block;
    height: 1px;
    background-color: #fff;
    margin: 1rem 0;
}

.side_contact p {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 13rem;
    margin-bottom: .5rem;
    align-items: center;
}

.side_contact span {
    display: block;
    width: 10rem;
}

.side_contact svg {
    width: .8rem;
    height: .8rem;
}

.page_product_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.page_product_item {
    margin-bottom: 1rem;
}

.page_product_thumb {
    width:  27rem;
    height: 15rem;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    background-color: #f6f6f6;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all .5s ease 0s;
}

.page_product_item:hover .page_product_thumb {
    background-color: #ccc;
    transition: all .5s ease 0s;
}

.page_product_thumb img {
    max-width: 95%;
    max-height: 95%;
    transition: all .5s ease 0s;
}

.page_product_item:hover img {
    transform: scale(1.2);
    transition: all .5s ease 0s;
}

.page_product_title {
    text-align: center;
    margin-top: 1.5rem
}

.page_product_title::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background-color: #c7000b;
    transition: all .5s ease 0s;
}

.page_product_item:hover .page_product_title::after {
    width: 100%;
    transition: all .5s ease 0s;
}

.page_product_title h2 {
    font-size: .8rem;
    color: #212121;
    font-family: 'MiSansBold';
    margin-top: 5px;
}

.page_product_title p {
    font-size: .6rem;
    color: #9c9c9c;
    font-family: 'MiSansLight';
    margin-top: 5px;
}

.page_product_item:hover * {
    color: #c7000b;
}

.page_picture_list .page_product_thumb {
    background-color: #fff;
    /* box-shadow: 0 0 5px #ccc; */
}

#pages {
    margin: 3rem 0;
    text-align: center;
}

#pages a {
    display: inline-block;
    background: #05233a;
    font-size: .6rem;
    color: #fff;
    line-height: 3;
    text-align: center;
    padding: 0 1rem;
}

#pages span {
    display: inline-block;
    border: 1px solid #05233a;
    font-size: .6rem;
    color: #393D49;
    line-height: 2.8;
    text-align: center;
    padding: 0 1rem;
}

.page_contact_title {
    font-size: .6rem;
    font-weight: lighter;
    line-height: 3;
}

.page_contact_qrcode {
    width: 15rem;
    text-align: center;
}

.page_contact_qrcode img {
    width: 8rem;
    height: 8rem;
}

.page_contact_list {
    display: flex;
    flex-wrap: wrap;
    width: 45rem;
}

.page_contact_item {
    display: flex;
    align-items: center;
    margin: 8px 0;
    width: 15rem;
}

.page_contact_item p {
    font-size: .8rem;
    line-height: 1;
    font-weight: 300;
    margin: 0;
    color: #3c3c3c;
}

.page_contact_icon {
    width: 3rem;
}

.page_contact_icon svg {
    width: 2rem;
    height: 2rem;
}

.page_map {
    width: 100%;
    height: 20rem;
    margin: 2rem 0;
}

.page_news_list {
    margin-top: 1rem;
}

.page_news_item {
    margin-bottom: 1rem;
}

.page_news_image {
    position: relative;
    display: block; 
    height: 0; 
    padding: 0; 
    overflow: hidden; 
    padding-bottom: 60%;
    background-color: #fff;
    margin-bottom: 1rem;
    overflow: hidden;
}

.page_news_image img {
    position: absolute; 
    object-fit: cover; 
    width: 100%; 
    height: 100%; 
    border: 0; 
    vertical-align: middle;
    transition: all 0.5s ease 0s;
}

.page_news_item:hover img {
    transform: scale(1.2);
    transition: all 0.5s ease 0s;
}

.page_news_subtitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .6rem;
    color: #9c9c9c;
    margin-bottom: 10px;
}

.page_news_category {
    background-color: #c7000b;
    padding: 2px 10px;
    color: #fff;
}

.page_news_date {
    font-family: 'MontserratBold';
}

.page_news_title {
    font-size: 1rem;
    line-height: 1.5;
    color: #222;
    font-family: 'MiSansBold';
    margin-bottom: 10px;
    font-weight: bold;
}

.page_news_desc span {
    font-size: .6rem;
    color: #9c9c9c;
    line-height: 1.5;
    font-family: 'MiSansBold';
    margin-bottom: 10px;
}

.page_news_content {
    margin-top: 2rem;
}

.page_news_content h2 {
    font-size: 2rem;
    font-family: 'MiSansBold';
    color: #121212;
    line-height: 1.5;
    margin-bottom: 10px;
}

.page_news_desc--view {
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f1f1;
    position: relative;
}

.page_news_desc--view:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 8rem;
    height: 2px;
    background-color: #9c9c9c;
}

.page_news_inner {
    font-size: .72rem;
    line-height: 1.5;
    color: #6c6c6c;
    font-family: 'MiSans';
    margin-bottom: 10px;
    margin-top: 2rem;
    text-align: justify;
}

.page_msg_content {
    width: 50rem;
    margin: 0 auto;
}

.page_msg_form {
    width: 100%;
}

.page_msg_item {
    margin: 10px auto;
}

.page_msg_item input,
.page_msg_item textarea {
    width: 100%;
    border: 1px solid #eee;
    border-radius: 2px;
    font-size: .6rem;
    line-height: 1.5;
    height: 2.4rem;
    padding: 1rem;
    background: #fff;
}

.page_msg_item textarea {
    padding: 1rem;
    height: 6rem;
}

.page_msg_item ::placeholder {
    color: #acacac;
}

.page_msg_form button {
    width: 100%;
    font-size: .6rem;
    line-height: 3;
    border: 0;
    border-radius: 5px;
    margin: 10px 0;
    background-color: var(--main-color);
    color: #fff;
}

.page_product_show {
    width: 45rem;
}

.page_product_show_title {
    width: 100%;
    background-color: #f6f6f6;
}

.page_product_show_title h6 {
    display: inline-block;
    width: auto;
    color: #fff;
    padding: 1rem 2rem 1rem 1rem;
    line-height: 1;
    margin: 0;
    background-color: var(--main-color);
}

.page_product_show_title svg {
    width: 1.2rem;
    height: 1.2rem;
}

.page_product_show_photos {
    padding: 1rem;
    background-color: #f6f6f6;
    text-align: center;
    margin: 1rem 0;
    border-radius: 5px;
}

#swiper-product .swiper-slide {
    height: 21rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#swiper-product .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
}

.page_product_show_detail {
    background-color: #f6f6f6;
    padding: 2rem 2rem;
    margin-top: 1rem;
}

.page_product_video {
    width: 42rem;
    height: 10rem;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    background-color: #f9f9f9;
    overflow: hidden;
    transition: all .5s ease 0s;
}

.page_product_video video {
    max-width: 90%;
    max-height: 90%;
    transition: all .5s ease 0s;
}
