body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,

/* structural elements 结构元素 */

dl,
dt,
dd,
ul,
ol,
li,

/* list elements 列表元素 */

pre,

/* text formatting elements 文本格式元素 */

fieldset,
lengend,
button,
input,
textarea,

/* form elements 表单元素 */

th,
td {
    /* table elements 表格元素 */
    margin: 0;
    padding: 0;
}


/* 设置默认字体 */

body,
button,
input,
select,
textarea {
    /* for ie */
    /*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
    font: 12px/1 Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif;
    /* 用 ascii 字符表示，使得在任何编码下都无问题 */
}

h1 {
    font-size: 18px;
    /* 18px / 12px = 1.5 */
}

h2 {
    font-size: 16px;
}

h3 {
    font-size: 14px;
}

h4,
h5,
h6 {
    font-size: 100%;
}

address,
cite,
dfn,
em,
var {
    font-style: normal;
}


/* 将斜体扶正 */

code,
kbd,
pre,
samp,
tt {
    font-family: "Courier New", Courier, monospace;
}


/* 统一等宽字体 */

small {
    font-size: 12px;
}


/* 小于 12px 的中文很难阅读，让 small 正常化 */


/* 重置列表元素 */

ul,
ol {
    list-style: none;
}


/* 重置文本格式元素 */

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

abbr[title],
acronym[title] {
    /* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
    border-bottom: 1px dotted;
    cursor: help;
}

q:before,
q:after {
    content: '';
}


/* 重置表单元素 */

legend {
    color: #000;
}


/* for ie6 */

fieldset,
img {
    border: none;
}


/* img 搭车：让链接里的 img 无边框 */


/* 注：optgroup 无法扶正 */

button,
input,
select,
textarea {
    font-size: 100%;
    /* 使得表单元素在 ie 下能继承字体大小 */
}


/* 重置表格元素 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* 重置 hr */

hr {
    border: none;
    height: 1px;
}


/* 让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁 */

html {
    /*overflow-y: scroll;*/
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    display: -moz-box;
    /* Firefox */
    display: -ms-flexbox;
    /* IE10 */
    display: -webkit-flex;
    /* Chrome, WebKit */
    display: box;
    display: flexbox;
    display: flex;
    flex-direction: column;
    font-family: "微软雅黑";
    transition: 0.3s all;
}

header {
    width: 100%;
    height: 82px;
    position: fixed;
    /*line-height: 82px;*/
    background: #444444;
    flex: 1;
    z-index: 11;
    min-width: 1280px;
    font-family: "黑体" !important;
    transition: 0.3s all;
}

header .header_box {
    width: 1109px;
    margin: 0 auto;
    height: 100%;
}

header .header_img {
    overflow: hidden;
    height: 100%;
    float: left;
}

header .header_nav {
    float: right;
    height: 100%;
}

header ul {
    height: 100%;
    line-height: 82px;
}

header ul li {
    float: left;
    color: #fff;
    font-size: 18px;
    letter-spacing: 2.4px;
    height: 100%;
    position: relative;
}

header ul .shu {
    padding: 0 30px;
}

header ul li a {
    float: left;
    cursor: pointer;
}

header ul li a:active {
    color: #fff;
}

header ul li a:visited {
    color: #fff;
}

header ul li a:link {
    color: #fff;
}

header ul li a:hover {
    color: #6391a0;
    text-decoration: none;
}

header .menuHeader {
    position: absolute;
    top: 86px;
    min-width: 200px;
    background: #444;
    line-height: 40px;
    text-align: right;
    right: 0;
    z-index: 9999;
}

header .menuHeader p {
    overflow: hidden;
    text-align: right;
    border-top: 1px solid #ccc;
}

header .menuHeader p a {
    display: block;
    text-align: right;
    float: right;
    padding: 0 10px;
}

article {
    width: 100%;
    height: 100%;
}

footer {
    width: 100%;
    min-width: 1280px;
    height: 86px;
    line-height: 86px;
    background: #444444;
    flex: 1;
    z-index: 1;
    overflow: hidden;
    transition: 0.3s all;
    padding-bottom: 10px;
}

footer .footerContent {
    height: 42px;
    line-height: 42px;
    width: 1172px;
    margin: 25px auto;
}

footer .footerContent .footLeft {
    width: 194px;
    height: 42px;
    overflow: hidden;
    float: left;
}

footer .footerContent .footLeft img {
    height: 42px;
}

footer .footerContent .footMid {
    width: 790px;
    height: 42px;
    float: left;
    font-size: 14px;
}

footer .footerContent .footMid .ftul {
    width: 374px;
    height: 21px;
    margin: 0 auto;
    overflow: hidden;
}

footer .footerContent .footMid .ftul li {
    color: #b7b7b7;
    float: left;
    height: 21px;
    line-height: 21px;
    text-align: center;
}

footer .footerContent .footMid .ftul li a:active {
    color: #b7b7b7;
}

footer .footerContent .footMid .ftul li a:visited {
    color: #b7b7b7;
}

footer .footerContent .footMid .ftul li a:link {
    color: #b7b7b7;
}

footer .footerContent .footMid .ftul li a:hover {
    color: #6391a0;
    text-decoration: none;
}

footer .footerContent .footMid .ftul .shu {
    padding: 0 18px;
    pointer-events: none;
}

footer .footerContent .footMid .fbul {
    width: 100%;
    margin: 0 auto;
    display: -moz-box;
    /* Firefox */
    display: -ms-flexbox;
    /* IE10 */
    display: -webkit-flex;
    /* Chrome, WebKit */
    display: box;
    display: flexbox;
    display: flex;
    display: -webkit-flex;
}
footer .footerContent .footMid .fbul{
    display: inline-block;
    text-align: center;
    width: 800px;
    padding: 0 100px;
}
footer .footerContent .footMid .fbul li {
    /*flex: 1;*/
    white-space: nowrap;
    color: #b7b7b7;
    float: left;
    height: 21px;
    line-height: 21px;
    text-align: center;
    display: inline-block;
    text-align: center;
    padding-left: 30px;
}

footer .footerContent .footMid .fbul .reference {
    color: #6391a0;
    padding: 0 17px;
}

footer .footerContent .footRight {
    width: 188px;
    float: left;
    height: 42px;
    overflow: hidden;
}

footer .footerContent .footRight .frbox {
    width: 188px;
    color: #b7b7b7;
    height: 42px;
    overflow: hidden;
    line-height: 42px;
}

footer .footerContent .footRight ul {
    width: 132px;
    height: 42px;
    float: right;
}

footer .footerContent .footRight ul li {
    float: left;
    display: -moz-box;
    /* Firefox */
    display: -ms-flexbox;
    /* IE10 */
    display: -webkit-flex;
    /* Chrome, WebKit */
    display: box;
    display: flexbox;
    display: flex;
    overflow: hidden;
    height: 42px;
    display: -webkit-flex;
    display: inline-flex;
}

footer .footerContent .footRight ul .ewm img {
    width: 20px;
    height: 20px;
    line-height: 42px;
    display: inline-block;
    align-self: center;
    -webkit-align-self: center;
}

footer .footerContent .footRight ul .sohu img {
    width: 28px;
    height: 20px;
    line-height: 42px;
    display: inline-block;
    align-self: center;
}

footer .footerContent .footRight ul li:nth-of-type(1) {
    margin-right: 5px;
}

footer .footerContent .footRight ul li:nth-of-type(2) {
    margin: 0 13px;
}

.clear {
    clear: both;
    overflow: hidden;
    height: 0;
}

.m-t-20 {
    margin-top: 20px;
}


/*article*/

article {
    
    width: 100%;
    height: 100%;
    flex: 10;
    min-width: 1280px;
    overflow: hidden;
    transition: 0.3s all;
}
/*@media only screen and (max-height:845px) {
    footer {
        display: none;
    }
    
}*/
.artbox {
    margin: 82px auto 0 auto;
    /*Firefox*/
    height: -moz-calc(100% - 82px - 98px);
    /*chrome safari*/
    height: -webkit-calc(100% - 82px - 98px);
    /*Standard */
    height: calc(100% - 82px - 98px);
    min-height: 770px;
    align-items: center;
    align-self: center;
    min-width: 1280px;
}

.artbox .xhl {
    position: absolute;
    left: 0;
    top: 0;
}

.artbox .jmms {
    position: absolute;
    left: 0;
    bottom: 0;
}

.artbox .shjr {
    position: absolute;
    right: 0;
    top: 0;
}

.artbox .bgbox {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../img/1.jpg) no-repeat;
    background-size: cover;
}

