@charset "UTF-8";
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

li {
    list-style: none;
}


/*全局样式*/

html,
body {
    width: 100%;
    margin: 0 auto;
}

html {
    font-size: 5.2083333333333vw;
}

@media (max-width:1199px) {
    html {
        font-size: 6.6vw !important;
    }
}

@media (max-width:767px) {
    html {
        font-size: 13.3vw !important;
    }
}

:focus {
    outline: 0
}

a,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer
}


/* Hides from IE-mac \*/

* html .clearfix {
    height: 0%;
}


/* End hide from IE-mac */

*+html .clearfix {
    min-height: 0%;
}


/* 针对IE7 */

*+html .clearfix {
    min-height: 0%;
}

@font-face {
    font-family: "AlibabaPuHuiTi-Regular";
    src: url("../fonts/AlibabaPuHuiTi-2-55-Regular.woff2") format("woff2"), url("../fonts/AlibabaPuHuiTi-2-55-Regular.woff") format("woff"), url("../fonts/AlibabaPuHuiTi-2-55-Regular.ttf") format("truetype"), url("../fonts/AlibabaPuHuiTi-2-55-Regular.eot") format("embedded-opentype"), url("../fonts/AlibabaPuHuiTi-2-55-Regular.otf") format("otf");
}

@font-face {
    font-family: "AlibabaPuHuiTi-Medium";
    src: url("../fonts/AlibabaPuHuiTi-2-65-Medium.woff2") format("woff2"), url("../fonts/AlibabaPuHuiTi-2-65-Medium.woff") format("woff"), url("../fonts/AlibabaPuHuiTi-2-65-Medium.ttf") format("truetype"), url("../fonts/AlibabaPuHuiTi-2-65-Medium.eot") format("embedded-opentype"), url("../fonts/AlibabaPuHuiTi-2-65-Medium.otf") format("otf");
}

@font-face {
    font-family: "AlibabaPuHuiTi-SemiBold";
    src: url("../fonts/AlibabaPuHuiTi-2-75-SemiBold.woff2") format("woff2"), url("../fonts/AlibabaPuHuiTi-2-75-SemiBold.woff") format("woff"), url("../fonts/AlibabaPuHuiTi-2-75-SemiBold.ttf") format("truetype"), url("../fonts/AlibabaPuHuiTi-2-75-SemiBold.eot") format("embedded-opentype"), url("../fonts/AlibabaPuHuiTi-2-75-SemiBold.otf") format("otf");
}

@font-face {
    font-family: "AlibabaPuHuiTi-Heavy";
    src: url("../fonts/AlibabaPuHuiTi-2-105-Heavy.woff2") format("woff2"), url("../fonts/AlibabaPuHuiTi-2-105-Heavy.woff") format("woff"), url("../fonts/AlibabaPuHuiTi-2-105-Heavy.ttf") format("truetype"), url("../fonts/AlibabaPuHuiTi-2-105-Heavy.eot") format("embedded-opentype"), url("../fonts/AlibabaPuHuiTi-2-105-Heavy.otf") format("otf");
}

@font-face {
    font-family: "AlibabaPuHuiTi-ExtraBold";
    src: url("../fonts/AlibabaPuHuiTi-2-95-ExtraBold.woff2") format("woff2"), url("../fonts/AlibabaPuHuiTi-2-95-ExtraBold.woff") format("woff"), url("../fonts/AlibabaPuHuiTi-2-95-ExtraBold.ttf") format("truetype"), url("../fonts/AlibabaPuHuiTi-2-95-ExtraBold.eot") format("embedded-opentype"), url("../fonts/AlibabaPuHuiTi-2-95-ExtraBold.otf") format("otf");
}


/*原文件配置*/

body {
    color: #333;
    background: #ffffff;
    font: .16rem 'AlibabaPuHuiTi-Regular', 'AlibabaPuHuiTi-Regular', 'Microsoft YaHei', arial, sans-serif;
    min-width: 320px;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #0B5997;
}


/*块级转化*/

.di_in {
    display: inline-block;
}

.di_no {
    display: none;
}

.di_bl {
    display: block;
}


/*原文件配置  end*/


/*横向居中*/

.te_c {
    text-align: center;
}


/*相对定位*/

