@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>div {
    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 .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>div {
        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;
}

.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: 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: 80%;
    max-height: 80%;
}

.home-pro .item .tit {
    color: #134069;
    height: .44rem;
    line-height: 1.6;
    margin-top: .1rem;
}

.home-content {
    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 {
    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 .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 {
    width: 1.6rem;
    height: 1.6rem;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.pro .body .wrapper .item .pic img {
    max-width: 100%;
    max-height: 100%;
}

.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%;
}

.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 {
    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: .15rem;
}

.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%;
    padding-left: .1rem;
}

.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>a {
    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: .6rem;
    font-weight: bold;
    font-size: .2rem;
    font-family: 'Times-New-Roman';
    z-index: 9;
}

.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 a {
    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 span {
    font-family: 'AlibabaPuHuiTi-ExtraBold';
    font-size: .2rem;
}

.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>a:hover,
    .pro-detail .r-con .pay-info .pay-con a: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 h2 {font-size: 1.5em;margin-top: .83em;margin-bottom: .83em;}
.rich-text h3 {font-size: 1.17em;margin-top: 1em;margin-bottom: 1em;}
.rich-text h4 {margin-top: 1.33em;margin-bottom: 1.33em;}
.rich-text h5 {margin-top: 1.67em;margin-bottom: 1.67em;}
.rich-text h6 {margin-top: 2.33em;margin-bottom: 2.33em;}
.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;
}

.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%);
}


.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; }

.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: .12rem;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; }

@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;
    }
}