.artbox .bgbox img {
    min-width: 1280px;
    width: 100%;
    height: 100%;
    transform: rotateX(00deg);
    -webkit-transform: rotateX(0deg);
    animation: bgrotate 1s 0.5s forwards;
    -webkit-animation: bgrotate 1s 0.5s forwards;
    transition: 2s all;
    -webkit-transition: 2s all;
}

.essenceIndexBox {
    width: 100%;
    height: 100%;
    background: #f2e4dd;
}

.essenceIndexBox .place {
    width: 1366px;
    margin: 0 auto;
    overflow: hidden;
}

.essenceIndexBox .place .bottle {
    width: 380px;
    float: left;
    margin-top: 85px;
    margin-left: 140px;
}

.essenceIndexBox .place .essenceInfo {
    float: left;
    width: 550px;
    margin-top: 245px;
    text-align: left;
    position: relative;
}

.essenceIndexBox .place .essenceInfo p {
    color: #fff;
    font-size: 110px;
    font-weight: bold;
    text-shadow: 2px 2px 4px #999;
    margin-left: -33px;
}

.essenceIndexBox .place .essenceInfo span {
    display: inline-block;
    margin: 23px 40px;
    text-align: right;
    border-top: 2px solid #000;
    float: right;
    padding-top: 10px;
    font-size: 20px;
}

.essenceIndexBox .place .essenceInfo a {
    color: #5c5a57;
    font-size: 20px;
    background: #f6de74;
    padding: 10px 24px;
    text-align: center;
    margin: 0 auto;
    display: block;
    display: inline-block;
    float: right;
    margin-right: 40px;
    margin-top: 33px;
}

.essenceIndexBox .place .essenceInfo a img {
    height: 20px;
    margin: -3px;
    margin-left: 5px;
}

.essenceIndexBox .newEssence {
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
}

.essenceIndexBox .leafEssence {
    position: absolute;
    right: -140px;
    top: 135px;
    width: 170px;
}


/*@keyframes bgrotate{
	0%{
		transform: rotateX(90deg);
	}
	100%{
		transform: rotateX(0deg);
	}
}
@-moz-keyframes bgrotate{
	0%{
		transform: rotateX(90deg);
	}
	100%{
		transform: rotateX(0deg);
	}
}
@-ms-keyframes bgrotate{
	0%{
		transform: rotateX(90deg);
	}
	100%{
		transform: rotateX(0deg);
	}
}
@-webkit-keyframes bgrotate{
	0%{
		-webkit-transform: rotateX(90deg);
	}
	100%{
		-webkit-transform: rotateX(0deg);
	}
}*/

img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
    /* 以下两个属性目前并未支持，写在这里为了减少风险 */
    -o-user-select: none;
    user-select: none;
}