.p_r {
    position: relative;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-v {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex-align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-pack-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-pack-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: pace-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-warp {
    flex-flow: wrap
}

.flex-column {
    flex-flow: column
}

.ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.transition {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

img {
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

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

.container {
    max-width: 19.2rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (max-width:1199px) {
    .container {
        width: 100%;
        padding-left: .2rem;
        padding-right: .2rem;
    }
}

.top {
    background-color: #134069;
    width: 100%;
    line-height: .52rem;
    color: #FFF;
    height: .52rem;
}

.top a {
    color: #FFF;
    font-size: .14rem;
    margin-right: .2rem;
}

.top a:last-child {
    margin-right: 0;
}

.top a>img {
    height: .2rem;
    margin-right: .1rem;
}

.header {
    background-color: #0B5997;
    height: .92rem;
}

.header .logo {
    margin-right: .4rem;
}

.header .logo img {
    height: .44rem;
}

.header .txt {
    font-size: .18rem;
}

.header .txt a {
    margin-right: .2rem;
    color: #FFF;
}

.header .txt a:last-child {
    margin-right: 0;
}

.search {
    width: 100%;
    background-color: #FFF;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
    overflow: hidden;
    margin-right: .4rem;
    padding-left: .2rem;
    padding-right: .1rem;
}

.search form {
    height: .44rem;
}

.search input[type='text'] {
    width: 100%;
}

.search input[type='submit'] {
    width: .32rem;
    background: url(../images/search.png)no-repeat center;
    background-size: 100%;
}

.menu-btn {
    display: none;
    background: url(../images/menu.svg)no-repeat center;
    width: 30px;
    height: 30px;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: .2rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.menu-btn.close {
    background-image: url(../images/close.svg);
}

.nav {
    border-top: 1px rgba(255, 255, 255, .3) solid;
    background-color: #0B5997;
    font-family: 'pingfang SC';
}

.nav .search {
    display: none;
}

.nav li>a {
    line-height: .62rem;
    color: #FFF;
}

.nav li .tit {
    padding-right: .2rem;
}

.nav li .tit::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #FFF;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.nav .drop {
    width: 4rem;
    left: 0;
    top: .62rem;
    position: absolute;
    transition: transform 0.2s linear, opacity 0.2s linear;
    -webkit-transition: transform 0.2s linear, opacity 0.2s linear;
    -moz-transition: transform 0.2s linear, opacity 0.2s linear;
    -ms-transition: transform 0.2s linear, opacity 0.2s linear;
    -o-transition: transform 0.2s linear, opacity 0.2s linear;
    transform-origin: top;
    z-index: 9;
    transform: rotateX(90deg);
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    background-color: #FFF;
    padding: .2rem;
    line-height: .36rem;
    font-size: .14rem;
    box-shadow: 0 .1rem .1rem rgba(4, 43, 139, 0.25);
}

.nav li:last-of-type .drop {
    right: 0;
    left: unset;
}

.nav .drop a {
    padding-left: .1rem;
    padding-right: .1rem;
}

.footer {
    background-color: #F6F6F6;
    padding-top: .6rem;
    padding-bottom: .6rem;
}

.footer .text-content .title {
    font-size: .24rem;
    font-family: 'AlibabaPuHuiTi-ExtraBold';
    color: #134069;
}

.footer .f-nav {
    margin-top: .2rem;
}

.footer .f-nav li {
    margin-right: .5rem;
}

.footer .f-nav li:last-child {
    margin-right: 0;
}

.footer .f-nav .tit {
    font-size: .18rem;
    color: #134069;
    font-family: 'AlibabaPuHuiTi-SemiBold';
    line-height: 1.6;
}

.footer .f-nav .sub>a {
    font-size: .14rem;
    line-height: 2;
    color: #134069;
    margin-top: .1rem;
}

.footer .txt-last {
    text-align: right;
}

.footer .txt-last .text {
    line-height: .4rem;
    color: #134069;
    font-family: 'AlibabaPuHuiTi-SemiBold';
    margin-top: .2rem;
}

.footer .f-tool {
    margin-top: .3rem;
}

.footer .f-tool .title {
    font-size: .18rem;
    line-height: 1.6;
    font-family: 'AlibabaPuHuiTi-Medium';
    color: #134069;
}

.footer .f-tool .con {
    margin-top: .1rem;
}

.footer .f-tool .con a {
    margin-right: .1rem;
}

.footer .f-tool .con a:last-child {
    margin-right: 0;
}

.footer .f-tool .con>div:first-child img {
    height: .48rem;
}

.footer .f-tool .con>div:last-child {
    align-items: flex-end;
}

.footer .f-tool .con>div:last-child img {
    height: .34rem;
}

@media (min-width:1025px) {
    .top a:hover,
    .header .txt a:hover,
    .nav li>a:hover,
    .footer .f-nav .sub>a:hover {
        text-decoration: underline;
    }
    .nav li:hover .drop {
        opacity: 1;
        transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
    }
    .nav .drop a:hover {
        background-color: #134069;
        color: #FFF;
    }
}

@media (max-width:1199px) {
    body {
        font-size: 12px;
    }
    .top,
    .header .txt,
    .header .search,
    .nav li .tit::after {
        display: none;
    }
    .header {
        height: 1.2rem;
    }
    .menu-btn,
    .nav .search {
        display: block;
    }
    .nav {
        position: fixed;
        width: 100%;
        left: 0;
        top: 1.2rem;
        overflow-y: scroll!important;
        display: none;
        z-index: 999;
        height: calc(100vh - 1.2rem);
        padding: .2rem .3rem;
    }
    .nav .search form {
        height: 36px;
    }
    .search input[type='submit'] {
        width: 32px;
    }
    .nav>ul {
        margin-top: .3rem;
    }
    .nav li {
        width: 100%;
    }
    .nav li>a {
        line-height: 50px;
    }
    .nav .arrow {
        position: absolute;
        right: 0;
        top: 0;
        height: 50px;
        width: 30px;
    }
    .nav .arrow::after {
        content: '';
        background: url(../images/arrow.svg)no-repeat center;
        background-size: 100%;
        width: 20px;
        height: 20px;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }
    .nav .cur .arrow::after {
        transform: translateY(-50%) rotate(90deg);
        -webkit-transform: translateY(-50%) rotate(90deg);
        -moz-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
        -o-transform: translateY(-50%) rotate(90deg);
    }
    .nav .drop {
        position: static;
        left: auto;
        transform: translate(0, 0);
        opacity: 1;
        width: 100%;
        display: none;
        text-align: left;
        padding: 0;
        background: none;
        box-shadow: none;
    }
    .nav .drop a {
        font-size: 12px;
        color: #FFF;
        padding-left: .2rem;
    }
    .footer .text-content .title {
        font-size: 18px;
    }
    .footer .f-nav .tit,
    .footer .f-tool .title {
        font-size: 14px;
    }
    .footer .f-nav .sub>a {
        font-size: 12px;
    }
}

@media (max-width:767px) {
    .header {
        height: 1rem;
    }
    .nav {
        height: calc(100vh - 1rem);
        top: 1rem;
    }
    .footer .text-content {
        display: block;
    }
    .footer .f-nav li {
        width: 100%;
        margin-right: 0;
    }
    .footer .f-nav .tit {
        line-height: 2.8;
        border-bottom: 1px rgba(0, 0, 0, 0.3) solid;
    }
    .footer .f-nav .tit::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        width: 30px;
        height: 30px;
        background: url(../images/arrow1.svg)no-repeat center;
        background-size: 14px;
        margin-top: -15px;
    }
    .footer .f-nav .tit.cur::after {
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
    }
    .footer .f-nav li .sub {
        display: none;
    }
    .footer .txt-last {
        text-align: left;
        margin-top: .2rem;
    }
    .footer .txt-last br {
        display: none;
    }
}

.banner {
    /* margin-top: .2rem; */
    padding-left: 0;
    padding-right: 0;
}

.banner img {
    width: 100%;
}

.banner .swiper-button-white {
    width: .6rem;
    height: .6rem;
    background-color: rgba(0, 0, 0, 0.3);
    background-size: .15rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.banner .swiper-pagination-bullet {
    width: .7rem;
    height: .1rem;
    opacity: 1;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background-color: #FFF;
}

.banner .swiper-pagination-bullet-active {
    background-color: #134069;
}

.home-title {
    font-size: .32rem;
    line-height: 1.2;
    font-family: 'AlibabaPuHuiTi-Heavy';
}

.home-pro {
    margin-top: .95rem;
}

.home-pro .txt {
    color: #134069;
    line-height: 1.5;
    margin-top: .1rem;
}

.home-pro .item {
    width: 2.3rem;
    margin-right: 1.11rem;
    margin-top: .37rem;
}

.home-pro .item:nth-of-type(5n) {
    margin-right: 0;
}

.home-pro .item .pic {
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #F6F6F6;
    width: 2rem;
    height: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.home-pro .item .pic img {
    position: absolute;
    left: 10%;
    top: 10%;
    /* transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%); */
    width: 80%;
    height: 80%;
    object-fit: contain;
}
.home-pro .item .pic img:hover {
    transform:  scale(1.2);
}

.home-pro .item .tit {
    color: #134069;
    height: .44rem;
    line-height: 1.6;
    margin-top: .1rem;
}

.home-content {
    padding-left: 0;
    padding-right: 0;
    background-color: #F8F8F8;
    margin-top: 1rem;
}

.home-content .card {
    padding-top: .7rem;
    padding-bottom: .7rem;
}

.home-content .card .pic {
    width: 8.1rem;
    margin-right: .65rem;
    overflow: hidden;
}

.home-content .card .pic img {
    width: 100%;
}

.home-content .card .text {
    font-size: .18rem;
    margin-top: .2rem;
    line-height: 1.5;
}

.home-content .card .submit {
    background-color: #134069;
    margin-top: .2rem;
    line-height: .57rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: #FFF;
    text-transform: uppercase;
    font-size: .18rem;
    padding-left: .2rem;
    padding-right: .2rem;
    /* width: 4.1rem; */
}

.home-content .card .submit::after {
    content: '';
    display: block;
    width: .55rem;
    height: .15rem;
    background: url(../images/arrow2.png)no-repeat center;
    background-size: 100%;
    margin-left: .1rem;
}

.home-content .card:nth-child(2) .pic {
    margin-right: 0;
    margin-left: .65rem;
}

.home-content .card:last-child {
    background-color: #FFF;
}

.about,
.us,
.pro,
.pro-detail,
.wishlist {
    margin-top: .3rem;
    padding-bottom: 1.2rem;
}

.pub-title {
    font-size: .32rem;
    line-height: 1.2;
    font-family: 'AlibabaPuHuiTi-ExtraBold';
}

.about img,
.us .body img {
    max-width: 100%;
}

.about .body,
.us .body {
    margin-top: .3rem;
    line-height: 1.6;
}

.us .info {
    margin-top: .6rem;
}

.us .info .txt {
    font-size: .18rem;
    line-height: 1.6;
    color: #1D1D1D;
    margin-top: .2rem;
}

.us .info .con {
    margin-top: .2rem;
    border-bottom: 1px rgba(0, 0, 0, 0.3) solid;
    padding-bottom: .6rem;
}

.us .info .con span {
    font-family: 'AlibabaPuHuiTi-ExtraBold';
    margin-right: .1rem;
}

.us .form {
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
    border: 1px rgba(19, 64, 105, 0.3) solid;
    padding: .5rem;
    margin-top: .6rem;
    color: #1D1D1D;
}

.us .form .title {
    font-size: .24rem;
    font-family: 'AlibabaPuHuiTi-ExtraBold';
    line-height: 1;
}

.us .form .text {
    line-height: 1.6;
    margin-top: .2rem;
}

.us .form .text a {
    color: #134069;
    font-family: 'AlibabaPuHuiTi-ExtraBold';
}

.us .form .group {
    margin-top: .35rem;
    margin-right: .2rem;
}

.us .form .group:last-child {
    margin-right: 0;
}

.us .form .group .tit {
    font-family: 'AlibabaPuHuiTi-SemiBold';
}

.us .form .group .tit span {
    color: #FF3737;
}

.us .form .group input[type='text'] {
    width: 100%;
    height: .54rem;
    border: 1px rgba(19, 64, 105, 0.3) solid;
    margin-top: .1rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 0 .2rem;
}

.us .form .group textarea {
    width: 100%;
    border: 1px rgba(19, 64, 105, 0.3) solid;
    margin-top: .1rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: .2rem;
    height: 2rem;
}

.us .form .group .ext {
    width: 1.3rem;
    margin-left: .1rem;
}

.us .form input[type='submit'] {
    width: 4rem;
    height: .64rem;
    background-color: #134069;
    color: #FFF;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
    margin-top: .3rem;
    font-size: .18rem;
    font-weight: bold;
}

.crumbs {
    line-height: 1.5;
    font-size: .14rem;
}

.crumbs>a {
    margin-right: .1rem;
    font-family: 'AlibabaPuHuiTi-Medium';
    color: rgba(29, 29, 29, 0.5);
}

.crumbs>a::after {
    content: '/';
    margin-left: .05rem;
}

.crumbs>span {
    font-family: 'AlibabaPuHuiTi-Heavy';
}

.pro .home-title {
    margin-top: .3rem;
}

.pro .s-text {
    font-size: .14rem;
    font-family: 'AlibabaPuHuiTi-SemiBold';
    line-height: 1.6;
    margin-top: .2rem;
}

.pro .pro-menu {
    margin-top: .25rem;
    padding-left: .5rem;
    padding-right: .5rem;
}

.pro .pro-menu .swiper-slide {
    cursor: pointer;
}

.pro .pro-menu .pic {
    width: 1.2rem;
    height: 1.2rem;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.pro .pro-menu .pic img {
    max-width: 100%;
    max-height: 100%;
}

.pro .pro-menu .tit {
    font-size: .14rem;
    color: #134069;
    line-height: 1.5;
}

.pro .pro-menu .swiper-slide::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 70%;
    background-color: rgba(29, 29, 29, 0.2);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.pro .pro-menu .swiper-button-prev,
.pro .pro-menu .swiper-button-next {
    width: .2rem;
    height: .3rem;
    background: url(../images/next.png)no-repeat center;
    background-size: 100%;
    margin-top: -.15rem;
}

.pro .pro-menu .swiper-button-prev {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.pro .condition {
    background-color: #E8E9F4;
    padding: .1rem .2rem;
    margin-top: .3rem;
    border: 1px #134069 solid;
}

.pro .condition .title {
    color: #1D1D1D;
    line-height: 1.4;
}

.pro .condition .item {
    margin-right: .5rem;
    padding-right: .5rem;
}

.pro .condition .item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 70%;
    background-color: rgba(29, 29, 29, 0.2);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.pro .condition .item:last-child {
    margin-right: 0;
    padding-right: 0;
}

.pro .condition .item:last-child::after {
    display: none;
}

.pro .condition .item .con {
    margin-top: .1rem;
}

.pro .condition .item .con>a:last-child {
    margin-right: 0;
}

.pro .condition .results {
    width: 3.2rem;
}

.pro .condition .results .txt {
    line-height: .32rem;
    font-family: 'AlibabaPuHuiTi-SemiBold';
}

.pro .condition .filters .con>a {
    line-height: .3rem;
    padding: 0 .1rem;
    border: 1px #134069 solid;
    margin-right: .05rem;
    font-size: .12rem;
    color: #134069;
    font-family: 'AlibabaPuHuiTi-Medium';
}

.pro .condition .sort {
    width: 2.1rem;
}

.pro .condition .per {
    width: 2rem;
}

.pro .condition .per .con>a {
    line-height: .3rem;
    border: 1px #134069 solid;
    padding: 0 .1rem;
    margin-right: .05rem;
    font-size: .14rem;
    color: #134069;
    font-family: 'AlibabaPuHuiTi-Medium';
}

.pro .condition .per .con>a.active {
    background-color: #134069;
    color: #ffffff;
}

.pro .condition .view {
    width: 1.1rem;
}

.pro .condition .view .con>a {
    width: .5rem;
    height: .3rem;
    border: 1px #134069 solid;
    margin-right: .05rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: .2rem;
}

.pro .condition .view .con>a.img-grid {
    background-image: url(../images/icon7.png);
}

.pro .condition .view .con>a.text-grid {
    background-image: url(../images/icon8.png);
}

.pro .condition .view .con>a.active {
    background-color: #134069;
}

.select-wrapper {
    width: 100%;
    height: .32rem;
    position: relative;
    cursor: pointer;
}

.select-button {
    width: 100%;
    height: .3rem;
    border: 1px solid #134069;
    background: none;
    cursor: pointer;
    padding: 0 .2rem 0 .1rem;
    overflow: hidden;
    text-align: left;
    outline: none;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
    font-size: .12rem;
    color: #134069;
    font-family: 'AlibabaPuHuiTi-Medium';
}

.select-down {
    position: absolute;
    top: 50%;
    right: .1rem;
    height: 0;
    width: 0;
    overflow: hidden;
    font-size: 0;
    border-color: #333 transparent transparent transparent;
    border-style: solid;
    border-width: 6px;
    transform: translateY(-35%);
    -webkit-transform: translateY(-35%);
    -moz-transform: translateY(-35%);
    -ms-transform: translateY(-35%);
    -o-transform: translateY(-35%);
}

.select-list {
    width: 100%;
    background: #fff;
    border: 1px solid #134069;
    display: none;
    z-index: 2;
    position: absolute;
    left: -1px;
    top: .3rem;
    overflow: hidden;
    font-size: .12rem;
}

.select-list ul {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 2.4;
    max-height: 240px;
}

.select-list ul li {
    width: auto;
    padding-left: .1rem;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
}

.select-list ul li.selected,
.select-list ul li:hover {
    color: #fff;
    background: #134069;
}

.pro .content {
    margin-top: .2rem;
}

.pro .body .tit-con {
    line-height: 1.7;
}

.pro .body .tit-con .tit {
    font-weight: bold;
}

.pro .body .tit-con .num strong {
    font-size: .2rem;
    margin-right: .1rem;
}

.pro .body .con {
    margin-top: .1rem;
}

.pro .body .con .filters>a {
    line-height: .3rem;
    padding: 0 .1rem;
    font-size: .14rem;
    font-family: 'AlibabaPuHuiTi-Medium';
    margin-right: .05rem;
    background-color: #134069;
    color: #FFF;
    padding-right: .35rem;
}

.pro .body .con .filters>a .close {
    position: absolute;
    right: .1rem;
    top: 50%;
    width: .1rem;
    height: .1rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background: url(../images/close.png)no-repeat center;
    background-size: 100%;
}

.pro .body .con .filters>a.clear {
    color: #134069;
    border: 1px rgba(19, 64, 105, 1) solid;
    background-color: rgba(4, 43, 139, 0.1);
    margin-right: 0;
    padding-right: .1rem;
}

.pro .body .con .share {
    color: #134069;
    border: 1px rgba(19, 64, 105, 1) solid;
    line-height: .3rem;
    font-size: .14rem;
    font-family: 'AlibabaPuHuiTi-Medium';
    padding: 0 .1rem 0 .4rem;
    background: rgba(4, 43, 139, 0.1) url(../images/share.png)no-repeat .1rem center;
    background-size: .2rem;
}

.pro .body .title {
    font-size: .2rem;
    font-weight: bold;
    line-height: 1.5;
    margin-top: .2rem;
}

.pro .body .wrapper .item {
    padding: .2rem;
    /* border: 1px rgba(4, 43, 139, 0.2) solid; */
    width: 2.9rem;
    margin-right: .15rem;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-top: .2rem;
}

.pro .body .wrapper .item:nth-of-type(4n) {
    margin-right: 0;
}

.pro .body .wrapper .item .pic {
    position: relative;
    /* width: 1.6rem; */
    /* height: 1.6rem; */
    width: 100%;
    padding-top: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.pro .body .wrapper .item .pic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pro .body .wrapper .item .share {
    position: absolute;
    left: .2rem;
    top: .2rem;
    width: .32rem;
    height: .32rem;
    background: url(../images/s-icon.png)no-repeat center;
    background-size: 100%;
    background-color: #ffffff;
    border-radius: 50%;
    z-index: 1;
}

.pro .body .wrapper .item .share.on {
    background-image: url(../images/s-icon-active.png);
}

.pro .body .wrapper .item .tit {
    line-height: 1.4;
    margin-top: .1rem;
    color: #134069;
    font-family: 'AlibabaPuHuiTi-Heavy';
}

.pro .body .wrapper .item .txt {
    font-family: 'AlibabaPuHuiTi-SemiBold';
    line-height: 1.7;
    font-size: .14rem;
}

.pro .body .wrapper .item .pcs {
    font-family: 'AlibabaPuHuiTi-Medium';
    line-height: 1.7;
    color: #134069;
}

.pro .body .wrapper .item .price {
    font-family: 'AlibabaPuHuiTi-ExtraBold';
    line-height: 1.7;
    color: #FF2E2E;
}

.page {
    margin-top: .2rem;
}

.page>a {
    width: .4rem;
    height: .4rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px #134069 solid;
    margin-right: .1rem;
}

.page>a:last-child {
    margin-right: 0;
}

.page>a.prev,
.page>a.next {
    background: url(../images/next1.png)no-repeat center;
}

.page>a.last,
.page>a.first {
    background: url(../images/next2.png)no-repeat center;
}

.page>a.prev,
.page>a.first {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.page>a.on {
    background-color: #134069;
    color: #FFF;
}

.page>a.display {
    opacity: .5;
}

.pro .sidebar {
    width: 3.6rem;
    border: 1px #134069 solid;
    margin-right: .3rem;
}

.pro .sidebar>ul>li .tit-con {
    border-bottom: 1px #134069 solid;
    padding: .15rem .2rem;
}

.pro .sidebar li.active .tit-con {
    background-color: #E8E9F4;
}

.pro .sidebar>ul>li:last-child {
    border-bottom: 0;
}

.pro .sidebar>ul>li .tit {
    font-size: .18rem;
    font-family: 'AlibabaPuHuiTi-ExtraBold';
    color: #134069;
    line-height: 1.6;
}

.pro .sidebar>ul>li .tit .news {
    background-color: #F70205;
    color: #FFF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    line-height: .25rem;
    font-size: .12rem;
    padding: 0 .05rem;
    text-transform: capitalize;
}

.pro .sidebar>ul>li .arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/arrow3.png)no-repeat center;
    width: .17rem;
    height: .1rem;
    background-size: 100%;
}

.pro .sidebar>ul>li .all {
    font-size: .14rem;
    color: #134069;
    line-height: 1.5;
}

.pro .sidebar>ul>li:last-child .tit-con {
    border-bottom: 0;
}

.pro .sidebar .filters {
    padding-right: .8rem;
    font-size: .14rem;
    line-height: 1.6;
    color: #134069;
}

.pro .sidebar .filters .clear {
    color: #134069;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    cursor: pointer;
}

.pro .sidebar .submenu {
    padding: .2rem;
    border-bottom: 1px #134069 solid;
    display: none;
}

.label_box>label {
    display: block;
    position: relative;
    margin-bottom: .1rem;
    line-height: .26rem;
    height: .26rem;
}

.label_box>label:last-child {
    margin-bottom: 0;
}

.label_box>label>input {
    position: absolute;
    top: 0;
    left: -20px;
    display: none;
}

.label_box>label>div {
    width: 100%;
    line-height: 1.6;
    color: #666666;
    user-select: none;
    position: relative;
    font-size: .14rem;
}

.label_box>label>input:checked+div {
    color: #134069;
    font-size: .16rem;
}

.label_box>label>input:checked+div span {
    font-weight: bold;
}

.label_box>label>input+div::after {
    content: '';
    display: block;
    border: 1px solid #134069;
    width: .16rem;
    height: .16rem;
    position: absolute;
    bottom: 3px;
    right: 0;
    z-index: 1;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.label_box>label>input:checked+div:after {
    background-color: #134069;
}

.label_box>label>input:checked+div:before {
    content: '';
    display: block;
    width: 3px;
    height: 8px;
    border-right: #ffffff solid 2px;
    border-bottom: #ffffff solid 2px;
    transform: rotate(35deg);
    position: absolute;
    bottom: 8px;
    right: 6px;
    z-index: 2;
}

.pro .sidebar li.active .all {
    display: none;
}

.pro .sidebar li.active .submenu {
    display: block;
}

.pro .mb-sort {
    background: url(../images/icon11.png)no-repeat left center;
    padding-left: .3rem;
    background-size: .3rem;
    font-size: 14px;
    display: none;
}

@font-face {
    font-family: 'Times-New-Roman';
    src: url('../fonts/Times-New-Roman.ttf');
}

.pro-detail h1 {
    font-size: .24rem;
    color: #134069;
    line-height: 1.4;
    font-family: 'Times-New-Roman';
    margin-top: .2rem;
}

.pro-detail .number {
    margin-top: .1rem;
    font-family: 'AlibabaPuHuiTi-Medium';
}

.pro-detail .info-con {
    margin-top: .2rem;
}

.pro-detail .l-con {
    width: 7.2rem;
    margin-right: .7rem;
}

.pro-detail .l-con .focus .view {
    position: relative;
    width: 100%;
    /* overflow: hidden; */
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
}

.pro-detail .l-con .focus .view .swiper-slide {
    padding-top: 100%;
    overflow: hidden;
}

.pro-detail .l-con .focus .view .swiper-slide img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}

.pro-detail .l-con .focus .preview {
    overflow: hidden;
    margin-top: .2rem;
    padding-left: .6rem;
    padding-right: .6rem;
}

.pro-detail .l-con .focus .preview .swiper-container {
    overflow: hidden;
    width: 5.91rem;
}

.pro-detail .l-con .focus .preview .swiper-slide {
    width: .76rem;
    height: .76rem;
    overflow: hidden;
    border: 1px rgba(29, 29, 29, 0.2) solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-right: .1rem;
}

.pro-detail .l-con .focus .preview .swiper-slide img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}

.pro-detail .l-con .focus .preview .active-nav {
    border-color: #134069;
}

.pro-detail .l-con .focus .preview .arrow-left,
.pro-detail .l-con .focus .preview .arrow-right {
    position: absolute;
    top: 50%;
    width: 12px;
    height: 20px;
    margin-top: -6px;
    background: url(../images/next.png)no-repeat center;
    background-size: 100%;
    cursor: pointer;
}

.pro-detail .l-con .focus .preview .arrow-left {
    left: 0;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.pro-detail .l-con .focus .preview .arrow-right {
    right: 0;
}

.pro-detail .l-con .des {
    margin-top: .3rem;
    border-top: 1px #DCDCDC solid;
    padding-top: .2rem;
}

.pro-detail .l-con .des .title {
    color: #134069;
    font-size: .24rem;
    font-weight: bold;
    font-family: 'Times-New-Roman';
    line-height: 1.4;
}

.pro-detail .l-con .des .text {
    font-family: 'Arial';
    font-style: italic;
    font-weight: bold;
    line-height: 1.3;
    margin-top: .1rem;
}

.pro-detail .r-con .title {
    font-size: .24rem;
    font-weight: bold;
    font-family: 'Times-New-Roman';
}

.pro-detail .r-con .pricing {
    border-bottom: 1px #DCDCDC solid;
    padding-bottom: .2rem;
}

.pro-detail .r-con .pricing .title {
    background-color: #DCDCDC;
    line-height: .36rem;
    color: #134069;
    padding-left: .05rem;
}

.pro-detail .r-con .pricing .con {
    margin-top: .1rem;
}

.pro-detail .r-con .pricing .con .td {
    font-weight: bold;
    line-height: .54rem;
    border-bottom: 1px #DCDCDC solid;
}

.pro-detail .r-con .pricing .con .td span {
    width: 16.666%;
    flex: 1;
    padding: 0 .1rem;
    text-align: center;
}
.pro-detail .r-con .pricing .con .td span:first-of-type {
    text-align: left;
    width: 4em;
    flex: unset;
}

.pro-detail .r-con .pricing .txt {
    font-style: italic;
    color: #134069;
    padding-left: .1rem;
    margin-top: .2rem;
    font-family: 'Arial';
}

.pro-detail .r-con .pricing .text {
    font-style: italic;
    padding-left: .1rem;
    margin-top: .2rem;
    font-family: 'Arial';
    font-size: .2rem;
    line-height: 1.3;
}

.pro-detail .r-con .pricing .text span {
    color: #134069;
    font-weight: bold;
}

.pro-detail .r-con .pricing .submit .btn {
    width: 47%;
    line-height: .54rem;
    background-color: #DCDCDC;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
    font-weight: bold;
    font-family: 'Times-New-Roman';
    color: #0B5997;
    font-size: .18rem;
    margin-top: .2rem;
}

.pro-detail .r-con .text-con .card {
    margin-top: .25rem;
}

.pro-detail .r-con .text-con .title {
    color: #0B5997;
}

.pro-detail .r-con .text-con .txt {
    /* font-style: italic; */
    line-height: 1.8;
    font-family: 'Arial';
    margin-top: .05rem;
}

.pro-detail .r-con .pay-info {
    margin-top: .5rem;
}

.pro-detail .r-con .pay-info .tit-con {
    line-height: 3;
    font-weight: bold;
    font-size: .2rem;
    font-family: 'Times-New-Roman';
    z-index: 9;
}
.pro-detail .r-con .pay-info .tit-con span {
    cursor: pointer;
}

.pro-detail .r-con .pay-info .tit-con .on {
    color: #0B5997;
    border: 1px #DCDCDC solid;
    border-bottom-color: #FFF;
}

.pro-detail .r-con .pay-info .pay-con {
    border: 1px #DCDCDC solid;
    margin-top: -1px;
    padding: .3rem;
    text-transform: uppercase;
}

.pro-detail .r-con .pay-info .pay-con .btn {
    width: 42%;
    line-height: .5rem;
    background-color: #DCDCDC;
    color: #0B5997;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
    font-family: 'Times-New-Roman';
    font-weight: bold;
}

.pro-detail .r-con .pay-info .pay-con .c-btns .btn:first-child {
    margin-right: auto;
}
.pro-detail .r-con .pay-info .pay-con .c-btns .btn:last-child {
    margin-left: auto;
}

.pro-detail .r-con .pay-info .pay-con span {
    font-family: 'AlibabaPuHuiTi-ExtraBold';
    font-size: .2rem;
}

.pro-detail .r-con .pay-info .pay-con .cart {
    text-align: center;
}
.pro-detail .r-con .pay-info .pay-con .cart span {
    font-family: unset;
    font-size: inherit;
}
.pro-detail .r-con .pay-info .pay-con .cart .q-box {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
}
.pro-detail .r-con .pay-info .pay-con .cart .total {
    font-size: 1.8em;
    font-weight: bold;
    text-transform: capitalize;
    margin: .8em 0;
}
.pro-detail .r-con .pay-info .pay-con .cart .quantity {
    width: 7em;
}
.pro-detail .r-con .pay-info .pay-con .cart .quantity input {
    width: 100%;
    border: 1px solid #a9a9a9;
    padding: .8em .4em .8em 1em;
    border-radius: .1rem;
}
.pro-detail .r-con .pay-info .pay-con .cart .info {
    display: flex;
}
.pro-detail .r-con .pay-info .pay-con .cart .button {
    width: 75%;
    font-size: 1.4em;
    font-family: 'Times-New-Roman';
    font-weight: bold;
    color: #ffffff;
    background-color: #0b5997;
    border-radius: .1rem;
    padding: .8em 1em;
}

.pro-detail .s-pro {
    margin-top: .7rem;
}

.pro-detail .s-pro .title {
    font-family: 'Times-New-Roman';
    font-weight: bold;
    font-size: .48rem;
    color: #134069;
}

.pro-detail .s-pro .title span {
    margin-right: .5rem;
    margin-left: .5rem;
}

.pro-detail .s-pro .title .line {
    height: 1px;
    background-color: #DCDCDC;
}

.pro-detail .s-pro .content {
    margin-top: .6rem;
}

.pro-detail .s-pro .content .item {
    width: 18.2%;
    margin-right: 2%;
    border: 1px rgba(29, 29, 29, 0.2) solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: .2rem;
}

.pro-detail .s-pro .content .item:last-child {
    margin-right: 0;
}

.pro-detail .s-pro .content .item .pic {
    width: 2.2rem;
    height: 2.2rem;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.pro-detail .s-pro .content .item .pic img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.pro-detail .s-pro .content .item .tit {
    color: #0B5997;
    font-size: .18rem;
    line-height: 1.2;
    font-family: 'AlibabaPuHuiTi-Heavy';
}

.pro-detail .answer,
.pro-detail .reviews {
    margin-top: .6rem;
}

.pro-detail .answer .title,
.pro-detail .reviews .title {
    background-color: #0B5997;
    height: 1rem;
    font-size: .32rem;
    font-weight: bold;
    color: #FFF;
    font-family: 'Times-New-Roman';
}

.pro-detail .answer .title img,
.pro-detail .reviews .title img {
    margin-right: .2rem;
    width: .64rem;
}

.pro-detail .answer .tit {
    font-family: 'AlibabaPuHuiTi-ExtraBold';
    font-size: .24rem;
    line-height: 1.5;
}

.pro-detail .answer .con {
    margin-top: .45rem;
}

.pro-detail .answer .con input[type='text'] {
    width: 100%;
    height: .54rem;
    border: 1px rgba(29, 29, 29, 0.2) solid;
    margin-top: .2rem;
    padding-left: .2rem;
}

.pro-detail .answer .con .txt {
    color: #1D1D1D;
    line-height: 1.4;
    margin-top: .2rem;
}

.pro-detail .answer .con .txt a {
    color: #0B5997;
    font-family: 'AlibabaPuHuiTi-Medium';
}

.pro-detail .answer .con .btn {
    width: 3.2rem;
    line-height: .65rem;
    background-color: #DCDCDC;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
    font-size: .18rem;
    font-weight: bold;
    margin-top: .2rem;
    color: #0B5997;
}

.pro-detail .answer ul {
    margin-top: .5rem;
}

.pro-detail .answer li {
    padding-top: .3rem;
    padding-bottom: .3rem;
    border-bottom: 1px rgba(0, 0, 0, 0.1) solid;
}

.pro-detail .answer li:last-child {
    border-bottom: 0;
}

.pro-detail .answer li:first-child {
    padding-top: 0;
}

.pro-detail .answer li .date {
    margin-right: .2rem;
    line-height: 1.4;
    margin-top: .05rem;
}

.pro-detail .answer li .q {
    font-size: .24rem;
    font-family: 'AlibabaPuHuiTi-SemiBold';
}

.pro-detail .answer li .q span,
.pro-detail .answer li .a span {
    font-size: .32rem;
    font-family: 'AlibabaPuHuiTi-SemiBold';
    margin-right: .15rem;
}

.pro-detail .answer li .a {
    margin-top: .2rem;
}

.pro-detail .answer li .info {
    margin-top: .2rem;
    padding-left: .5rem;
    font-size: .14rem;
}

.pro-detail .answer li .info .txt {
    background: url(../images/z1.png)no-repeat left center;
    background-size: .24rem;
    padding-left: .35rem;
}

.pro-detail .answer li .info span {
    border: 1px rgba(0, 0, 0, 0.5) solid;
    height: .36rem;
    margin-left: .2rem;
    padding: 0 .1rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    text-transform: capitalize;
    cursor: pointer;
}

.pro-detail .answer li .info .yes::before {
    content: '';
    display: block;
    width: .24rem;
    height: .24rem;
    background: url(../images/z1.png)no-repeat center;
    background-size: 100%;
    margin-right: .05rem;
}

.pro-detail .answer li .info .no::before {
    content: '';
    display: block;
    width: .24rem;
    height: .24rem;
    background: url(../images/z2.png)no-repeat center;
    background-size: 100%;
    margin-right: .05rem;
}

.pro-detail .answer .more {
    margin-top: .5rem;
    margin-left: auto;
    margin-right: auto;
    width: 4rem;
    height: .64rem;
    border: 1px #0B5997 solid;
    font-weight: bold;
    color: #0B5997;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.pro-detail .reviews ul {
    margin-top: .4rem;
}

.pro-detail .reviews li {
    margin-bottom: .7rem;
    color: #1D1D1D;
}

.pro-detail .reviews .star {
    height: .32rem;
}

.pro-detail .reviews .star span {
    width: .32rem;
    background: url(../images/star2.png)no-repeat center;
    background-size: 100%;
    margin-right: .1rem;
}

.pro-detail .reviews .star.s1>span:nth-child(1),
.pro-detail .reviews .star.s2>span:nth-child(1),
.pro-detail .reviews .star.s2>span:nth-child(2),
.pro-detail .reviews .star.s3>span:nth-child(1),
.pro-detail .reviews .star.s3>span:nth-child(2),
.pro-detail .reviews .star.s3>span:nth-child(3),
.pro-detail .reviews .star.s4>span:nth-child(1),
.pro-detail .reviews .star.s4>span:nth-child(2),
.pro-detail .reviews .star.s4>span:nth-child(3),
.pro-detail .reviews .star.s4>span:nth-child(4),
.pro-detail .reviews .star.s5>span:nth-child(1),
.pro-detail .reviews .star.s5>span:nth-child(2),
.pro-detail .reviews .star.s5>span:nth-child(3),
.pro-detail .reviews .star.s5>span:nth-child(4),
.pro-detail .reviews .star.s5>span:nth-child(5) {
    background-image: url(../images/star-on.png);
}

.pro-detail .reviews .box {
    margin-top: .2rem;
    border-top: 1px rgba(0, 0, 0, 0.3) solid;
    padding-top: .2rem;
}

.pro-detail .reviews .tit {
    font-size: .24rem;
    font-family: 'AlibabaPuHuiTi-SemiBold';
    line-height: 1.5;
}

.pro-detail .reviews .company {
    margin-top: .2rem;
}

.pro-detail .reviews .company span {
    background-color: #F70205;
    font-size: .12rem;
    color: #FFF;
    padding: 0 .1rem;
    line-height: .21rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 0 .05rem;
    margin-left: .1rem;
}

.pro-detail .reviews .des {
    margin-top: .2rem;
    line-height: 1.6;
}

.pro-detail .reviews li .info {
    margin-top: .2rem;
    font-size: .14rem;
}

.pro-detail .reviews li .info .txt {
    background: url(../images/z1.png)no-repeat left center;
    background-size: .24rem;
    padding-left: .35rem;
}

.pro-detail .reviews li .info span {
    border: 1px rgba(0, 0, 0, 0.5) solid;
    height: .36rem;
    margin-left: .2rem;
    padding: 0 .1rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    text-transform: capitalize;
    cursor: pointer;
}

.pro-detail .reviews li .info .yes::before {
    content: '';
    display: block;
    width: .24rem;
    height: .24rem;
    background: url(../images/z1.png)no-repeat center;
    background-size: 100%;
    margin-right: .05rem;
}

.pro-detail .reviews li .info .no::before {
    content: '';
    display: block;
    width: .24rem;
    height: .24rem;
    background: url(../images/z2.png)no-repeat center;
    background-size: 100%;
    margin-right: .05rem;
}

.pro-detail .reviews .more {
    margin-top: .5rem;
    margin-left: auto;
    margin-right: auto;
    width: 4rem;
    height: .64rem;
    border: 1px #0B5997 solid;
    font-weight: bold;
    color: #0B5997;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

@media (min-width:1025px) {
    .pro-detail .r-con .pricing .submit .btn:hover,
    .pro-detail .r-con .pay-info .pay-con .btn:hover,
    .pro-detail .answer .con .btn:hover,
    .pro-detail .answer .more:hover,
    .pro-detail .reviews .more:hover {
        background-color: #0B5997;
        color: #FFF;
    }
    .pro-detail .s-pro .content .item:hover .tit,
    .pro-detail .answer .con .txt a:hover {
        text-decoration: underline;
    }
}

@media (max-width:1199px) {
    .banner .swiper-button-white {
        width: 30px;
        height: 30px;
        background-repeat: 14px;
    }
    .home-title,
    .pub-title {
        font-size: 20px;
    }
    .home-pro {
        margin-top: .6rem;
    }
    .home-pro .item {
        margin-right: 0;
        width: 25%;
        padding-right: 2%;
        padding-left: 2%;
    }
    .home-pro .item:last-child {
        display: none;
    }
    .home-pro .item .tit {
        height: 32px;
    }
    .home-content .card .text,
    .home-content .card .submit,
    .about .body,
    .us .body,
    .us .info .txt,
    .us .form .group .tit,
    .us .form input[type='submit'],
    .pro .sidebar>ul>li .tit,
    .pro-detail .r-con .pricing .text,
    .pro-detail .r-con .pricing .submit>a,
    .pro-detail .r-con .pay-info .tit-con,
    .pro-detail .r-con .pay-info .pay-con span,
    .pro-detail .s-pro .content .item .tit,
    .pro-detail .answer .con .btn {
        font-size: 14px;
    }
    .home-content .card .submit {
        width: 80%;
        line-height: 34px;
    }
    .home-content .card .pic {
        margin-right: .4rem;
    }
    .home-content .card:nth-child(2) .pic {
        margin-left: .4rem;
    }
    .us .form {
        padding: .3rem;
        margin-top: .4rem;
    }
    .us .form .title,
    .pro-detail h1 {
        font-size: 18px;
    }
    .us .form .group input[type='text'] {
        height: 40px;
    }
    .us .form .group textarea {
        height: 140px;
    }
    .us .form input[type='submit'] {
        width: 240px;
        height: 40px;
    }
    .crumbs,
    .pro .s-text,
    .pro .pro-menu .tit,
    .pro .condition .filters .con>a,
    .pro .condition .per .con>a,
    .select-list ul li,
    .pro .body .con .filters>a,
    .pro .body .con .share,
    .pro .body .wrapper .item .txt,
    .pro .sidebar .filters,
    .pro .sidebar>ul>li .all,
    .label_box>label>div,
    .label_box>label>input:checked+div,
    .pro-detail .answer li .info,
    .pro-detail .reviews .company span,
    .pro-detail .reviews li .info {
        font-size: 12px;
    }
    .pro .condition .item {
        padding-right: .3rem;
        margin-right: .3rem;
    }
    .pro .condition .results {
        width: 100%;
    }
    .pro .condition .results::after {
        display: none;
        margin-right: 0;
        padding-right: 0;
    }
    .pro .condition .filters .con>a,
    .pro .condition .per .con>a {
        line-height: 24px;
    }
    .pro .condition .view .con>a {
        height: 26px;
        width: 36px;
    }
    .select-button {
        height: 26px;
        font-size: 12px;
    }
    .select-list {
        top: 26px;
    }
    .pro .condition .sort {
        width: 150px;
    }
    .pro .condition .per {
        width: 140px;
    }
    .pro .condition .view {
        width: 90px;
    }
    .select-wrapper {
        height: 26px;
    }
    .pro .body .con .filters>a,
    .pro .body .con .share {
        line-height: 1.8;
    }
    .pro .body .title,
    .pro-detail .l-con .des .title,
    .pro-detail .r-con .title {
        font-size: 16px;
    }
    .pro .body .wrapper .item .share {
        width: 24px;
        height: 24px;
    }
    .pro .body .wrapper .item {
        width: 23.5%;
        margin-right: 2%;
    }
    .page>a {
        width: 28px;
        height: 28px;
    }
    .pro .sidebar {
        display: none;
        width: 100%;
    }
    .pro .content,
    .pro .mb-sort {
        display: block;
    }
    .pro .body {
        margin-top: .2rem;
    }
    .label_box>label>input+div::after {
        width: 14px;
        height: 14px;
    }
    .pro-detail .l-con {
        margin-right: .4rem;
    }
    .pro-detail .r-con .pricing .title {
        line-height: 28px;
    }
    .pro-detail .r-con .pricing .submit>a {
        line-height: 38px;
    }
    .pro-detail .r-con .pay-info .pay-con a {
        line-height: 34px;
    }
    .pro-detail .s-pro .title,
    .pro-detail .answer .title,
    .pro-detail .reviews .title {
        font-size: 24px;
    }
    .pro-detail .answer .title,
    .pro-detail .reviews .title {
        height: 68px;
    }
    .pro-detail .answer .tit,
    .pro-detail .answer li .q,
    .pro-detail .reviews .tit {
        font-size: 18px;
    }
    .pro-detail .answer .con input[type='text'] {
        height: 38px;
    }
    .pro-detail .answer .con .btn {
        width: 220px;
        line-height: 44px;
    }
    .pro-detail .answer li .q span,
    .pro-detail .answer li .a span {
        font-size: 20px;
    }
    .pro-detail .answer .more {
        width: 270px;
        height: 44px;
    }
    .pro-detail .answer li .info span,
    .pro-detail .reviews li .info span {
        height: 26px;
    }
    .pro-detail .reviews .star {
        height: 22px;
    }
    .pro-detail .reviews .star span {
        width: 22px;
    }
    .pro-detail .reviews .company span {
        line-height: 22px;
    }
}

@media(max-width:950px) {
    .home-pro .item {
        width: 33.333%;
    }
    .home-content .card .pic {
        width: 100%;
        margin-right: 0 !important;
        margin-left: 0 !important;
        order: 1;
    }
    .home-content .card .flex-1 {
        order: 2;
        margin-top: .3rem;
    }
    .home-content .card:nth-child(2) {
        padding-top: 0;
    }
    .pro .condition .filters {
        flex: none;
        width: 100%;
        margin-top: .2rem;
        margin-bottom: .2rem;
        margin-right: 0;
        padding-right: 0;
    }
    .pro .condition .filters::after {
        display: none;
    }
    .pro-detail .l-con {
        width: 100%;
        margin-right: 0;
    }
    .pro-detail .l-con .focus .preview .swiper-container {
        width: 100%;
    }
    .pro-detail .l-con .focus .preview .swiper-slide {
        width: 12.5%;
        margin-right: 2%;
        padding-top: 12%;
    }
    .pro-detail .r-con {
        margin-top: .3rem;
    }
}

@media (max-width:767px) {
    .home-pro .item {
        width: 50%;
    }
    .home-pro .item .pic {
        width: 2.6rem;
        height: 2.6rem;
    }
    .us .info .con {
        display: block;
    }
    .us .form .con {
        display: block;
    }
    .us .form .group {
        margin-right: 0;
    }
    .pro .body .wrapper .item {
        width: 49%;
    }
    .pro .body .wrapper .item:nth-child(even) {
        margin-right: 0;
    }
    .pro-detail .l-con .focus .preview .swiper-slide {
        width: 18%;
        padding-top: 18%;
    }
    .pro-detail .s-pro .content {
        margin-top: .2rem;
    }
    .pro-detail .s-pro .content .item {
        width: 49%;
        margin-top: .2rem;
    }
    .pro-detail .s-pro .content .item:nth-child(even) {
        margin-right: 0;
    }
    .pro-detail .s-pro .content .item:last-child {
        display: none;
    }
}

@media (max-width:540px) {
    .pro .condition .sort {
        width: 100%;
        margin-bottom: .2rem;
        margin-right: 0;
        padding-right: 0;
    }
    .pro .condition .sort::after {
        display: none;
    }
    .pro .condition .per {
        width: auto;
        flex: 1;
    }
    .pro-detail .answer li {
        display: block;
    }
    .pro-detail .answer li .date {
        width: 100%;
        margin-right: 0;
    }
    .pro-detail .answer li .info span {
        margin-left: .1rem;
    }
}


.rich-text p {margin: 1em 0;}
.rich-text p::after {content: "";display: block;clear: both;}
.rich-text img,.rich-text video {max-width: 100%;height: auto !important;}
.rich-text iframe {max-width: 100%;}
.rich-text ul {list-style: initial;padding-left: 30px;}
.rich-text h1 {font-size: 2em;margin-top: .67em;margin-bottom: .67em;line-height: initial;}
.rich-text h2 {font-size: 1.5em;margin-top: .83em;margin-bottom: .83em;line-height: initial;}
.rich-text h3 {font-size: 1.17em;margin-top: 1em;margin-bottom: 1em;line-height: initial;}
.rich-text h4 {margin-top: 1.33em;margin-bottom: 1.33em;line-height: initial;}
.rich-text h5 {margin-top: 1.67em;margin-bottom: 1.67em;line-height: initial;}
.rich-text h6 {margin-top: 2.33em;margin-bottom: 2.33em;line-height: initial;}
.aligncenter {display: block;margin-left: auto;margin-right: auto;}
.alignleft {float: left;margin: 0.5em 1em 0.5em 0;}
.alignright {float: right;margin: 0.5em 0 0.5em 1em;}

@keyframes progress-anim {
    0% {width: 0;}
    5% {width: 0;}
    10% {width: 15%;}
    30% {width: 40%;}
    50% {width: 55%;}
    80% {width: 100%;}
    95% {width: 100%;}
    to {width: 0;}
}
@keyframes spin {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}

.btn-loading {position: relative;opacity: .9;pointer-events: none;}
.btn-loading::after {animation: progress-anim 4s 0s infinite;background: rgba(255, 255, 255, 0.4);bottom: 0;content: "";height: 5px;left: 0;position: absolute;right: 0;}


.loading {position: relative;pointer-events: none;}
.loading::before {content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: rgba(255, 255, 255, .6);z-index: 1;}
.loading::after {content: '';position: absolute;top: 50%;left: 50%;width: 2em;height: 2em;margin: -1em 0 0 -1em;border: 2px solid #f3f3f3;border-top: 2px solid #134069;border-radius: 50%;animation: spin 1s linear infinite;z-index: 10;}

ul.page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: .2rem;
}
.page-numbers .page-numbers {
    display: block;
    line-height: 2em;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 0 .6em;
    border: 1px #134069 solid;
    margin: .6em .3em 0 .3em;
}
.page-numbers .current {
    color: #FFF;
    background-color: #134069;
}



.page>a.prev,
.page>a.next {
    background: url(../images/next1.png)no-repeat center;
}

.page>a.last,
.page>a.first {
    background: url(../images/next2.png)no-repeat center;
}

.page>a.prev,
.page>a.first {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.page>a.on {
    background-color: #134069;
    color: #FFF;
}

.page>a.display {
    opacity: .5;
}


.home-content .card:nth-of-type(even) {
    flex-direction: row-reverse;
}
.home-content .card .submit {
    display: inline-flex;
}

.fluentform .hidden {display: none !important;}
.fluentform .file-upload {position: relative;width: 100%;display: flex;align-items: center;justify-content: center;padding: 1em;border-radius: 7px;border: 1px solid #dadbdd;}
.fluentform .file-upload + input {display: none;}
.fluentform .file-upload input{position: absolute;top: 0;left: 0;width: 100%;height: 100%;opacity: 0;cursor: pointer;}
.fluentform .file-upload .handle {display: flex;flex-direction: column;align-items: center;justify-content: center;}
.fluentform .file-upload .handle i { width: 2.6em;height: 2.6em;background: url(../images/upload.svg) no-repeat center;background-size: contain;margin-bottom: .2em;}
.fluentform .file-upload .handle .txt {font-weight: bold;}
.fluentform .file-upload .handle .tip { color: #8f8f8f;text-transform: uppercase; padding: 0; }
.fluentform .file-upload .attach-box {position: absolute;top: 0;left: 0;width: 100%;height: 100%;padding: 5px;display: flex;align-items: center;justify-content: center;background: #f1f1f1;z-index: 1;}
.fluentform .file-upload .attach-box .name {display: flex; align-items: center; font-size: 1.2em;color: #0b5997;word-break: break-all;max-width: 100%;height: 100%;}
.fluentform .file-upload .attach-box .name::before{content: "";width: 1.4em;height: 1.4em;margin-right: .2em;background: url(../images/file.svg) no-repeat center;background-size: contain;flex-shrink: 0;}
.fluentform .file-upload .attach-box img {width: 100%;height: 100% !important;object-fit: contain;}
.fluentform .file-upload .attach-box i {position: absolute;top: 5px;right: 5px;width: 1.8em;height: 1.8em;cursor: pointer;background: url(../images/close2.svg) no-repeat center;background-size: contain;}
.fluentform .ff-el-is-error .file-upload{border-color: #f56c6c;}

.us .body iframe {
    width: 100%;
}
.us .form-box .fluentform .ff-el-group {
    margin-bottom: 0;
    margin-top: .3rem;
}
.us .form-box  input,
.us .form-box  textarea {
    padding: 1em;
    border: 1px rgba(19, 64, 105, 0.3) solid;
    border-radius: 0.05rem;
}
.us .form-box .fluentform .ff-el-input--label {
    margin-bottom: .1rem;
}
.us .form-box .fluentform .ff-el-input--label label{
    font-family: 'AlibabaPuHuiTi-SemiBold';
}
.us .form-box .ff_submit_btn_wrapper .ff-btn-submit { 
    font-size: .18rem;
    font-weight: bold;
    color: #FFF;
    padding: .8em 2em;
    background-color: #134069;
    min-width: 4rem;
}

.star {
    display: flex;
}
.pro-detail .answer .tit a {color: #0B5997;}
.pro-detail .reviews .star span.on {
    background-image: url(../images/star-on.png);
}
.pro-detail .answer .more,
.pro-detail .reviews .more {
    cursor: pointer;
}
.pro-detail .answer .more.btn-loading,
.pro-detail .reviews .more.btn-loading,
.pro-detail .answer .con .btn.btn-loading {
    color: #ffffff;
    background: #0B5997;
    cursor: unset;
}

.pro-detail .empty-txt {
    display: none;
    font-size: 1.4em;
    color: gray;
    text-align: center;
    margin: 4em 0;
}
.pro-detail #reviews.empty ul,
.pro-detail #reviews.empty .more,
.pro-detail #question.empty ul,
.pro-detail #question.empty .more {
    display: none;
}
.pro-detail #reviews.empty .empty-txt,
.pro-detail #question.empty .empty-txt {
    display: block;
}
.pro-detail .s-pro .content .item .tit {margin-top: .6em;}
.pro .sidebar .filters {margin-top: .5em;}
.pro .condition .per .con .i {
    font-family: 'AlibabaPuHuiTi-Medium';
    font-size: .14rem;
    line-height: 2;
    color: #134069;
    border: 1px #134069 solid;
    padding: 0 .1rem;
    margin-right: .05rem;
    cursor: pointer;
}
.pro .condition .per .con .i.active {
    background-color: #134069;
    color: #ffffff;
}
.pro .condition .view .con .i {
    width: .5rem;
    height: .3rem;
    border: 1px #134069 solid;
    margin-right: .05rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: .2rem;
    cursor: pointer;
}
.pro .condition .view .con .i.img-grid {
    background-image: url(../images/icon7.png);
}
.pro .condition .view .con .i.text-grid {
    background-image: url(../images/icon8.png);
}
.pro .condition .view .con .i.active {
    background-color: #134069;
}
.pro .condition .filters.item .con {
    margin-top: 0;
}
.pro .condition .filters .con .i {
    padding: 0 .1rem;
    border: 1px #134069 solid;
    margin-right: .05rem;
    font-size: .12rem;
    color: #134069;
    line-height: 2;
    font-family: 'AlibabaPuHuiTi-Medium';
    cursor: pointer;
    margin-top: .1rem;
}
.pro .condition .filters .con .i.active {
    color: #ffffff;
    background: #134069;
}
.pro .condition .con select {
    width: 100%;
    font-size: .12rem;
    color: #134069;
    padding: 0 .2rem 0 .1rem;
    height: 2em;
    border: 1px solid #134069;
    background: transparent;
    font-family: 'AlibabaPuHuiTi-Medium';
}
.pro .empty {text-align: center;margin: 4em auto;font-size: 1.2em;color: gray;}
.pro .sidebar li.active .submenu {max-height: 30em;overflow-y: auto;}
.pro .sidebar>ul>li .tit {cursor: pointer;}
.pro .body .con {align-items: flex-start;}
.pro .body .con .filters{flex-wrap: wrap;margin-top: -.1rem;}
.pro .body .con .filters .i {font-size: 0.14rem;font-family: 'AlibabaPuHuiTi-Medium';line-height: 1.4;margin-right: 0.05rem;margin-top: .1rem; background-color: rgb(19, 64, 105);color: rgb(255, 255, 255);padding: .4em 2.4em.4em 1em;}
.pro .body .con .filters .i .close {position: absolute;right: .1rem;top: 50%;width: 1em;height: 1em;transform: translateY(-50%);-webkit-transform: translateY(-50%);-moz-transform: translateY(-50%);-ms-transform: translateY(-50%);-o-transform: translateY(-50%);background: url(../images/close.png) no-repeat center;background-size: 100%;cursor: pointer;}
.pro .body .con .filters .i.clear {color: rgb(19, 64, 105);background-color: rgba(4, 43, 139, 0.1);margin-right: 0px;padding-right: 1em;border-width: 1px;border-style: solid;border-color: rgb(19, 64, 105);border-image: initial;cursor: pointer;}
.label_box>label {
    height: auto;
    cursor: pointer;
}
.label_box>label>div {
    padding-right: 2em;
}
.label_box>label>input:checked+div:before {
    top: 50%;
    bottom: unset;
    transform: translateY(-50%) rotate(35deg);
}
.label_box>label>input+div::after {
    top: 50%;
    bottom: unset;
    transform: translateY(-50%);
}

body .woocommerce ul {padding-left: 0;}
body .woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dt {padding: 1em;}
body .woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dd {padding: 1em;}
body .woocommerce address {line-height: 1.6;}
body .woocommerce .ac-cont a {color: #0b5997; }
body .woocommerce .button {padding: 1em 2em !important;}
body .woocommerce mark {color: #0b5997;font-weight: bold;background: transparent;}


.login .box {max-width: 4.3rem;padding: .74rem 0;}
.login .box .b-top {text-align: center;}
.login .box .b-top .tit{font-size: .48rem;font-weight: bold;line-height: 1;}
.login .box .b-top .txt{line-height: 1.5;color: #3D3D3D;margin-top: .12rem;}
.login .form {font-size: .18rem; margin: .48rem 0;}
.login .form .item {margin-top: .24rem;}
.login .form .item .label {display: flex;align-items: center;justify-content: space-between;margin-bottom: .08rem;}
.login .form .item .label .tit {line-height: 1.5;}
.login .form .item.required .label .tit::after{content: " *";color: red;}
.login .form .item .val input {width: 100%;line-height: 1.4;padding: .8em 1em;border: 0; background: #F5F7FA;}
.login .form .submit-box {display: flex;align-items: center;justify-content: center;margin-top: .4rem;}
.login .form .submit-box .submit {width: 100%; line-height: 1.5;color: #fff;border-radius: 0.06rem;padding: .16rem .26rem;border: 0;background: #0B5997;cursor: pointer;}
.login .form .else {display: flex;align-items: center;justify-content: space-between;margin-top: .2rem;}
.login .form .else .remember{display: flex;align-items: center;}
.login .form .else .remember input {margin-right: .4em;margin-top: -.1em;}
.login .form .else .remember span,.login .form .else .link {line-height: 1.5;font-weight: 500;}
.login .box .bottom .txt {text-align: center;line-height: 1.5;color: #3E3E3E;}
.login .box .bottom .txt a {color: #0B5997;}
.login .form .pwd {position: relative;}
.login .form .pwd input {padding-right: 3em !important;}
.login .form .pwd .icon {position: absolute;top: 50%;right: 1em;transform: translateY(-50%);width: 1em;height: 1em;background: url(../images/eye.svg) no-repeat center;background-size: contain; background-repeat: no-repeat; background-position: center; cursor: pointer;z-index: 1;}
.login .form .pwd input[type='text'] + .icon {background-image: url(../images/eye-close.svg);}

.account {padding-top: 0.4rem; padding-bottom: 1.1rem;}
.account .subtitle {font-size: .32rem;font-weight: bold;line-height: 1.5;margin-bottom: .1rem;}
.select2-dropdown {border-top: var(--wc-form-border-width,1px) solid var(--wc-form-border-color,#aaa) !important;}
.account .edit-form input,.account .edit-form .select2 .select2-selection__rendered {line-height: 1.4 !important;padding: 1em !important;border: 0 !important; background: #f5f7fa !important;}
.account .edit-form .select2 .select2-selection {border: 0;}
.account .edit-form .form-row {padding: 0;margin: 0 0 1.5em 0;}
.account .edit-form .form-row label {line-height: 1.5;font-weight: bold;margin-bottom: .5em;}
.account .edit-form .f-col { display: flex; gap: 1.5em; }
.account .edit-form .f-col .form-row  {flex: 1;}
.account .submit-box {margin-top: 1.5em;}
.account .submit-box button {color: #ffffff !important; font-weight: bold !important; background: #134069 !important;padding: 1.2em 2em !important;border-radius: .06rem !important; }
body .account .table table, .cart-page .table table { border-collapse: collapse; }
body .account .table table th,body .account .table table td,
.cart-page .table table th,.cart-page .table table td {
    font-size: .16rem;line-height: 1.2;text-align: center;padding: .8em;
}
body .account .table.border table th,body .account .table.border table td,
.cart-page .table.border table th,.cart-page .table.border table td {
    border: 1px solid #DCDCDC;
} 
body .account .table table th, .cart-page .table table th {font-weight: bold;color: #134069;background: #DCDCDC;}
body .account .table table td, .cart-page .table table td {font-weight: 400;color: #1D1D1D;}

.account-content { display: flex; }
.ac-side{ width: 3.2rem; margin-right: .48rem; }
.ac-side .tit {font-size: .48rem;font-weight: bold;line-height: 1;margin-bottom: .48rem;}
.ac-side .userinfo {display: flex;align-items: center;}
.ac-side .userinfo img {width: .4rem;height: .4rem;border-radius: 50%;margin-right: .1rem;}
.ac-side .userinfo .name {font-size: .24rem;}
.ac-side ul {margin-top: .24rem;}
.ac-side ul li a {position: relative; display: block;font-size: .2rem; line-height: 1.2; padding: 1em 1.2em;border-bottom: 1px solid #DCDCDC;}
.ac-side ul li:last-of-type a {border-bottom: 0;}
.ac-side ul li.is-active a {background: rgba(20, 32, 137, 0.1);}
.ac-side ul li.is-active a::before{content: "";position: absolute;left: 0;top: 0;width: 0.06rem;height: 100%;background: #134069;}
.ac-cont {flex: 1;padding-top: .86rem;}

.account .lost-password-box {width: 6rem; max-width: 100%; margin-left: auto;margin-right: auto;}
.lost-password-box .tip {font-size: 1.2em;}
.lost-password-box form .form-row {width: 100% !important;margin-top: .2rem !important;margin-bottom: 0 !important;}
.lost-password-box label {font-weight: normal !important;line-height: 1.5;}

.update-password .rules .tit {display: flex;align-items: center;font-weight: bold;line-height: 1.5;color: #0B5997;}
.update-password .rules .tit span {display: flex;align-items: center;justify-content: center;width: 1em;height: 1em;color: #ffffff;background: #0B5997;border-radius: 50%;margin-right: .1rem;}
.update-password .rules .txt {position: relative;font-size: .8em;font-weight: 500;color: #0B5997;line-height: 1.6;margin-top: 0.08rem;}
.update-password .rules .txt p {position: relative;padding-left: 2em;}
.update-password .rules .txt p::before {content: "";position: absolute;top: 50%;left: .4em;width: 0.04rem;height: 0.04rem;border-radius: 50%;background: #0B5997;transform: translateY(-50%);}
.update-password .submit-box button { min-width: 4rem; }

.dashboard .txt {font-size: 1.2em; line-height: 1.6;margin-bottom: 1em;}
.dashboard .txt a {color: #0B5997;}


.wishlist .empty {font-size: 1.2em;margin: 2em auto;}
.wishlist .tinv-lists-nav {justify-content: center;margin: 2em 1em !important;}
.wishlist .tinv-lists-nav>span{margin: 0 2em;}
.wishlist .tinv-lists-nav>span,.tinv-lists-nav .button{flex-basis: unset !important;flex: unset !important;}
.wishlist .tinv-lists-nav .button {margin: 0 !important;}

.cart-page .body {font-size: .2rem;padding: .6rem 0;}
.cart-page .body p {margin: 0;}
.cart-page .wc-block-cart__submit-button {color: #ffffff;background-color: #0b5997;padding: .8em 1em;}
.cart-page .wc-block-grid__products {padding-left: 0;}
.cart-page .add_to_cart_button { color: #0B5997;border-radius: .1rem;padding: .6em 1.6em;background-color: #DCDCDC;}
.cart-page .add_to_cart_button:hover { color: #ffffff;background-color: #0B5997;}
.cart-page .wc-proceed-to-checkout .button {background-color: #0B5997 !important;}
.cart-page a {color: #0B5997;}

.checkout-page .body {font-size: .2rem;padding: .6rem 0;}
.checkout-page .wp-block-woocommerce-checkout {padding-top: 0;}
.checkout-page .wc-block-components-form .wc-block-components-checkout-step {margin-bottom: .4rem;}
.checkout-page .wc-block-components-radio-control__label, .checkout-page .wc-block-components-radio-control__secondary-label {line-height: 1.8;}
.checkout-page .wc-block-checkout__terms.wc-block-checkout__terms--with-separator {padding: .4rem 0 0 0;margin: .4rem 0;}
.checkout-page .wc-block-components-checkout-place-order-button { color: #ffffff;background-color: #0b5997;padding: .8em 1em;}
.checkout-page .woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dt {padding: 1em;}
.checkout-page .woocommerce ul.order_details li {line-height: 2;margin-top: .4em;}
.checkout-page a {color: #0B5997;}
.checkout-page p{margin: auto;}
.checkout-page button {color: #ffffff !important; background: #0B5997 !important;}
.checkout-page .woocommerce-checkout #payment {background: transparent; border: 1px solid rgba(0,0,0,.1);}
.checkout-page .woocommerce-checkout #payment div.payment_box {background: #e6eef4;}
.checkout-page .woocommerce-checkout #payment div.payment_box::before{border-bottom-color: #e6eef4;}
.checkout-page .woocommerce-checkout-payment button{margin-top: 1em !important;}

.my-orders .table .button {font-weight: 400;color: #ffffff;padding: .4em 1em !important;background: #134069;border-radius: .2rem;}
.my-orders .table .status {display: inline-block;font-weight: 400;color: #0B5997;padding: .4em 1em;background: rgba(11, 89, 151, 0.1);border-radius: .2rem;}
.my-orders .table .products .item {display: flex;align-items: center;margin-top: 1em;}
.my-orders .table .products .item:first-of-type{margin-top: 0;}
.my-orders .table .products .item img {width: 2em;height: 2em;object-fit: contain;margin-right: 1em;}
.my-orders .table .products .item span{flex: 1;text-align: left;}

.order-detail .woocommerce-order-details__title,
.order-detail .woocommerce-column__title,
.order-detail h2 {margin-bottom: .6em;}
.order-detail .ac-cont .woocommerce-customer-details address {margin-bottom: 2em;line-height: 1.6;}
.order-detail .top-status {margin-bottom: 1em;}
.order-detail .top-status mark {color: #0b5997;font-weight: bold;background: transparent;}

.my-address address {margin-top: 1em;}

.my-cart .product-thumbnail img {width: 140px;height: 140px;object-fit: contain;}
.my-cart .table tr td.product-name {text-align: left;}
.my-cart .table tr td.product-name dl dt {margin-right: 1em;}
.my-cart .table .product-subtotal {position: relative;}
.my-cart .table  .remove {position: absolute;top: 0;right: 0;width: 1.8em;height: 1.8em;background: url(../images/delete.svg) no-repeat center ;background-size: 60%;cursor: pointer;}
.my-cart .table  .remove:hover {background: url(../images/delete.svg) no-repeat center ;background-size: 60%;}
.my-cart .table .num-box {display: inline-flex;border: 1px solid #DCDCDC;}
.my-cart .table .num-box .btn { display: flex;align-items: center;justify-content: center;color: #0B5997;width: 2em;height: 2em;background: rgba(11, 89, 151, 0.1);}
.my-cart .table .num-box input {height: 100%;-moz-appearance: textfield;-webkit-appearance: textfield;appearance: textfield;}
.my-cart .table .num-box input::-webkit-outer-spin-button,.my-cart .table .num-box input::-webkit-inner-spin-button {-webkit-appearance: none;margin: 0;}

.design-page .pdapp-cart-prices {opacity: 0; height: 0;}

.zoom-mask {position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: rgba(255, 255, 255, 0.4);z-index: 1;display: none;}
.zoom-lens {position: absolute;top: 0;left: 0;width: 30%;height: 30%;border: 1px solid #fff; box-shadow: 0px 0px 6px rgba(0,0,0,.6); pointer-events: none;overflow: hidden;z-index: 1;display: none;}
.zoom-lens img {position: absolute;top: 0;left: 0;width: 7.2rem;height: 7.2rem;transition: unset;}
.zoom-result {position: absolute;left: 110%;top: 0;width: 100%;height: 100%;background-size: 300% 300%;background-repeat: no-repeat;box-shadow: 0px 0px 4px rgba(0,0,0,.3);display: none;}

.fluentform .ff-message-success{color: #155724;background-color: #d4edda;border-color: #c3e6cb;}

.popup {position: fixed;top: 0;left: 0; width: 100%;height: 100%; padding: 1%; background: rgba(0, 0, 0, 0.5);z-index: 10;display: none; overflow-y: auto;}
.popup.on {display: flex;}
.popup .p-container {position: relative;border-radius: .1rem;background: #fff;max-width: 90%; margin: auto;}
.popup .p-close {position: absolute;top: -.8em;right: -.8em;width: 2em;height: 2em;border-radius: 50%;background: url(../images/close.svg) no-repeat center;background-color: #000;background-size: 60%;border: 2px solid #fff;cursor: pointer;}
.popup .p-content {padding: .2rem;}
.popup .p-footer {display: flex;align-items: center;justify-content: space-between;padding: .1rem .2rem;border-top: 1px solid #ddd;}
.popup .p-footer .btn {color: #000;background-color: #efefef;border-color: #ddd;padding: .6em 2em;border-radius: .1rem;cursor: pointer;}
.popup .p-footer .btn.confirm {color: #ffffff;background-color: #0b5997;}
.popup .p-content .tip {padding: .2rem;text-align: center;}
.popup .p-content .tip.success{color: #155724;background-color: #d4edda;border-color: #c3e6cb;}
.popup .p-content .tip.error{color: #c10202;background-color: #ffd0d0;border-color: #ffd0d0;}


.popup.addcart .p-container {width: 8rem;}

.popup.addrequest .p-container { width: 8rem; }
.popup.addrequest .title {font-size: 2em;font-weight: bold;text-align: center;}
.popup.addrequest .subtitle {text-align: center;font-size: 1.2em;color: #727272;margin: .6em 0 1em 0;}
.popup.addrequest .info {font-size: 1.2em;margin: 1em 0;}
.popup.addrequest .info .tit {font-weight: bold;}
.popup.addrequest .info .txt {color: #727272;}
.popup.addrequest .fluentform textarea { min-height: unset; }
.popup.addrequest .fluentform .ff-el-group {margin-bottom: .1rem;}
.popup.addrequest .fluentform .ff-btn-submit {width: 100%; }
.popup.addrequest .fluentform .ff_submit_btn_wrapper_custom {margin-top: 0;}
.popup.addrequest .fluentform .ff_submit_btn_wrapper_custom button {margin-bottom: 0;}
.popup.addrequest .fluentform .col-same>.ff-t-column-1>.ff-el-group:first-of-type {flex: 1;display: flex;flex-direction: column;}
.popup.addrequest .fluentform .col-same>.ff-t-column-1>.ff-el-group:first-of-type .ff-el-input--content {flex: 1; display: flex;flex-direction: column;}
.popup.addrequest .fluentform .col-same .file-upload {flex: 1;}

.show-mb {display: none !important;}

.single-page {
    padding-top: .6rem;
    padding-bottom: 1rem;
}

@media (min-width: 768px) {
    .wishlist .body .wrapper .item {
        width: 3rem;
        margin-right: .2rem;
    }
    .wishlist .body .wrapper .item:nth-of-type(4n) {
        margin-right: .2rem;
    }
    .wishlist .body .wrapper .item:nth-of-type(5n) {
        margin-right: 0rem;
    }
}

@media (max-width: 1199px) {
    .pro .condition .per .con .i,
    .pro .condition .filters .con .i,
    .pro .condition .con select {
        font-size: 12px;
    }
    .pro .condition .view .con .i {
        height: 26px;
        width: 36px;
    }

    body .account .table table th, body .account .table table td,
    .cart-page .table table th, .cart-page .table table td,
    .ac-side ul li a {
        font-size: 14px;
    }
    .ac-side .userinfo .name {
        font-size: 16px;
    }

    .cart-page .body,
    .checkout-page .body {
        font-size: 14px;
    }



}

@media (max-width: 767px) {
    .show-pc {display: none !important;}
    .show-mb {display: block !important;}
    .show-mb-flex{display: flex !important;}
    .rich-text h1 {font-size: 1.6em;}
    .rich-text h2 {font-size: 1.4em;}
    .rich-text h3 {font-size: 1.1em;}

    body .woocommerce table.cart td.actions .button {text-align: center;}
    body .woocommerce table.shop_table_responsive tr td, 
    body .woocommerce-page table.shop_table_responsive tr td {
        display: flex;
        gap: 10px;
        justify-content: space-between;
    }

    .popup {
        padding: 5% 0;
    }
    .popup .p-footer {
        padding: .2rem;
    }
    .popup .p-footer .btn {
        padding: .6em 1em;
    }

    .popup.addquote .subtitle,
    .popup.addquote .info {
        margin: .6em 0;
    }

    .account-content {
        flex-wrap: wrap;
    }
    .account-content .ac-side {
        width: 100%;
        margin-right: 0;
    }
    .account-content .ac-main {
        width: 100%;
    }
    .ac-cont {
        padding-top: .4rem;
    }

    .account .edit-form .f-col {
        flex-direction: column;
        gap: 0;
    }

    
    .cart-page .wc-block-cart table.wc-block-cart-items, 
    .cart-page .wc-block-cart table.wc-block-cart-items td, 
    .cart-page .wc-block-cart table.wc-block-cart-items th {
        margin-bottom: 10px;
    }

    .checkout-page .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title {
        padding: .4em 0;
        margin-top: 0;
    }
    .checkout-page .wc-block-checkout__actions {
        padding-top: 0;
    }

    .my-cart .table .remove {
        position: relative;
        width: 1em;
        height: 1em;
        background-size: contain;
    }
    .my-cart .table .product-subtotal .remove {
        display: none;
    }
}