article .aboutBox {
    width: 1109px;
    height: 100%;
    min-width: 1280px;
    min-height: 720px;
    margin: 82px auto 0 auto;
}

article .aboutBox .title {
    text-align: center;
    font-size: 22px;
    color: #989898;
    margin-top: 55px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

article .aboutBox .content {
    overflow: hidden;
    margin-bottom: 50px;
}

article .aboutBox .titleLogo {
    width: 100%;
    text-align: center;
}

article .aboutBox .titleLogo img {
    margin: 0 auto;
    width: 200px;
    margin-bottom: 50px;
}

article .aboutBox .content .c_left,
article .aboutBox .content .c_right {
    float: left;
    width: 50%;
}

article .aboutBox .content .c_left {
    text-align: left;
    margin: 0 auto;
}

article .aboutBox .content .c_right {
    float: right;
    text-align: center;
}

article .aboutBox .content .c_left p {
    font-size: 16px;
    color: #666;
    font-family: '微软雅黑';
    width: 80%;
    margin: 0 10%;
    line-height: 30px;
    min-height: 30px;
    display: inline-block;
}

article .aboutBox .content .centerP {
    font-size: 16px;
    color: #666;
    font-family: '微软雅黑';
    margin: 0 5%;
    line-height: 30px;
    min-height: 30px;
    display: inline-block;
    letter-spacing: 1px;
}

article::-webkit-scrollbar {
    display: none;
}

article .aboutBox .content .c_l_ul,
article .aboutBox .content .c_r_ul {
    width: 49%;
    float: left;
    text-align: center;
}

article .aboutBox .content .c_r_ul li,
article .aboutBox .content .c_l_ul li {
    height: 210px;
}

article .aboutBox .content .c_r_ul li p,
article .aboutBox .content .c_l_ul li p {
    font-size: 16px;
    font-family: '微软雅黑';
    line-height: 50px;
    min-height: 30px;
    display: block;
    letter-spacing: 1px;
    padding-top: 50px;
    width: 75%;
    margin: 0 auto;
}

article .aboutBox .content .c_r_ul li span,
article .aboutBox .content .c_l_ul li span {
    font-size: 16px;
    color: #666;
    font-family: '微软雅黑';
    line-height: 30px;
    min-height: 30px;
    display: inline-block;
    letter-spacing: 1px;
    /*width: 391px;*/
    width: 409px;
}

article .aboutBox .content .c_r_ul li span,
article .aboutBox .content .c_r_ul li p {
    text-align: left;
}

article .aboutBox .content .c_l_ul li span,
article .aboutBox .content .c_l_ul li p {
    text-align: right;
}

article .aboutBox .content .border {
    float: left;
}

article .lastContent {
    padding-bottom: 92px;
    margin: 0 5% 50px 5%;
}

article .lastContent .c_right {
    display: -moz-box;
    /* Firefox */
    display: -ms-flexbox;
    /* IE10 */
    display: -webkit-flex;
    /* Chrome, WebKit */
    display: box;
    display: flexbox;
    display: flex;
    align-items: center;
    height: 212px;
}

article .lastContent .c_right p {
    font-size: 16px;
    color: #666;
    font-family: '微软雅黑';
    margin: 0 4.5%;
    line-height: 30px;
    min-height: 30px;
    display: inline-block;
    text-align: left;
}

article .lastContent .c_left img {
    text-align: center;
    margin: 0 auto;
}

.pink {
    color: #dc8183;
}

.green {
    color: #77be43;
}

.blue {
    color: #5ea8e1;
}

.wathet {
    color: #68c6b4;
}

.percent {
    width: 80%;
    margin: 0 auto;
}

article .maskbox {
    width: 100%;
    height: 100%;
    min-height: 720px;
}

.textBox {
    float: right;
}

article .maskbox .violetBox {
    background: #9490a1;
}

article .maskbox .violetBox h2 {
    font-size: 60px;
    color: #fff;
    margin-right: 250px;
    margin-top: 35px;
    margin-bottom: 20px;
}

article .maskbox .violetBox p {
    color: #696071;
    font-family: '微软雅黑';
    font-size: 16px;
    margin-bottom: 40px;
    text-align: right;
    margin-right: 250px;
}

article .maskbox .violetBox h4 {
    color: #fff;
    font-family: '微软雅黑';
    font-size: 24px;
    text-align: right;
    margin-right: 250px;
    letter-spacing: 4px;
    font-weight: 100;
}

article .maskbox .violetBox a {
    background: #fff;
    padding: 10px 24px;
    color: #777;
    display: inline-block;
    float: right;
    margin-right: 250px;
    margin-top: 45px;
    box-shadow: -1px 1px 5px #999;
}

article .maskbox .violetBox a:hover {
    box-shadow: -1px 1px 10px #636363;
}

article .maskbox .blueBox {
    background: #d5eaef;
    position: relative;
}

article .maskbox .blueBox p {
    float: right;
    position: absolute;
    bottom: 36px;
    right: 250px;
    font-size: 30px;
    color: #696071;
    font-family: '微软雅黑';
    text-align: right;
}

article .maskbox .blueBox,
article .maskbox .violetBox {
    width: 100%;
    height: 50%;
    min-height: 360px;
}

article .maskbox .inclined {
    position: absolute;
    left: 0;
    top: 0;
}

article .maskbox .inclined ul {
    width: 1600px;
    height: auto;
    overflow: hidden;
    -webkit-animation: maskRotate 1.5s 0.5s forwards;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transition: 1s all;
    transform: rotate(-45deg);
    margin-left: -400px;
    transition: 1s all;
    animation: maskRotate 1.5s 0.5s forwards;
    margin-top: -200px;
}

article .maskbox .inclined ul li:hover {
    transform: rotate(45deg);
    transition: .8s all;
}

article .maskbox .inclined ul li {
    float: left;
}

article .maskbox .inclined ul li img {
    width: 300px;
}

@keyframes maskRotate {
    from {
        transform: rotateZ(0deg);
    }
    to {
        transform: rotateZ(-45deg);
    }
}

@-moz-keyframes maskRotate {
    from {
        transform: rotateZ(0deg);
    }
    to {
        transform: rotateZ(-45deg);
    }
}

@-ms-keyframes maskRotate {
    from {
        transform: rotateZ(0deg);
    }
    to {
        transform: rotateZ(-45deg);
    }
}

@-webkit-keyframes maskRotate {
    from {
        -webkit-transform: rotateZ(0deg);
    }
    to {
        -webkit-transform: rotateZ(-45deg);
    }
}

@media only screen and (max-width:1366px) {
    article .maskbox .violetBox h2,
    article .maskbox .violetBox a,
    article .maskbox .violetBox p,
    article .maskbox .violetBox h4 {
        margin-right: 80px;
    }
    article .maskbox .blueBox p {
        right: 80px;
        font-size: 30px;
    }
    article .maskbox .blueBox,
    article .maskbox .violetBox {
        width: 100%;
        height: 50%;
        min-height: 360px;
    }
    article .maskbox .inclined ul li img {
        width: 200px;
    }
    article .maskbox .inclined ul {
        width: 1100px;
        margin-top: -100px;
        margin-left: -200px;
    }
    article .maskbox .violetBox h2 {
        margin-top: 29px;
        margin-bottom: 16px;
        font-size: 45px;
    }
    article .maskbox .violetBox p {
        font-size: 14px;
        margin-bottom: 35px;
    }
    article .maskbox .violetBox h4 {
        font-size: 20px;
    }
    article .maskbox .violetBox a {
        margin-top: 39px;
    }
    .bigewm {
        right: 70px !important;
    }
}

article .helpbox {
    width: 1109px;
    /*height: 100%;*/
    min-width: 1280px;
    min-height: 720px;
    max-height: 800px;
    margin: 0 auto;
    position: fixed;
    top: 82px;
    left: 20%;
    transition: 1s all;
}

article .helpbox .tab {
    width: 100%;
    overflow: hidden;
    margin: 50px auto;
}

article .helpbox .tab ul {
    width: 550px;
    margin: 0 auto;
    height: 30px;
    line-height: 30px;
}

article .helpbox .tab ul li {
    float: left;
    font-size: 24px;
    color: #989898;
    line-height: 50px;
}

article .helpbox .tab ul a:link {
    text-decoration: none;
    color: #989898;
}

article .helpbox .tab ul a:visited {
    color: #989898;
}

article .helpbox .tab ul a:active {
    color: #989898;
}

article .helpbox .tab ul a:valid {
    color: #989898;
}

article .helpbox .tab ul a:hover {
    color: #ccc;
}

.activeTab {
    color: #6391a0 !important;
    font-size: 30px !important;
    font-weight: bold;
    line-height: 26px;
}

article .helpbox .tab ul .shu {
    margin: 0 20px;
    font-size: 14px;
    line-height: 50px;
}

article .content {
    font-family: "微软雅黑";
    overflow: hidden;
    width: 1106px;
    margin: 0 auto;
}

article .content .sideUl {
    float: left;
    width: 300px;
    margin: 0px 4% 0 3%;
}

.activeSide {
    color: #6391a0 !important;
    font-size: 21px !important;
    list-style: disc;
}

article .content .sideUl li {
    font-size: 16px;
    color: #7f7f7f;
    line-height: 44px;
}


/*article .content .sideUl a:link{
	color: #7f7f7f;
	text-decoration: none;
}
article .content .sideUl a:visited{
	color: #7f7f7f;
}*/


/*article .content .sideUl a:active{
	color: #7f7f7f;
}*/

article .content .sideUl a {
    text-decoration: none;
}

article .content .sideUl a:valid {
    color: #7f7f7f;
}

article .content .sideUl a:hover {
    color: #ccc;
}

article .contentBox {
    float: left;
    width: 560px;
    overflow: hidden;
}

article .contentBox ul {
    background: #ecf1f3;
    padding: 10px 30px;
    overflow-y: scroll;
    max-height: 520px;
    transition: 1s all;
}

@media only screen and (max-width:1366px) {
    article .contentBox ul {
        max-height: 400px;
    }
    article .helpbox {
        left: 5%;
    }
}

@media only screen and (max-width:1900px) {
    article .contentBox ul {
        max-height: 480px;
    }
}

@media only screen and (max-width:1800px) {
    article .contentBox ul {
        max-height: 460px;
    }
}

@media only screen and (max-width:1700px) {
    article .contentBox ul {
        max-height: 440px;
    }
}

@media only screen and (max-width:1600px) {
    article .contentBox ul {
        max-height: 420px;
    }
}

@media only screen and (max-width:1500px) {
    article .contentBox ul {
        max-height: 400px;
    }
}

article .contentBox ul li h2 {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 100;
}

article .contentBox ul li p {
    font-size: 16px;
    color: #666;
    line-height: 25px;
}

article .contentBox ul li a:link {
    color: #7f7f7f;
    text-decoration: none;
}

article .contentBox ul li a:visited {
    color: #7f7f7f;
}

article .contentBox ul li a:active {
    color: #7f7f7f;
}

article .contentBox ul li a:valid {
    color: #7f7f7f;
}

article .contentBox ul li a:hover {
    color: #999;
}

article .contentBox ul li:last-child {
    margin-bottom: 500px;
}

article .contentBox ul li {
    margin-bottom: 30px;
}


/*关于动画*/


/*.c_l_ul li img:nth-child(odd),.c_r_ul li img:nth-child(odd){
	opacity: 0;
}
.c_l_ul li img:nth-of-type(1),.c_r_ul li img:nth-of-type(1){
	animation:odd 1s 0.5s forwards;
	transition:1s all;
}
@keyframes odd{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}*/


/*敏感页面*/

article .intensiveBox {
    position: relative;
    margin: 0 auto;
}

.widthAt {
    width: 1150px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

article .intensiveTopWhite {
    margin-top: 100px;
    min-height: 900px;
    background: #fff;
}

article .intensiveTopgray {
    width: 100%;
    background: #ccc;
    min-height: 200px;
}

article .intensiveTopPic {
    margin: auto;
    position: absolute;
    top: 200px;
    left: 0;
    bottom: 0;
    right: 0;
}

article .TopWhiteH2 {
    font-size: 54px;
    color: #555555;
    font-family: '微软雅黑';
    letter-spacing: 3px;
}

article .TopWhiteH3 {
    font-size: 30px;
    color: #555555;
    margin: 20px 0;
    font-family: '微软雅黑';
    font-weight: 100;
    letter-spacing: 3px;
}

article .TopWhiteimg {
    margin-top: 10px;
    padding: 35px;
}

article .intensiveMidgraycontent {
    background: #ccc;
}

article .graycontentB {
    font-size: 22px;
    font-weight: bold;
    color: #555;
    padding: 10px 0;
    display: block;
    margin-top: 20px;
}

article .graycontentP {
    font-size: 18px;
    font-weight: 100;
    color: #555;
    margin-top: 5px;
}

article .graycontentB2 {
    font-weight: lighter;
    color: #fff;
    font-size: 32px;
    margin-top: 40px;
    display: block;
}

article .graycontentB2 span {
    letter-spacing: 2px;
}

article .graycontentP2 {
    font-weight: bold;
    color: #fff;
    font-size: 49px;
    margin-top: 10px;
    text-shadow: -3px 2px 4px #999;
    display: inline-block;
    font-family: '微软雅黑';
    margin-bottom: 10px;
    padding: 15px 0 30px 0;
    letter-spacing: 4px;
}

article .intensiveMidgraycontent {
    box-shadow: 0px -31px 27px -28px rgba(153, 153, 153, 0.82) inset
}

.flexBox {
    display: -moz-box;
    /* Firefox */
    display: -ms-flexbox;
    /* IE10 */
    display: -webkit-flex;
    /* Chrome, WebKit */
    display: box;
    display: flexbox;
    display: flex;
}

.flexBox .grayCard {
    background: #e8e8e8;
    margin: 38px;
    box-shadow: 1px 2px 10px #999;
    max-width: 26.5%\9\0;
    /* ie9 */
    float: left;
    /* ie9 */
}

.flexBox .grayCard img {
    padding: 30px;
}

.flexBox .grayCard .grayCardTitle {
    font-size: 18px;
    color: #555;
    border-bottom: 2px solid #767676;
    margin: 0 auto;
    padding-bottom: 5px;
    margin-bottom: 5px;
    display: inline-block;
    white-space: nowrap;
    padding: 0px 15px 5px 15px;
}

.flexBox .grayCard .grayCardB {
    font-size: 22px;
    color: #555;
    display: block;
}

.flexBox .grayCard .grayCardP {
    width: 80%;
    margin: 0 auto;
    font-size: 17px;
    letter-spacing: 0px;
    color: #555;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 30px;
    line-height: 25px;
}

.cardLastMess {
    font-size: 74px;
    color: #fff;
    text-shadow: -5px 2px 7px #868686;
    margin-top: 40px;
    width: 100%;
    font-weight: bold;
}

article .intensiveProductBox {
    overflow: hidden;
    display: -moz-box;
    /* Firefox */
    display: -ms-flexbox;
    /* IE10 */
    display: -webkit-flex;
    /* Chrome, WebKit */
    display: flexbox;
    display: flex;
    padding-bottom: 60px;
    border-bottom: 1px solid #ccc;
}

article .intensiveProductBox .intensiveProductImg {
    float: left;
    width: 50%;
    flex: 9;
}

article .intensiveProductBox .intensiveProductText {
    float: left;
    width: 50%;
    flex: 8;
    align-self: center;
}

article .intensiveProductBox .intensiveProductText h3 {
    font-size: 30px;
    color: #87acb8;
    margin-top: 100px;
    font-weight: bold;
}

article .intensiveProductBox .intensiveProductText .sale {
    color: #555;
    font-size: 16px;
    margin: 60px 0 10px 0;
    display: block;
}

article .intensiveProductBox .intensiveProductText p {
    color: #555;
    font-size: 24px;
    margin: 0px 0 25px 0;
}

article .intensiveProductBox .intensiveProductText h6 {
    color: #676767;
    font-size: 18px;
    font-weight: 100;
    line-height: 25px;
}

.flex {
    display: -ms-flexbox;
    /* IE10 */
    display: -webkit-flex;
    /* Chrome, WebKit */
    display: box;
    display: flexbox;
    display: flex;
}

.tll {
    text-align: left;
}

.tlr {
    flex: 1;
    text-align: left;
    margin-left: 160px;
    margin-left: 0px\9\0;
}

.noBorder {
    border: none;
}

article .intensiveBotBox {
    background: url(../img/mj/o.jpg) no-repeat;
    min-height: 597px;
}

article .intensiveBotBox .intensiveBotLeft {
    width: 700px;
    float: left;
    margin: 160px 400px 0 400px;
}

article .intensiveBotBox .intensiveBotLeft .intensiveBotL_R {}

article .intensiveBotBox .intensiveBotLeft .intensiveBotL_R ul {
    display: -moz-box;
    /* Firefox */
    display: -ms-flexbox;
    /* IE10 */
    display: -webkit-flex;
    /* Chrome, WebKit */
    display: box;
    display: flexbox;
    display: flex;
    margin-top: 80px;
}

article .intensiveBotBox .intensiveBotLeft .intensiveBotL_R .intensiveBotL_R_title {
    font-size: 50px;
    color: #87acb8;
    font-weight: bold;
    text-align: center;
}

article .intensiveBotBox .intensiveBotLeft .intensiveBotL_R ul li {
    flex: 1;
    text-align: center;
    float: left;
    padding: 0 30px\9\0;
}

article .intensiveBotBox .intensiveBotLeft .intensiveBotL_R ul li p {
    font-size: 18px;
    width: 80px;
    word-break: break-all;
    margin: 0 auto;
    color: #555;
    line-height: 23px;
    margin-top: 30px;
}

.p-80 {
    padding: 80px 0;
}


/*面膜详情页面*/

article .maskdetailsbox {
    overflow: hidden;
}

.w-1366 {
    width: 1366px;
    margin: 0 auto;
    overflow: hidden;
}

.absolute {
    position: absolute;
    top: 0;
    overflow: initial;
}

article .maskdetailsbox .maskdetails_top .mdtop_img {
    float: left;
    position: absolute;
    top: 0;
    left: 0;
}

article .maskdetailsbox .maskdetails_top {
    position: relative;
    width: 100%;
    min-height: 700px;
    overflow: hidden;
    transition: .3s all;
    background: url(../img/m/banner.jpg);
}

article .maskdetailsbox .md_top_info {
    border-left: 4px solid #769eab;
    padding-left: 20px;
    margin-top: 240px;
    float: right;
    line-height: 60px;
    margin-right: -40px;
}

@media only screen and (max-width:1444px) {
    article .maskdetailsbox .maskdetails_top .mdtop_img {
        left: -100px;
    }
    article .maskdetailsbox .md_top_info {
        margin-right: 100px;
    }
    .maskdetails_top .absolute {
        position: initial;
        overflow: hidden;
    }
    article .intensiveBotBox .intensiveBotLeft {
        margin: 160px 400px 0 300px !important;
    }
}

article .maskdetailsbox .md_top_info h3 {
    font-size: 34px;
    font-weight: 300;
    color: #373737;
    margin-bottom: 60px;
    line-height: 45px;
}

article .maskdetailsbox .md_top_info b {
    display: block;
    font-size: 28px;
    color: #353535;
}

article .maskdetailsbox .md_top_info b:last-child {
    margin: 0;
}

article .maskdetailsbox .maskdetails_standard {
    clear: both;
    transition: .3s all;
    margin-top: 50px;
}

article .maskdetailsbox .md_standard_img {
    width: 45%;
    float: left;
}

article .maskdetailsbox .md_standard_img img {
    width: 320px;
    float: right;
    margin: 40px 100px;
}

article .maskdetailsbox .md_standard_info {
    width: 55%;
    float: left;
}

article .maskdetailsbox .md_standard_p {
    background: #efefef;
    width: 500px;
    height: 30px;
    padding: 0 1px;
    padding-left: 7px;
    margin-left: 50px;
}

article .maskdetailsbox .md_standard_p p {
    background: #FFFFFF;
    font-size: 20px;
    line-height: 30px;
    width: 230px;
    text-align: center;
}

article .maskdetailsbox .md_standard_info ul {
    margin: 50px 50px;
}

article .maskdetailsbox .md_standard_info ul li {
    margin: 10px 0;
    overflow: hidden;
}

article .maskdetailsbox .md_standard_info ul li label {
    font-size: 20px;
    font-weight: bold;
    color: #676767;
    width: 100px;
    text-align: right;
    display: block;
    float: left;
    line-height: 25px;
}

article .maskdetailsbox .md_standard_info ul li span {
    display: block;
    float: left;
    line-height: 25px;
    font-size: 16px;
    width: 400px;
    color: #676767;
}

article .maskdetailsbox .maskdetails_standard .maskdetails_standard_background .bgwhite {
    height: 270px;
    background: white;
}

article .maskdetailsbox .maskdetails_standard .maskdetails_standard_background .bgefe {
    height: 240px;
    background: #EFEFEF;
}

article .maskdetailsbox .mask_effect {
    text-align: left;
    height: 530px;
}

article .maskdetailsbox .mask_effect .mask_effct_left {
    width: 50%;
    float: left;
}

article .maskdetailsbox .mask_effect .mask_effct_left .effct_left_title {
    background: #769eab;
    font-size: 20px;
    padding-left: 5px;
    line-height: 45px;
    margin: 60px 0 0 0;
    margin-left: 130px;
}

article .maskdetailsbox .mask_effect .mask_effct_left .effct_left_title p {
    background: #fff;
    font-size: 40px;
    padding-left: 15px;
    font-weight: bold;
}

article .maskdetailsbox .mask_effect .mask_effct_right {
    width: 50%;
    float: left;
}

article .maskdetailsbox .mask_effect .mask_effct_right img {
    float: right;
}

article .maskdetailsbox .mask_effect .mask_effct_left .effct_left_info {
    margin: 100px 0 50px 100px;
}

article .maskdetailsbox .mask_effect .mask_effct_left .effct_left_info ul {
    margin-left: 100px;
}

article .maskdetailsbox .mask_effect .mask_effct_left .effct_left_info ul li {
    overflow: hidden;
    width: 700px;
    line-height: 41px;
    text-align: right;
}

article .maskdetailsbox .mask_effect .mask_effct_left .effct_left_info ul li span {
    width: 500px;
    display: block;
    float: left;
    font-size: 21px;
    color: #666666;
}

.effct_span_1 {
    line-height: 22px;
}

.effct_span_2 {
    line-height: 45px;
}

.effct_span_3 {
    line-height: 75px;
}

article .maskdetailsbox .mask_effect .mask_effct_left .effct_left_info ul li img {
    width: 180px;
    float: right;
}

article .maskdetailsbox .mask_ingredient {
    background: #e3e3e1;
}

article .maskdetailsbox .mask_ingredient .mask_ingredient_title {
    text-align: right;
}

article .maskdetailsbox .mask_ingredient .mask_ingredient_title p {
    font-size: 40px;
    font-weight: bold;
    border-right: 5px solid #fff;
    margin: 80px 0 10px 0;
    padding-right: 10px;
}

article .maskdetailsbox .mask_ingredient .mask_ingredient_info {
    margin-top: 10px;
}

article .maskdetailsbox .mask_ingredient .mask_ingredient_info p {
    color: #666666;
    font-size: 21px;
    line-height: 35px;
}

article .maskdetailsbox .mask_feature .mask_feature_title {
    width: 160px;
    font-weight: bold;
    background: #769eab;
    padding: 0px 5px;
    margin: 80px auto;
    text-align: center;
    line-height: 40px;
}

article .maskdetailsbox .mask_feature .mask_feature_title p {
    font-size: 35px;
    background: #fff;
    padding: 0 10px;
}

article .maskdetailsbox .mask_feature .mask_feature_info {
    width: 100%;
    overflow: hidden;
    margin-bottom: 50px;
}

article .maskdetailsbox .mask_feature .mask_feature_info ul {
    width: 948px;
    margin: 0 auto;
    overflow: hidden;
}

article .maskdetailsbox .mask_feature .mask_feature_info ul li {
    float: left;
}

article .maskdetailsbox .mask_use {
    background: #d3d3d3;
    overflow: hidden;
}

article .maskdetailsbox .mask_use .mask_use_info {
    overflow: hidden;
    width: 1366px;
    margin: 0 auto;
}

article .maskdetailsbox .mask_use .mask_use_info .mask_use_title {
    font-size: 40px;
    font-weight: bold;
    border-left: 4px solid #fff;
    padding-left: 15px;
    margin-bottom: 50px;
    line-height: 50px;
    margin-left: -20px;
}

article .maskdetailsbox .mask_use .mask_use_info .mask_use_title p {
    font-size: 35px;
    color: #000000;
}

article .maskdetailsbox .mask_use .mask_use_info .use_info_left {
    float: left;
    width: 50%;
    margin-top: 60px;
    margin-left: 10%;
}

article .maskdetailsbox .mask_use .mask_use_info .use_info_left li {
    margin-left: 60px;
    margin-bottom: 40px;
    line-height: 30px;
}

article .maskdetailsbox .mask_use .mask_use_info .use_info_left li h5 {
    color: #666666;
    font-size: 22px;
    margin: 5px 0;
}

article .maskdetailsbox .mask_use .mask_use_info .use_info_left li p {
    font-size: 22px;
    color: #666666;
}

article .maskdetailsbox .mask_use .mask_use_info .use_info_right {
    float: left;
    width: 40%;
}

article .maskdetailsbox .mask_use .mask_use_info .use_info_right img {
    float: right;
}


/*         精华详情页                            */

article .essenceBox {}

article .essenceBox .essenceBanner {
    background: url(../img/j/bannerBg.jpg) no-repeat;
    overflow: hidden;
    background-size: 100% 100%;
    min-height: 700px;
}

article .essenceBox .essenceBanner .bannerText {
    width: 50%;
    float: left;
    line-height: 80px;
    white-space: nowrap;
}

article .essenceBox .essenceBanner .bannerText p {
    text-align: center;
    margin-top: 250px;
    font-size: 45px;
    color: #fff;
    margin-left: 300px;
}

article .essenceBox .essenceBanner .bannerText b {
    display: block;
    line-height: 50px;
    text-align: center;
    font-size: 43px;
    color: #fff;
    margin-left: 300px;
}

article .essenceBox .essenceBanner .bannerPro {
    width: 50%;
    float: left;
}

article .essenceBox .essenceBanner .bannerPro img {
    width: 800px;
    margin-left: -200px;
    margin-top: 50px;
}

article .essenceBox .essenceDetail {
    overflow: hidden;
}

article .essenceBox .detailbox {
    margin: 100px auto;
}

article .essenceBox .detailPro {
    width: 45%;
    float: left;
    position: relative;
    min-width: 45%;
    min-height: 400px;
}

article .essenceBox .detailPro .imgpro {
    position: absolute;
    top: 50px;
    left: 200px;
    z-index: 11;
}

article .essenceBox .detailPro span {
    width: 240px;
    height: 240px;
    background: #efefef;
    display: block;
    position: absolute;
    top: 250px;
    left: 130px;
}

article .essenceBox .detailInfo {
    width: 55%;
    float: left;
    text-align: left;
}

article .essenceBox .detailInfo .detailtitle {
    background: #efefef;
    width: 600px;
    height: 35px;
    margin: 10px 0;
}

article .essenceBox .detailInfo .detailtitle p {
    background: #fff;
    font-size: 27px;
    display: inline-block;
    margin-left: 5px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 35px;
    color: #4b4b4b;
}

article .essenceBox .detailInfo .detailParameter {
    margin-top: 50px;
    margin-left: 20px;
}

article .essenceBox .detailInfo li {
    line-height: 36px;
    font-size: 14px;
    overflow: hidden;
}

article .essenceBox .detailInfo li label {
    color: #676767;
    font-weight: bold;
    font-size: 16px;
    text-align: right;
    width: 80px;
    display: inline-block;
    float: left;
}

article .essenceBox .detailInfo li span {
    color: #676767;
    width: 450px;
    float: left;
}

article .essenceBox .essenceRotate {
    position: relative;
}

article .essenceBox .essenceRotate .rotateTitle img {
    width: 100%;
    min-height: 400px;
}

article .essenceBox .essenceRotate .r_title {
    width: 100%;
    position: absolute;
    top: 200px;
}

article .essenceBox .essenceRotate .r_title p {
    text-align: center;
    font-size: 37px;
    color: #fff;
    margin-left: 50px;
}

article .essenceBox .essenceRotate .r_title p span {
    font-weight: bold;
}

article .essenceBox .essenceRotate .rotateBox {
    min-height: 700px;
}

article .essenceBox .essenceRotate .rotateBox .positionBox {
    position: absolute;
    top: 350px;
}

article .essenceBox .essenceRotate .rotateBox .positionBox .rotatecard {
    width: 360px;
    height: 600px;
    overflow: hidden;
    background: #e2e2e2;
    float: left;
}

article .essenceBox .essenceRotate .rotateBox .positionBox .rotatecard img {
    width: 320PX;
    margin: 20px;
    border: 1px solid #fff;
}

article .essenceBox .essenceRotate .rotateBox .positionBox .rotatecard b {
    color: #676767;
    font-size: 20px;
    margin-top: 20px;
    display: block;
}

article .essenceBox .essenceRotate .rotateBox .positionBox .rotatecard p {
    color: #676767;
    font-size: 20px;
    line-height: 40px;
}

article .essenceBox .essenceRotate .rotateBox .positionBox .rotatecard span {
    display: block;
    font-size: 17px;
    color: #676767;
    width: 300px;
    margin: 0 auto;
    margin-top: 20px;
    letter-spacing: 0px;
    line-height: 22px;
}

.prevCard {
    margin-left: 50px;
}

.nextCard {
    margin-left: -100px;
}

.activeCard {
    width: 420px !important;
    height: 666px !important;
    background: #efefef !important;
    perspective: 500px;
    -webkit-perspective: 500px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transform: translateY(-35px) translateX(-50px);
    -webkit-transform: translateY(-35px) translateX(-50px);
}

.activeCard img {
    width: 380px !important;
}

article .essenceBox .essenceIntroduce {
    position: relative;
    min-height: 574px;
    overflow: hidden;
}

article .essenceBox .essenceIntroduce img:first-child {
    transition: .3s all;
    position: absolute;
    left: 0;
    top: 0;
}

article .essenceBox .essenceIntroduce img:last-child {
    transition: .3s all;
    position: absolute;
    right: 0;
    top: 0;
}

@media only screen and (max-width: 1550px) {
    article .essenceBox .essenceIntroduce img:first-child {
        left: -140px !important;
    }
    article .essenceBox .essenceIntroduce img:last-child {
        right: -100px !important;
    }
}

article .essenceBox .essenceIntroduce .introduceBox {
    background: #efefef;
    height: 400px;
    overflow: hidden;
    margin-top: 100px;
}

article .essenceBox .essenceIntroduce .introduceBox .widthAt {
    margin-top: 100px;
}

article .essenceBox .essenceIntroduce .introduceBox .widthAt h2 {
    color: #676767;
    font-size: 45px;
}

article .essenceBox .essenceIntroduce .introduceBox .widthAt ul {
    margin: 0 auto;
    width: 780px;
    overflow: hidden;
    margin-top: 40px;
}

article .essenceBox .essenceIntroduce .introduceBox .widthAt ul li {
    background: #fff;
    margin: 20px;
    height: 80px;
    width: 200px;
    float: left;
    box-shadow: 1px 1px 10px #ccc;
    float: left;
    display: -moz-box;
    /* Firefox */
    display: -ms-flexbox;
    /* IE10 */
    display: -webkit-flex;
    /* Chrome, WebKit */
    display: box;
    display: flexbox;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

article .essenceBox .essenceIntroduce .introduceBox .widthAt ul li p {
    color: #676767;
    font-size: 21px;
    flex: 1;
    align-self: center;
    line-height: 40px;
}

article .essenceBox .essenceIntroduce .introduceBox .widthAt ul li span {
    color: #676767;
    font-size: 21px;
    flex: 1;
}

.midIntroduceLi {
    flex-direction: row !important;
}

.midIntroduceLi p {
    align-self: center !important;
}

article .essenceBox .essenceExperience {
    overflow: hidden;
    margin-bottom: 100px;
}

article .essenceBox .essenceExperience .experienceTitle {}

article .essenceBox .essenceExperience .experienceTitle p {
    color: #676767;
    font-size: 45px;
    text-align: center;
    margin: 100px;
    font-weight: bold;
    letter-spacing: 2px;
}

article .essenceBox .essenceExperience .experienceTw {
    width: 1200px;
    margin-bottom: 150px;
    overflow: hidden;
    margin: 0 auto;
}

article .essenceBox .essenceExperience .experienceTw li {
    width: 400px;
    float: left;
    position: relative;
}

article .essenceBox .essenceExperience .experienceTw li span {
    position: absolute;
    top: 150px;
    right: 25px;
    font-size: 18px;
    width: 128px;
    line-height: 24px;
    color: #676767;
}


/*   safari   */

@media all and (-webkit-min-device-pixel-ratio:0) {
    /* select{ [;这里单独设置Safari的样式] } */
    .flexBox .grayCard {
        max-width: 26.5%;
    }
    .tlr {
        margin-left: 0px;
    }
    article .intensiveBotBox .intensiveBotLeft .intensiveBotL_R ul li {
        padding: 0 30px;
    }
    .helpbox {
        position: initial !important;
        margin-top: 82px !important;
    }
}