@charset "UTF-8";

 .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
@-webkit-keyframes bounce {
0%, 20%, 50%, 80%, 100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
40% {
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
60% {
-webkit-transform: translateY(-15px);
transform: translateY(-15px);
}
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
40% {
-webkit-transform: translateY(-30px);
-ms-transform: translateY(-30px);
transform: translateY(-30px);
}
60% {
-webkit-transform: translateY(-15px);
-ms-transform: translateY(-15px);
transform: translateY(-15px);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
}
@-webkit-keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes pulse {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
100% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes shake {
0%, 100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translateX(-10px);
transform: translateX(-10px);
}
20%, 40%, 60%, 80% {
-webkit-transform: translateX(10px);
transform: translateX(10px);
}
}
@keyframes shake {
0%, 100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translateX(-10px);
-ms-transform: translateX(-10px);
transform: translateX(-10px);
}
20%, 40%, 60%, 80% {
-webkit-transform: translateX(10px);
-ms-transform: translateX(10px);
transform: translateX(10px);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate(15deg);
transform: rotate(15deg);
}
40% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
}
60% {
-webkit-transform: rotate(5deg);
transform: rotate(5deg);
}
80% {
-webkit-transform: rotate(-5deg);
transform: rotate(-5deg);
}
100% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate(15deg);
-ms-transform: rotate(15deg);
transform: rotate(15deg);
}
40% {
-webkit-transform: rotate(-10deg);
-ms-transform: rotate(-10deg);
transform: rotate(-10deg);
}
60% {
-webkit-transform: rotate(5deg);
-ms-transform: rotate(5deg);
transform: rotate(5deg);
}
80% {
-webkit-transform: rotate(-5deg);
-ms-transform: rotate(-5deg);
transform: rotate(-5deg);
}
100% {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
}
}
.swing {
-webkit-transform-origin: top center;
-ms-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
10%, 20% {
-webkit-transform: scale(0.9) rotate(-3deg);
transform: scale(0.9) rotate(-3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale(1.1) rotate(3deg);
transform: scale(1.1) rotate(3deg);
}
40%, 60%, 80% {
-webkit-transform: scale(1.1) rotate(-3deg);
transform: scale(1.1) rotate(-3deg);
}
100% {
-webkit-transform: scale(1) rotate(0);
transform: scale(1) rotate(0);
}
}
@keyframes tada {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
10%, 20% {
-webkit-transform: scale(0.9) rotate(-3deg);
-ms-transform: scale(0.9) rotate(-3deg);
transform: scale(0.9) rotate(-3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale(1.1) rotate(3deg);
-ms-transform: scale(1.1) rotate(3deg);
transform: scale(1.1) rotate(3deg);
}
40%, 60%, 80% {
-webkit-transform: scale(1.1) rotate(-3deg);
-ms-transform: scale(1.1) rotate(-3deg);
transform: scale(1.1) rotate(-3deg);
}
100% {
-webkit-transform: scale(1) rotate(0);
-ms-transform: scale(1) rotate(0);
transform: scale(1) rotate(0);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
0% {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
15% {
-webkit-transform: translateX(-25%) rotate(-5deg);
transform: translateX(-25%) rotate(-5deg);
}
30% {
-webkit-transform: translateX(20%) rotate(3deg);
transform: translateX(20%) rotate(3deg);
}
45% {
-webkit-transform: translateX(-15%) rotate(-3deg);
transform: translateX(-15%) rotate(-3deg);
}
60% {
-webkit-transform: translateX(10%) rotate(2deg);
transform: translateX(10%) rotate(2deg);
}
75% {
-webkit-transform: translateX(-5%) rotate(-1deg);
transform: translateX(-5%) rotate(-1deg);
}
100% {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
}
@keyframes wobble {
0% {
-webkit-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%);
}
15% {
-webkit-transform: translateX(-25%) rotate(-5deg);
-ms-transform: translateX(-25%) rotate(-5deg);
transform: translateX(-25%) rotate(-5deg);
}
30% {
-webkit-transform: translateX(20%) rotate(3deg);
-ms-transform: translateX(20%) rotate(3deg);
transform: translateX(20%) rotate(3deg);
}
45% {
-webkit-transform: translateX(-15%) rotate(-3deg);
-ms-transform: translateX(-15%) rotate(-3deg);
transform: translateX(-15%) rotate(-3deg);
}
60% {
-webkit-transform: translateX(10%) rotate(2deg);
-ms-transform: translateX(10%) rotate(2deg);
transform: translateX(10%) rotate(2deg);
}
75% {
-webkit-transform: translateX(-5%) rotate(-1deg);
-ms-transform: translateX(-5%) rotate(-1deg);
transform: translateX(-5%) rotate(-1deg);
}
100% {
-webkit-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%);
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes bounceIn {
0% {
opacity: 0;
-webkit-transform: scale(.3);
transform: scale(.3);
}
50% {
opacity: 1;
-webkit-transform: scale(1.05);
transform: scale(1.05);
}
70% {
-webkit-transform: scale(.9);
transform: scale(.9);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes bounceIn {
0% {
opacity: 0;
-webkit-transform: scale(.3);
-ms-transform: scale(.3);
transform: scale(.3);
}
50% {
opacity: 1;
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05);
}
70% {
-webkit-transform: scale(.9);
-ms-transform: scale(.9);
transform: scale(.9);
}
100% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(30px);
transform: translateY(30px);
}
80% {
-webkit-transform: translateY(-10px);
transform: translateY(-10px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes bounceInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(30px);
-ms-transform: translateY(30px);
transform: translateY(30px);
}
80% {
-webkit-transform: translateY(-10px);
-ms-transform: translateY(-10px);
transform: translateY(-10px);
}
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(30px);
transform: translateX(30px);
}
80% {
-webkit-transform: translateX(-10px);
transform: translateX(-10px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes bounceInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(30px);
-ms-transform: translateX(30px);
transform: translateX(30px);
}
80% {
-webkit-transform: translateX(-10px);
-ms-transform: translateX(-10px);
transform: translateX(-10px);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(-30px);
transform: translateX(-30px);
}
80% {
-webkit-transform: translateX(10px);
transform: translateX(10px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes bounceInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(-30px);
-ms-transform: translateX(-30px);
transform: translateX(-30px);
}
80% {
-webkit-transform: translateX(10px);
-ms-transform: translateX(10px);
transform: translateX(10px);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
80% {
-webkit-transform: translateY(10px);
transform: translateY(10px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes bounceInUp {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(-30px);
-ms-transform: translateY(-30px);
transform: translateY(-30px);
}
80% {
-webkit-transform: translateY(10px);
-ms-transform: translateY(10px);
transform: translateY(10px);
}
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
25% {
-webkit-transform: scale(.95);
transform: scale(.95);
}
50% {
opacity: 1;
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
100% {
opacity: 0;
-webkit-transform: scale(.3);
transform: scale(.3);
}
}
@keyframes bounceOut {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
25% {
-webkit-transform: scale(.95);
-ms-transform: scale(.95);
transform: scale(.95);
}
50% {
opacity: 1;
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
100% {
opacity: 0;
-webkit-transform: scale(.3);
-ms-transform: scale(.3);
transform: scale(.3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
}
@keyframes bounceOutDown {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
@keyframes bounceOutLeft {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
}
@keyframes bounceOutRight {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
@keyframes bounceOutUp {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
}
@keyframes fadeOutDown {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
}
@keyframes fadeOutDownBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-20px);
transform: translateX(-20px);
}
}
@keyframes fadeOutLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
@keyframes fadeOutLeftBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(20px);
transform: translateX(20px);
}
}
@keyframes fadeOutRight {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
}
@keyframes fadeOutRightBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
}
@keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
@keyframes fadeOutUpBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
0% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
100% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
0% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
-ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
-ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
-ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
100% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
-ms-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateX(-10deg);
transform: perspective(400px) rotateX(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateX(10deg);
transform: perspective(400px) rotateX(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
}
@keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotateX(90deg);
-ms-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateX(-10deg);
-ms-transform: perspective(400px) rotateX(-10deg);
transform: perspective(400px) rotateX(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateX(10deg);
-ms-transform: perspective(400px) rotateX(10deg);
transform: perspective(400px) rotateX(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateX(0deg);
-ms-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateY(-10deg);
transform: perspective(400px) rotateY(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateY(10deg);
transform: perspective(400px) rotateY(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
}
@keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotateY(90deg);
-ms-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateY(-10deg);
-ms-transform: perspective(400px) rotateY(-10deg);
transform: perspective(400px) rotateY(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateY(10deg);
-ms-transform: perspective(400px) rotateY(10deg);
transform: perspective(400px) rotateY(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateY(0deg);
-ms-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
0% {
-webkit-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
}
@keyframes flipOutX {
0% {
-webkit-transform: perspective(400px) rotateX(0deg);
-ms-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateX(90deg);
-ms-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
0% {
-webkit-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
}
@keyframes flipOutY {
0% {
-webkit-transform: perspective(400px) rotateY(0deg);
-ms-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateY(90deg);
-ms-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
0% {
-webkit-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: translateX(-20%) skewX(30deg);
transform: translateX(-20%) skewX(30deg);
opacity: 1;
}
80% {
-webkit-transform: translateX(0%) skewX(-15deg);
transform: translateX(0%) skewX(-15deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
}
@keyframes lightSpeedIn {
0% {
-webkit-transform: translateX(100%) skewX(-30deg);
-ms-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: translateX(-20%) skewX(30deg);
-ms-transform: translateX(-20%) skewX(30deg);
transform: translateX(-20%) skewX(30deg);
opacity: 1;
}
80% {
-webkit-transform: translateX(0%) skewX(-15deg);
-ms-transform: translateX(0%) skewX(-15deg);
transform: translateX(0%) skewX(-15deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(0%) skewX(0deg);
-ms-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
0% {
-webkit-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
0% {
-webkit-transform: translateX(0%) skewX(0deg);
-ms-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(100%) skewX(-30deg);
-ms-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
0% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(-200deg);
transform: rotate(-200deg);
opacity: 0;
}
100% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateIn {
0% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(-200deg);
-ms-transform: rotate(-200deg);
transform: rotate(-200deg);
opacity: 0;
}
100% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
0% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(200deg);
transform: rotate(200deg);
opacity: 0;
}
}
@keyframes rotateOut {
0% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(200deg);
-ms-transform: rotate(200deg);
transform: rotate(200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes slideInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes slideInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
@keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
}
@keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
@keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate(80deg);
transform: rotate(80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40% {
-webkit-transform: rotate(60deg);
transform: rotate(60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
80% {
-webkit-transform: rotate(60deg) translateY(0);
transform: rotate(60deg) translateY(0);
opacity: 1;
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
100% {
-webkit-transform: translateY(700px);
transform: translateY(700px);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate(80deg);
-ms-transform: rotate(80deg);
transform: rotate(80deg);
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40% {
-webkit-transform: rotate(60deg);
-ms-transform: rotate(60deg);
transform: rotate(60deg);
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
80% {
-webkit-transform: rotate(60deg) translateY(0);
-ms-transform: rotate(60deg) translateY(0);
transform: rotate(60deg) translateY(0);
opacity: 1;
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
100% {
-webkit-transform: translateY(700px);
-ms-transform: translateY(700px);
transform: translateY(700px);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translateX(-100%) rotate(-120deg);
transform: translateX(-100%) rotate(-120deg);
}
100% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg);
}
}
@keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translateX(-100%) rotate(-120deg);
-ms-transform: translateX(-100%) rotate(-120deg);
transform: translateX(-100%) rotate(-120deg);
}
100% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
-ms-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg);
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
0% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg);
}
100% {
opacity: 0;
-webkit-transform: translateX(100%) rotate(120deg);
transform: translateX(100%) rotate(120deg);
}
}
@keyframes rollOut {
0% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
-ms-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg);
}
100% {
opacity: 0;
-webkit-transform: translateX(100%) rotate(120deg);
-ms-transform: translateX(100%) rotate(120deg);
transform: translateX(100%) rotate(120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}@font-face{font-family:'FontAwesome';src:url(//www.meyerhealth.com/wp-content/themes/mytheme/static/awesome/fonts/fontawesome-webfont.eot?v=4.7.0);src:url(//www.meyerhealth.com/wp-content/themes/mytheme/static/awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(//www.meyerhealth.com/wp-content/themes/mytheme/static/awesome/fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(//www.meyerhealth.com/wp-content/themes/mytheme/static/awesome/fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(//www.meyerhealth.com/wp-content/themes/mytheme/static/awesome/fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(//www.meyerhealth.com/wp-content/themes/mytheme/static/awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}@font-face {
font-family: 'MiSans';
font-style: normal;
src: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/font/MiSans-Regular.ttf) format('truetype');
}html,
body {
scroll-behavior: smooth;
box-sizing: border-box;
margin: 0 0 0 0;
padding: 0 0 0 0;
width: 100%;
height: auto;
}
.w0 {
width: 0% !important;
}
.w1 {
width: 1% !important;
}
.w2 {
width: 2% !important;
}
.w3 {
width: 3% !important;
}
.w4 {
width: 4% !important;
}
.w5 {
width: 5% !important;
}
.w6 {
width: 6% !important;
}
.w7 {
width: 7% !important;
}
.w8 {
width: 8% !important;
}
.w9 {
width: 9% !important;
}
.w10 {
width: 10% !important;
}
.w11 {
width: 11% !important;
}
.w12 {
width: 12% !important;
}
.w13 {
width: 13% !important;
}
.w14 {
width: 14% !important;
}
.w15 {
width: 15% !important;
}
.w16 {
width: 16% !important;
}
.w17 {
width: 17% !important;
}
.w18 {
width: 18% !important;
}
.w19 {
width: 19% !important;
}
.w20 {
width: 20% !important;
}
.w21 {
width: 21% !important;
}
.w22 {
width: 22% !important;
}
.w23 {
width: 23% !important;
}
.w24 {
width: 24% !important;
}
.w25 {
width: 25% !important;
}
.w26 {
width: 26% !important;
}
.w27 {
width: 27% !important;
}
.w28 {
width: 28% !important;
}
.w29 {
width: 29% !important;
}
.w30 {
width: 30% !important;
}
.w31 {
width: 31% !important;
}
.w32 {
width: 32% !important;
}
.w33 {
width: 33% !important;
}
.w34 {
width: 34% !important;
}
.w35 {
width: 35% !important;
}
.w36 {
width: 36% !important;
}
.w37 {
width: 37% !important;
}
.w38 {
width: 38% !important;
}
.w39 {
width: 39% !important;
}
.w40 {
width: 40% !important;
}
.w41 {
width: 41% !important;
}
.w42 {
width: 42% !important;
}
.w43 {
width: 43% !important;
}
.w44 {
width: 44% !important;
}
.w45 {
width: 45% !important;
}
.w46 {
width: 46% !important;
}
.w47 {
width: 47% !important;
}
.w48 {
width: 48% !important;
}
.w49 {
width: 49% !important;
}
.w50 {
width: 50% !important;
}
.w51 {
width: 51% !important;
}
.w52 {
width: 52% !important;
}
.w53 {
width: 53% !important;
}
.w54 {
width: 54% !important;
}
.w55 {
width: 55% !important;
}
.w56 {
width: 56% !important;
}
.w57 {
width: 57% !important;
}
.w58 {
width: 58% !important;
}
.w59 {
width: 59% !important;
}
.w60 {
width: 60% !important;
}
.w61 {
width: 61% !important;
}
.w62 {
width: 62% !important;
}
.w63 {
width: 63% !important;
}
.w64 {
width: 64% !important;
}
.w65 {
width: 65% !important;
}
.w66 {
width: 66% !important;
}
.w67 {
width: 67% !important;
}
.w68 {
width: 68% !important;
}
.w69 {
width: 69% !important;
}
.w70 {
width: 70% !important;
}
.w71 {
width: 71% !important;
}
.w72 {
width: 72% !important;
}
.w73 {
width: 73% !important;
}
.w74 {
width: 74% !important;
}
.w75 {
width: 75% !important;
}
.w76 {
width: 76% !important;
}
.w77 {
width: 77% !important;
}
.w78 {
width: 78% !important;
}
.w79 {
width: 79% !important;
}
.w80 {
width: 80% !important;
}
.w81 {
width: 81% !important;
}
.w82 {
width: 82% !important;
}
.w83 {
width: 83% !important;
}
.w84 {
width: 84% !important;
}
.w85 {
width: 85% !important;
}
.w86 {
width: 86% !important;
}
.w87 {
width: 87% !important;
}
.w88 {
width: 88% !important;
}
.w89 {
width: 89% !important;
}
.w90 {
width: 90% !important;
}
.w91 {
width: 91% !important;
}
.w92 {
width: 92% !important;
}
.w93 {
width: 93% !important;
}
.w94 {
width: 94% !important;
}
.w95 {
width: 95% !important;
}
.w96 {
width: 96% !important;
}
.w97 {
width: 97% !important;
}
.w98 {
width: 98% !important;
}
.w99 {
width: 99% !important;
}
.w100 {
width: 100% !important;
}
.blank10 {
width: 100%;
height: 10px;
clear: both;
overflow: hidden;
}
.blank20 {
width: 100%;
height: 20px;
clear: both;
overflow: hidden;
}
.blank30 {
width: 100%;
height: 30px;
clear: both;
overflow: hidden;
}
.blank40 {
width: 100%;
height: 40px;
clear: both;
overflow: hidden;
}
.blank50 {
width: 100%;
height: 50px;
float: left;
overflow: hidden;
}
.blank60 {
width: 100%;
height: 60px;
clear: both;
overflow: hidden;
}
.blank70 {
width: 100%;
height: 70px;
clear: both;
overflow: hidden;
}
.blank80 {
width: 100%;
height: 80px;
clear: both;
overflow: hidden;
}
.blank90 {
width: 100%;
height: 90px;
clear: both;
overflow: hidden;
}
.blank100 {
width: 100%;
height: 100px;
clear: both;
overflow: hidden;
}
.blank110 {
width: 100%;
height: 110px;
clear: both;
overflow: hidden;
}
.blank120 {
width: 100%;
height: 120px;
clear: both;
overflow: hidden;
}
.blank130 {
width: 100%;
height: 130px;
clear: both;
overflow: hidden;
}
.blank140 {
width: 100%;
height: 140px;
clear: both;
overflow: hidden;
}
.blank150 {
width: 100%;
height: 150px;
float: left;
overflow: hidden;
}
.blank160 {
width: 100%;
height: 160px;
clear: both;
overflow: hidden;
}
.blank170 {
width: 100%;
height: 170px;
clear: both;
overflow: hidden;
}
.blank180 {
width: 100%;
height: 180px;
clear: both;
overflow: hidden;
}
.blank190 {
width: 100%;
height: 190px;
clear: both;
overflow: hidden;
}
.blank200 {
width: 100%;
height: 200px;
clear: both;
overflow: hidden;
}
a {
color: #666;
text-decoration: none;
}
a:visited {
color: #666;
text-decoration: none
}
a:active {
color: #666;
text-decoration: none
}
a:hover {
color: #666;
text-decoration: none;
}
::-webkit-input-placeholder { color: #BCBCBC;
}
::-moz-placeholder { color: #BCBCBC;
}
:-ms-textarea-placeholder { color: #BCBCBC;
}
::-webkit-textarea-placeholder { color: #BCBCBC;
}
::-moz-placeholder { color: #BCBCBC;
}
:-ms-textarea-placeholder { color: #BCBCBC;
}
.bg-ffffff {
background-color: #fff;
}
.bg-efefef {
background-color: #efefef;
}
.bg-f5f4f1 {
background-color: #F5F4F1;
}
.bg-f4f3f0 {
background-color: #F4F3F0;
}
.bg-fbfaf9 {
background-color: #FBFAF9;
}
.bg-921C8C {
background-color: #921C8C;
}
.bg-fixed{
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
}html,
body {
font-family: MiSans;
scroll-behavior: smooth;
box-sizing: border-box;
margin: 0 0 0 0;
padding: 0 0 0 0;
width: 100%;
height: auto;
}
.app {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: 100%;
height: auto;
text-align: center;
transition: all .3s linear 100ms;
-webkit-transition: all .3s linear 100ms;
}
.app.on {
transform: translateX(70%);
transition: all .3s linear 100ms;
-webkit-transition: all .3s linear 100ms;
}
.sec-block {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: 100%;
height: auto;
text-align: center;
}
.container-wrap-1450 {
box-sizing: border-box;
margin: 0 auto;
width: 100%;
max-width: 1450px;
height: auto;
padding: 0 15px;
}
.container-wrap-1230 {
box-sizing: border-box;
margin: 0 auto;
width: 100%;
max-width: 1230px;
height: auto;
padding: 0 15px;
}
.container-wrap {
box-sizing: border-box;
margin: 0 auto;
width: 100%;
max-width: 1150px;
height: auto;
padding: 0 15px;
} header {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: 100%;
height: 150px;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
position: sticky;
z-index: 99999;
left: 0px;
top: 0px;
background-color: #fff;
}
.header-bg {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: 50%;
height: 75px;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
background-color: #1F4C9B;
position: absolute;
z-index: 12;
right: 0px;
top: 0px;
}
.header {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
width: 100%;
max-width: 1400px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.header-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 330px;
height: 150px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
background: #fff;
}
.header-l>a>.img1 {
width: auto;
height: 75px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.header-l>a {
margin: 0 0;
padding: 0 0;
display: flex;
align-items: center;
justify-content: center;
width: auto;
height: auto;
}
.header-r {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
position: relative;
z-index: 50;
}
.searchbox {
position: relative;
box-sizing: border-box;
margin: 0 40px 0 0;
padding: 0 0 0 0;
width: 100px;
height: 30px;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-end;
overflow: hidden;
}
.searchbox.on {
width: 200px;
background-color: #fff;
border-radius: 5px;
}
.search-open {
position: absolute;
right: 0px;
top: 0px;
z-index: 9;
box-sizing: border-box;
margin: 0 0px 0 0;
padding: 0 0 0 0;
width: 0%;
height: 30px;
overflow: hidden;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-end;
transition: all .3s linear 100ms;
-webkit-transition: all .3s linear 100ms;
opacity: 0;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
overflow: hidden;
border-radius: 5px;
}
.searchbox.on .search-open {
width: 100%;
right: 0px;
opacity: 1;
transition: all .3s linear 100ms;
-webkit-transition: all .3s linear 100ms;
}
.search-open input {
box-sizing: border-box;
margin: 0 0;
padding: 0 10px;
width: 100%;
flex: 1;
overflow: hidden;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
text-align: left;
height: 30px;
outline: none;
border: none;
background-color: #fff;
}
.search-open>label.fa-search.searchicon2 {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
color: #1f4c98;
cursor: pointer;
font-size: 18px;
}
.searchbox.on>label.fa-search {
display: none;
flex-direction: row;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
color: #fff;
cursor: pointer;
font-size: 18px;
}
.searchbox>label.fa-search {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
color: #fff;
cursor: pointer;
font-size: 18px;
position: relative;
z-index: 999;
}
.headermain {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.headermain-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: center;
width: 100%;
height: 50%;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
background-color: #1F4C9B;
}
.headtop {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.headtop-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 50%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.headtop-l>img.tel {
width: auto;
height: 22px;
margin: 0 0;
object-fit: cover;
}
.headtop-l>img.wx {
width: 22px;
height: 22px;
margin: 0 0;
object-fit: cover;
}
.top-tel {
box-sizing: border-box;
margin: 0 40px 0 10px;
padding: 0 0 0 0;
height: auto;
text-align: left;
color: #FFFFFF;
font-family: 18px;
font-weight: 500;
}
.top-tel:hover {
color: #fff;
}
.top-wx {
box-sizing: border-box;
margin: 0 40px 0 10px;
padding: 0 0 0 0;
height: auto;
color: #FFFFFF;
height: 20px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 18px;
line-height: 20px;
text-align: left;
font-style: normal;
text-transform: none;
}
.headtop-r {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-end;
width: 50%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.headtop-r>.searchicon {
margin: 0px 50px 0px 0px;
padding: 0px 0px;
font-size: 19px;
font-weight: normal;
color: #fff;
cursor: pointer;
}
.headtop-r>.link-lang {
margin: 0px 0px;
padding: 0px 0px;
height: 20px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 18px;
color: #FFFFFF;
line-height: 20px;
text-align: left;
font-style: normal;
text-transform: none;
}
.headtop-r>.link-lang:hover {
color: #fff;
text-decoration: none;
}
.headtop-r>.link-lang:active {
color: #fff;
text-decoration: none;
}
.headtop-r>.link-lang:visited {
color: #fff;
text-decoration: none;
}
.headtop-r>.label2 {
margin: 0px 5px;
padding: 0px 0px;
text-align: center;
font-size: 18px;
font-weight: normal;
line-height: 20px;
color: #fff;
}
.headermain-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: 50%;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
background: #fff;
}
.mainnav-item:hover .subnav {
display: block;
}
.subnav {
display: none;
box-sizing: border-box;
width: 100%;
min-width: 150px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 10px 20px;
background: #fff;
position: absolute;
z-index: 100;
left: 0px;
top: 99%;
box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}
.subnavitem {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 40px;
margin: 0px 0px;
padding: 0px 0px;
position: relative;
}
.subnavitem>.label1 {
margin: 0px 0px;
padding: 0px 0px;
font-size: 16px;
font-weight: normal;
color: #121212;
cursor: pointer;
}
.subnavitem:hover>.label1 {
margin: 0px 0px;
padding: 0px 0px;
font-size: 16px;
font-weight: normal;
color: #1f4c98;
cursor: pointer;
}
.subnavitem>.link-text {
margin: 0px 0px 0px 10px;
padding: 0px 0px;
text-align: left;
font-size: 18px;
font-weight: normal;
line-height: 1.6;
color: #121212;
cursor: pointer;
}
.subnavitem:hover>.link-text {
margin: 0px 0px 0px 10px;
padding: 0px 0px;
text-align: left;
font-size: 18px;
font-weight: normal;
line-height: 1.6;
color: #1f4c98;
cursor: pointer;
} .mainnav-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: flex-start;
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px 0px 0 40px;
padding: 0px 0px;
background: #fff;
}
.mainnav-drop:hover {}
.mainnav-drop:hover .mainnav-drop-c {
display: block;
}
.mainnav-item:hover {}
.mainnav-item:hover a.label-text {}
.mainnav-item:hover a.label-text:hover {}
.mainnav-dropmenu:hover .icon-dropmenuitem {
font-size: 14px;
font-weight: bold;
}
.mainnav-dropmenu:hover .label-dropmenuitem {
font-size: 14px;
font-weight: bold;
}
.mainnav-item {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
height: 100%;
min-height: 30px;
margin: 0px 0px;
padding: 0px 18px;
cursor: pointer;
position: relative;
}
.mainnav-item>label.fa {
margin: 0 0 0 5px;
padding: 0px 0px;
width: auto;
height: 28px;
font-weight: 400;
font-size: 20px;
color: #121212;
line-height: 28px;
text-align: left;
font-style: normal;
text-transform: none;
}
.mainnav-item>.label-text {
padding: 0px 0px;
width: auto;
height: 28px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: #121212;
line-height: 28px;
text-align: left;
font-style: normal;
text-transform: none;
}
.mainnav-item>.label-text:hover {
color: #1F4C9B;
text-decoration: none;
}
.mainnav-drop {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
height: 100%;
min-height: 30px;
margin: 0px 0px;
padding: 0px 20px;
background: #fff;
position: relative;
cursor: pointer;
}
.mainnav-drop>.label-drop {
padding: 0px 0px;
font-size: 14px;
font-weight: normal;
color: #666;
cursor: pointer;
}
.mainnav-drop>.label-drop:hover {
color: #666;
text-decoration: none;
}
.mainnav-drop>.label-drop:active {
color: #666;
text-decoration: none;
}
.mainnav-drop>.label-drop:visited {
color: #666;
text-decoration: none;
}
.label-drop>label {
color: #666;
font-size: 14px;
margin: 0 5px 0 0;
cursor: pointer;
}
.mainnav-drop>.icon-drop {
margin: 0px 0px 0px 5px;
padding: 0px 0px;
font-size: 14px;
font-weight: normal;
color: #666;
cursor: pointer;
}
.mainnav-drop-c {
box-sizing: border-box;
display: none;
width: 200px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 10px 10px;
border: none;
background: #fff;
position: absolute;
left: 0px;
top: 40px;
z-index: 9999;
}
.mainnav-dropmenu {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
width: 100%;
height: auto;
min-height: 40px;
margin: 0px 0px;
padding: 0px 0px;
background: #fff;
cursor: pointer;
}
.mainnav-dropmenu-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 30px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.mainnav-dropmenu-l>.icon-dropmenuitem {
margin: 0px 0px;
padding: 0px 0px;
font-size: 14px;
font-weight: normal;
color: #666;
cursor: pointer;
}
.mainnav-dropmenu-r {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.mainnav-dropmenu-r>.label-dropmenuitem {
padding: 0px 0px;
font-size: 14px;
font-weight: normal;
color: #666;
cursor: pointer;
}
.mainnav-dropmenu-r>.label-dropmenuitem:hover {
color: #666;
text-decoration: none;
}
.mainnav-dropmenu-r>.label-dropmenuitem:active {
color: #666;
text-decoration: none;
}
.mainnav-dropmenu-r>.label-dropmenuitem:visited {
color: #666;
text-decoration: none;
}
.label-dropmenuitem>label {
color: #666;
font-size: 14px;
margin: 0 5px 0 0;
cursor: pointer;
} .homeban-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
}
.homeban-c .swiper-pagination {
bottom: 30px !important;
}
.homeban-c .swiper-pagination-bullet {
width: 10px;
height: 10px;
text-align: center;
line-height: 10px;
font-size: 12px;
color: #000;
opacity: 1;
background: #ddd;
margin: 0 10px;
}
.homeban-c .swiper-pagination-bullet-active {
color: #fff;
background: #7fa9f3;
}
.homeban-c .swiper {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
}
.homeban-c .swiper-wrapper {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
}
.homeban-c .swiper-slide {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
}
.homeban-c .swiper-item {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
position: relative;
}
.homeban-c .swiper-item>.img1 {
width: 100%;
height: calc(100vh - 150px);
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.homeban-c .swiper-pagination {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
} .homeai-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 80px 0px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/homeaibg.png) no-repeat center center;
background-size: cover;
}
.homeai {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 1400px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.homeai-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.homeai-t>.label-head {
padding: 0px 0px;
text-align: center;
width: auto;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 48px;
color: #FFFFFF;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.homeai-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 0px;
margin: 20px 0px;
padding: 0px 0px;
}
.homeai-m>.img1 {
width: auto;
height: 8px;
min-height: 0px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.homeai-b {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 40px 0px;
padding: 0px 0px;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: auto;
grid-column-gap: 15px;
grid-row-gap: 15px;
}
.homeaiitembox {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 40px 30px;
border-radius: 10px;
position: relative;
overflow: hidden;
}
.homeaiitem {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
position: relative;
z-index: 10;
}
.homeaiitem-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.homeaiitem-t>.label-title {
padding: 0px 0px;
text-align: left;
width: auto;
height: 37px;
font-family: MiSans, MiSans;
font-weight: 600;
font-size: 28px;
color: #FFFFFF;
line-height: 37px;
text-align: left;
font-style: normal;
text-transform: none;
}
.homeaiitem-b {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 20px 0px;
padding: 0px 0px;
text-align: left;
font-size: 14px;
line-height: 1.6;
color: #000;
}
.homeaiitem-b>.p1 {
margin: 0px 0px;
padding: 0px 0px;
text-align: left;
width: 100%;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: #FFFFFF;
line-height: 40px;
text-align: left;
font-style: normal;
text-transform: none;
}
.homeaiitem-b>.p1 p {
margin: 5px 0;
}
.homeaiitembox-bg {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
background: #fff;
position: absolute;
z-index: 1;
left: 0px;
top: 0px;
opacity: 0.2;
} .homeabout-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.homeabout {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 1400px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 60px 0px;
}
.homeabout-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.homeabout-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 48px;
color: #121212;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.homeabout-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px 20px 0;
padding: 0px 0px;
}
.homeabout-m>.label-desc {
padding: 0px 0px;
text-align: center;
width: auto;
height: 30px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 24px;
color: rgba(18, 18, 18, 0.6);
line-height: 30px;
text-align: center;
font-style: normal;
text-transform: none;
}
.homeabout-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 40px 0px;
}
.homesolution {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.homesolution-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 50%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.homesolution-r {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 50%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
} .homecom-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 70px 0px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/homelay.png) no-repeat center center;
background-size: cover;
background-color: #fff;
}
.homecom {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 1400px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.homecom-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.homecom-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 48px;
color: #121212;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.homecom-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.homecom-m>.img1 {
width: auto;
height: 8px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.homecom-b {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 30px 0px;
padding: 0px 0px;
} .homecom-b .comlist:nth-last-child(1) .comlist-r {
box-sizing: border-box;
flex: 1;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: auto;
grid-column-gap: 0px;
grid-row-gap: 0px;
}
.comlist {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 10px 0px;
padding: 0px 0px;
}
.comlist-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 22%;
height: 148px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/cmobg.png) no-repeat center center;
background-size: cover;
border-radius: 3px;
}
.comlisthead {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: space-between;
width: 80%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 10px 10px;
}
.comlisthead-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
width: auto;
height: auto;
min-height: 30px;
margin: 0px 10px 0 0;
padding: 0px 0px;
}
.comlisthead-l>.img {
width: 68px;
height: 68px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
border-radius: 100%;
object-fit: cover;
}
.comlisthead-r {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px 0px 10px;
padding: 0px 0px;
}
.comlisthead-info {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.comlisthead-info-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
margin: 0px 0px;
padding: 0px 0px;
}
.comlisthead-info-title {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
text-align: left;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
word-break: break-all;
text-overflow: ellipsis;
white-space: wrap;
overflow: hidden;
}
.comlisthead-info-title>.label-title {
margin: 0px 0px;
padding: 0px 0px;
height: 42px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 32px;
color: #FFFFFF;
line-height: 42px;
text-align: left;
font-style: normal;
text-transform: none;
}
.comlisthead-info-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.comlisthead-info-b>.label-date {
padding: 0px 0px;
width: auto;
height: 32px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 24px;
color: rgba(255, 255, 255, 0.8);
line-height: 32px;
text-align: left;
font-style: normal;
text-transform: none;
}
.comlist-r {
box-sizing: border-box;
flex: 1;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
grid-template-columns: repeat(5, 1fr);
grid-template-rows: auto;
grid-column-gap: 0px;
grid-row-gap: 0px;
}
.comlist-item {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
border: dashed 1px #ddd;
border-left: none;
background-color: #fff;
}
.comlist-item>.img1 {
width: 80%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
} footer {
width: 100%;
box-sizing: border-box;
padding: 0 0;
margin: 0 0;
background-color: #0D1D3A;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.footer {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 1400px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.footer-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 60px 0px 60px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-top {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.footer-top-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 40%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.footer-top-l>.link-foot1 {
margin: 0px 40px 0px 0px;
padding: 0px 0px;
width: auto;
height: 24px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 18px;
color: #FFFFFF;
line-height: 24px;
text-align: left;
font-style: normal;
text-transform: none;
}
.footer-top-l>.link-foot1:hover {
color: #fff;
text-decoration: none;
}
.footer-top-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 20%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.footer-top-m>a>.img1 {
width: auto;
height: 73px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.footer-top-m>a {
margin: 0 0;
padding: 0 0;
display: flex;
align-items: center;
justify-content: center;
width: auto;
height: auto;
}
.footer-top-r {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-end;
width: 40%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.footer-top-r>.link-foot2 {
margin: 0px 0px 0px 40px;
padding: 0px 0px;
height: 24px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 18px;
color: #FFFFFF;
line-height: 24px;
text-align: left;
font-style: normal;
text-transform: none;
}
.footer-top-r>.link-foot2:hover {
color: #fff;
text-decoration: none;
}
.footer-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 80px;
margin: 0px 0px;
padding: 0px 0px;
}
.footer-b>.label1 {
padding: 0px 0px;
text-align: center;
width: auto;
height: 21px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: rgba(255, 255, 255, 0.6);
line-height: 21px;
text-align: left;
font-style: normal;
text-transform: none;
} .homecon-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 70px 0px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/contactbg.png) no-repeat center center;
background-size: cover;
}
.homecon {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 1400px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.homecon-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.homecon-t>.label-head {
padding: 0px 0px;
text-align: center;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 48px;
color: #FFFFFF;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.homecon-m1 {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.homecon-m1>.img1 {
width: auto;
height: 8px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.homecon-m2 {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 10px 0px;
padding: 0px 0px;
}
.homecon-m2>.label-desc {
padding: 0px 0px;
text-align: center;
height: 30px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 24px;
color: rgba(255, 255, 255, 0.7);
line-height: 30px;
text-align: center;
font-style: normal;
text-transform: none;
}
.homecon-m3 {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 70px 0px 10px 0;
padding: 0px 0px;
}
.homeconcnt {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.homeconcnt-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 54%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.homeconp {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.homeconp-t {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.conitem {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px 20px 0px;
padding: 10px 10px;
}
.conitem-l {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: auto;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.conitem-l>.img {
width: auto;
height: 72px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.conitem-m {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px 0px 20px;
padding: 0px 0px;
}
.conitem-info {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.conitem-info-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
margin: 0px 0px;
padding: 0px 0px;
}
.conitem-info-t>.label-title {
padding: 0px 0px;
height: 32px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: #FFFFFF;
line-height: 32px;
text-align: center;
font-style: normal;
text-transform: none;
}
.conitem-info-b {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
margin: 0px 0px;
padding: 0px 0px;
overflow: hidden;
}
.conitem-info-desc {
box-sizing: border-box;
width: 100%;
height: auto;
margin: 0px 0px;
padding: 0px 0px;
text-align: left;
}
.conitem-info-desc>.label-desc {
margin: 0px 0px;
padding: 0px 0px;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 20px;
color: #FFFFFF;
line-height: 32px;
text-align: left;
font-style: normal;
text-transform: none;
}
.homeconp-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
position: relative;
}
.conqrcode {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 20px 25px;
border: solid 1px #ddd;
border-radius: 5px;
position: relative;
z-index: 10;
}
.conqrcode-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: auto;
height: auto;
min-height: 30px;
margin: 0px 20px 0px 0px;
padding: 0px 0px;
}
.conqrcode-l>.img {
width: auto;
height: 100px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
border-radius: 5px;
}
.conqrcode-m {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.conqrcode-info {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.conqrcode-info-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
margin: 0px 0px;
padding: 0px 0px;
}
.conqrcode-info-t>.label-title {
padding: 0px 0px;
height: 37px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 22px;
color: #FFFFFF;
line-height: 37px;
text-align: center;
font-style: normal;
text-transform: none;
}
.conqrcode-info-b {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
margin: 15px 0px;
padding: 0px 0px;
overflow: hidden;
}
.conqrcode-info-desc {
box-sizing: border-box;
width: 100%;
height: auto;
margin: 0px 0px;
padding: 0px 0px;
text-align: left;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
word-break: break-all;
text-overflow: ellipsis;
white-space: wrap;
overflow: hidden;
}
.conqrcode-info-desc>.label-desc {
margin: 0px 0px;
padding: 0px 0px;
height: 37px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 22px;
color: #FFFFFF;
line-height: 37px;
text-align: left;
font-style: normal;
text-transform: none;
}
.homeconp-bg {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
background: #fff;
position: absolute;
z-index: 1;
left: 0px;
top: 0px;
opacity: 0.3;
}
.homeconcnt-r {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 43%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
background: #fff;
border-radius: 10px;
overflow: hidden;
}
.homeform {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 30px 30px;
}
.homeform-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.homeform-t>.label-head {
padding: 0px 0px;
text-align: center;
height: 42px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 28px;
color: #121212;
line-height: 42px;
text-align: left;
font-style: normal;
text-transform: none;
}
.homeform-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 10px 0px 10px 0;
padding: 0px 0px;
}
.homeformrow {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 5px 0px 5px 0px;
padding: 0px 0px;
background: #fff;
}
.homeformrow.w48 {
width: 48%;
}
.homeformrow-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: 40px;
min-height: 30px;
margin: 0px 0px 10px 0;
padding: 0px 0px;
}
.homeformrow-l>.label-x {
padding: 0px 5px 0px 0px;
text-align: center;
font-size: 14px;
font-weight: normal;
line-height: 1.6;
color: red;
}
.homeformrow-l>.label-text {
padding: 0px 0px;
height: 32px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
line-height: 32px;
text-align: center;
font-style: normal;
text-transform: none;
}
.homeformrow-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
border: solid 1px #ddd;
position: relative;
}
.homeformrow-m>.input-text {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: 50px;
min-height: 40px;
margin: 0px 0px;
padding: 0px 10px;
border: none;
border-radius: 5px;
background: #fff;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: rgba(18, 18, 18, 0.3);
line-height: 29px;
text-align: left;
font-style: normal;
text-transform: none;
outline: none;
}
.homeformrow-m>.input-area {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: 120px;
min-height: 40px;
margin: 0px 0px;
padding: 10px 10px;
border: none;
border-radius: 5px;
background: #fff;
text-align: left;
font-weight: normal;
outline: none;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: rgba(18, 18, 18, 0.3);
line-height: 29px;
text-align: left;
font-style: normal;
text-transform: none;
}
.homeform-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.homeform-b>.btnmsg-button {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: 60px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
border: none;
border-radius: 10px;
background: #1F4C9B;
outline: none;
cursor: pointer;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 20px;
color: #FFFFFF;
line-height: 27px;
text-align: center;
font-style: normal;
text-transform: none;
} .culutre-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 80px 0px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/culturebg.png) no-repeat center center;
background-size: cover;
overflow: hidden;
}
.culutre {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 1400px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.culutre-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.culutre-t>.label-head {
padding: 0px 0px;
text-align: center;
width: auto;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 48px;
color: #FFFFFF;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.culutre-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 0px;
margin: 20px 0px;
padding: 0px 0px;
}
.culutre-m>.img1 {
width: auto;
height: 8px;
min-height: 0px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.culutre-b {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 40px 0px;
padding: 0px 0px;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: auto;
grid-column-gap: 15px;
grid-row-gap: 15px;
}
.culutreitembox {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 40px 30px;
border-radius: 10px;
position: relative;
overflow: hidden;
}
.culutreitem {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
position: relative;
z-index: 10;
}
.culutreitem-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.culutreitem-t>.label-title {
padding: 0px 0px;
text-align: left;
width: auto;
height: 37px;
font-family: MiSans, MiSans;
font-weight: 600;
font-size: 28px;
color: #FFFFFF;
line-height: 37px;
text-align: left;
font-style: normal;
text-transform: none;
}
.culutreitem-b {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 20px 0px;
padding: 0px 0px;
text-align: left;
font-size: 14px;
line-height: 1.6;
color: #000;
}
.culutreitem-b>.p1 {
margin: 0px 0px;
padding: 0px 0px;
text-align: left;
width: 100%;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: #FFFFFF;
line-height: 40px;
text-align: left;
font-style: normal;
text-transform: none;
}
.culutreitem-b>.p1 p {
margin: 5px 0;
}
.culutreitembox-bg {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
background: #fff;
position: absolute;
z-index: 1;
left: 0px;
top: 0px;
opacity: 0.2;
} .homcom-lay {
box-sizing: border-box;
margin: 40px 0 0px 0;
padding: 0 0 0 0;
width: 100%;
height: auto;
text-align: center;
}
.comlay {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.comlay-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
height: 76px;
background: #1F4C9B;
border-radius: 12px 12px 12px 12px;
}
.comlay-t>.label-head {
padding: 0px 0px;
text-align: center;
width: auto;
height: 36px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 28px;
color: #FFFFFF;
line-height: 36px;
text-align: left;
font-style: normal;
text-transform: none;
}
.comlay-m {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 20px 0px;
padding: 0px 0px;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: auto;
grid-column-gap: 20px;
grid-row-gap: 20px;
}
.comlayitem {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.comlayitem-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: 72px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/layitembg.png) no-repeat center center;
background-size: cover;
border-radius: 30px;
}
.comlayitem-t>.label-title {
padding: 0px 0px;
min-height: 32px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 24px;
color: #1F4C9B;
line-height: 32px;
text-align: left;
font-style: normal;
text-transform: none;
}
.comlayitem-b {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 20px 0px;
padding: 0px 20px;
text-align: left;
font-size: 14px;
line-height: 1.6;
color: #000;
}
.comlayitem-b>ul {}
.comlayitem-b>ul li {
margin: 0 0 20px 0;
width: 100%;
min-height: 64px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: #121212;
line-height: 32px;
text-align: left;
font-style: normal;
text-transform: none;
} .comlist-wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: 100%;
height: auto;
text-align: center;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/honorbg.png) no-repeat center center;
background-size: cover;
background-color: #EEF2F9;
}
.comlist-box {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: 100%;
height: auto;
text-align: center;
max-width: 1400px;
padding: 70px 0px;
}
.honorbox-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 70px 0px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/honor2.png) no-repeat 0 100%;
background-size: contain;
background-color: #EEF2F9;
}
.honorbox {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 1400px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.honorbox-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.honorbox-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 48px;
color: #121212;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.honorbox-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.honorbox-m>.img1 {
width: auto;
height: 8px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
} .tabhonor-tab {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 1400px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.tabhonor-tab-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.tabhonor-nav-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 30px 0px;
padding: 0px 0px;
}
.tabhonor-nav-item-on {
box-sizing: border-box;
display: inline-flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
height: auto;
min-height: 46px;
margin: 0px 15px;
padding: 0px 60px;
cursor: pointer;
background: #1F4C9B;
border-radius: 60px 60px 60px 60px;
}
.tabhonor-nav-item-on>.label-text {
padding: 0px 0px;
height: 30px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 22px;
color: #FFFFFF;
line-height: 30px;
text-align: center;
font-style: normal;
text-transform: none;
cursor: pointer;
}
.tabhonor-nav-item {
box-sizing: border-box;
display: inline-flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
height: auto;
min-height: 46px;
margin: 0px 15px;
padding: 0px 60px;
cursor: pointer;
background-color: #fff;
border-radius: 60px 60px 60px 60px;
}
.tabhonor-nav-item>.label-text {
padding: 0px 0px;
height: 30px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 22px;
color: #1F4C9B;
line-height: 30px;
text-align: center;
font-style: normal;
text-transform: none;
cursor: pointer;
}
.tabhonor-tab-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 30px 0px;
padding: 0px 0px;
}
.tabhonor-tab-content-on {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 100px;
margin: 0px 0px;
text-align: left;
transition: all .2s linear 100ms;
}
.tabhonor-tab-content {
box-sizing: border-box;
display: none;
width: 100%;
height: auto;
min-height: 100px;
margin: 0px 0px;
text-align: left;
transition: all .2s linear 100ms;
} .swhonor-c {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
}
.swhonor-c .swiper-pagination {
bottom: 0px !important;
}
.swhonor-c .swiper-pagination-bullet {
width: 10px;
height: 10px;
text-align: center;
line-height: 10px;
font-size: 12px;
color: #000;
opacity: 1;
background: #fff;
margin: 0 10px;
display: none;
}
.swhonor-c .swiper-pagination-bullet-active {
color: #fff;
background: red;
display: none;
}
.swhonor-c .swiper {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
}
.swhonor-c .swiper-wrapper {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
display: flex;
align-items: stretch;
}
.swhonor-c .swiper-slide {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: center;
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
background-color: #fff;
}
.swhonor-c .swiper-item {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: center;
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
position: relative;
}
.swhonor-c .swiper-item>.img1 {
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.swhonor-c .swiper-pagination {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
}
.swhonor-c .swhonor-cmd {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 60px 0 0 0;
padding: 0px 0px;
}
.swhonor-c .swhonor-prev {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
height: auto;
min-height: 30px;
margin: 0px 10px;
padding: 0px 0px;
}
.swhonor-c .swhonor-prev>.label-arrow {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
margin: 0px 0px;
padding: 0px 0px;
border: solid 1px #1F4C9B;
border-radius: 10px;
background: #fff;
font-size: 22px;
color: #1F4C9B;
overflow: hidden;
cursor: pointer;
}
.swhonor-c .swhonor-next {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
height: auto;
min-height: 30px;
margin: 0px 10px;
padding: 0px 0px;
}
.swhonor-c .swhonor-next>.label-arrow {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
margin: 0px 0px;
padding: 0px 0px;
border: solid 1px #1F4C9B;
border-radius: 10px;
background: #fff;
font-size: 22px;
color: #1F4C9B;
cursor: pointer;
}
.pfcertbox {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: 100%;
height: 100%;
text-align: center;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
background-color: #fff;
}
.pfcertbox>.label-head {
font-weight: normal;
width: auto;
min-height: 60px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 22px;
color: #1F4C9B;
line-height: 30px;
text-align: left;
font-style: normal;
text-transform: none;
}
.pfcertbox>.label-desc {
margin: 20px 0 0 0;
font-weight: normal;
width: auto;
height: 60px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 18px;
color: #121212;
line-height: 30px;
text-align: left;
font-style: normal;
text-transform: none;
}
.pfcertbox>.label-desc2 {
width: 100%;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 16px;
color: #121212;
line-height: 21px;
text-align: left;
font-style: normal;
text-transform: none;
}
#sw4 .swiper-item {
aspect-ratio: 335/446;
padding: 0 20px;
box-sizing: border-box;
}
#sw4 .swiper-item>.img1 {
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
aspect-ratio: 335/466;
}
.haccp-desc {
width: 100%;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 22px;
color: #121212;
line-height: 40px;
text-align: left;
font-style: normal;
text-transform: none;
box-sizing: border-box;
padding: 0 60px;
}
#sw3 .swiper-slide {
width: 25%;
}
#sw3 .swiper-item {
padding: 0 0px;
box-sizing: border-box;
background-color: #fff;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
#sw3 .swiper-item img {
aspect-ratio: 335/474;
}
#sw3 .swiper-slide.w50 {
width: 50%;
aspect-ratio: 670/474;
} .boss-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 70px 0px;
background-color: #F6F8FE;
}
.boss {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 1400px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.boss-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.boss-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 48px;
color: #121212;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.boss-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.boss-m>.img1 {
width: auto;
height: 8px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
} .bossinfo {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
position: relative;
}
.bossinfo-t {
box-sizing: border-box;
min-height: 30px;
margin: 20px 0px;
padding: 10px 30px;
width: auto;
height: auto;
background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
border-radius: 12px 12px 12px 12px;
}
.bossinfo-t ul>li {
margin: 0 0;
width: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: #121212;
line-height: 40px;
text-align: left;
font-style: normal;
text-transform: none;
}
.bossinfo-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 70%;
height: auto;
min-height: 30px;
margin: 20px 0px 0 0;
padding: 30px 40px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/bosssbg.png) no-repeat center center;
background-size: cover;
}
.bossabout {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 70%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.bossabout-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: baseline;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.bossabout-t>.label-head {
padding: 0px 0px;
text-align: left;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 48px;
color: #FFFFFF;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.bossabout-t>.label-desc {
margin: 0px 0px 0px 10px;
padding: 0px 0px;
height: 37px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 28px;
color: #FFFFFF;
line-height: 37px;
text-align: center;
font-style: normal;
text-transform: none;
}
.bossabout-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.bossabout-b ul>li {
margin: 20px 0 0px 0;
width: 100%;
min-height: 32px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 24px;
color: #FFFFFF;
line-height: 32px;
text-align: left;
font-style: normal;
text-transform: none;
}
.bossinfo-pic {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: center;
width: 40%;
height: 100%;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
position: absolute;
z-index: 10;
top: 0px;
right: 0px;
}
.bossinfo-pic>.img1 {
width: auto;
height: 100%;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
} .expert-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 70px 0px;
background-color: #EEF2F9;
}
.expert {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 1400px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.expert-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.expert-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 48px;
color: #121212;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.expert-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.expert-m>.img1 {
width: auto;
height: 8px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
} .expertlist-c {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 60px 0px 30px 0;
padding: 0px 0px;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: auto;
grid-column-gap: 20px;
grid-row-gap: 20px;
}
.expertrow {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 400px;
margin: 0px 0px;
padding: 25px 25px;
border-radius: 10px;
background: #fff;
}
.expertrow-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.expertman {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
background: #fff;
}
.expertman-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: auto;
height: auto;
min-height: 30px;
margin: 0px 20px 0px 0px;
padding: 0px 0px;
}
.expertman-l>.img {
width: 106px;
height: 106px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
border-radius: 100%;
object-fit: cover;
}
.expertman-m {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.expertman-info {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.expertman-info-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
margin: 0px 0px;
padding: 0px 0px;
}
.expertman-info-t>.label-title {
padding: 0px 0px;
height: 37px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 28px;
color: #121212;
line-height: 37px;
text-align: left;
font-style: normal;
text-transform: none;
}
.expertman-info-b {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
margin: 10px 0px;
padding: 0px 0px;
overflow: hidden;
}
.expertman-info-desc {
box-sizing: border-box;
width: 100%;
height: auto;
margin: 0px 0px;
padding: 0px 0px;
text-align: left;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
word-break: break-all;
text-overflow: ellipsis;
white-space: wrap;
overflow: hidden;
}
.expertman-info-desc>.label-desc {
margin: 0px 0px;
height: 27px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: rgba(18, 18, 18, 0.4);
line-height: 27px;
text-align: left;
font-style: normal;
text-transform: none;
}
.expertrow-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 20px 0px;
padding: 20px 0px;
border-top: solid 1px #ddd;
}
.expertrow-m ul {
margin: 0 0;
}
.expertrow-m ul li {
margin: 10px 0;
height: 27px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: #121212;
line-height: 27px;
text-align: left;
font-style: normal;
text-transform: none;
}
.expertrow-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.expertrow-b-a {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 130px;
height: 40px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
border: solid 1px #1f4c98;
border-radius: 5px;
cursor: pointer;
}
.expertrow-b-a>.label-text {
padding: 0px 0px;
width: auto;
height: 24px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 18px;
color: #1F4C9B;
line-height: 24px;
text-align: left;
font-style: normal;
text-transform: none;
cursor: pointer;
}
.expertrow-b-a>.img2 {
width: auto;
height: 18px;
margin: 0px 0px 0px 10px;
padding: 0px 0px;
object-fit: cover;
}
.expert-wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: 100%;
height: auto;
text-align: center;
position: relative;
} .invest-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 70px 0px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/ivestbg.png) no-repeat center center;
background-size: cover;
}
.invest {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 1400px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.invest-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.invest-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 48px;
color: #121212;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.invest-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.invest-m>.img1 {
width: auto;
height: 8px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
} .investbox-c {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 50px 0px;
padding: 0px 0px;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: auto;
grid-column-gap: 20px;
grid-row-gap: 20px;
}
.investbox {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 70px 0px 0px 0px;
border: dashed 1px #ddd;
border-radius: 5px;
position: relative;
}
.investbox.ivb1 {
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/investbg1.png) no-repeat center center;
background-size: cover;
}
.investbox.ivb2 {
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/investbg2.png) no-repeat center center;
background-size: cover;
}
.investbox.ivb3 {
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/investbg3.png) no-repeat center center;
background-size: cover;
}
.investbox-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: 70px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 20px;
position: absolute;
z-index: 10;
left: 0px;
top: 0px;
}
.investbox-t>.label-head {
padding: 0px 0px;
width: 112px;
height: 37px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 28px;
color: #FFFFFF;
line-height: 37px;
text-align: center;
font-style: normal;
text-transform: none;
}
.investbox-b {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px 0px;
padding: 20px 20px;
background-color: #F4F8FF;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
}
.investbox-img {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: 114px;
min-height: 30px;
margin: 10px auto;
padding: 0px 0px;
background-color: #fff;
border: dashed 1px #ddd;
}
.investbox-img>.img1 {
width: auto;
height: 80%;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
} .develop-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 70px 0px;
background-color: #F5F8FC;
}
.develop {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.develop-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.develop-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 48px;
color: #121212;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.develop-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.develop-m>.img1 {
width: auto;
height: 8px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
} .historybox {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.historybox-main {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
position: relative;
}
.historyboxsw-cmd {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
}
.historyboxsw-prev {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
height: auto;
min-height: 30px;
margin: 0px 5px;
padding: 0px 0px;
position: absolute;
z-index: 10;
left: -70px;
top: 47px;
}
.historyboxsw-prev>.label-arrow {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 54px;
height: 54px;
margin: 0px 0px;
padding: 0px 0px;
border-radius: 100%;
background: #fff;
font-size: 30px;
color: #1f4c98;
overflow: hidden;
cursor: pointer;
}
.historyboxsw-next {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
height: auto;
min-height: 30px;
margin: 0px 5px;
padding: 0px 0px;
position: absolute;
z-index: 10;
right: -70px;
top: 47px;
}
.historyboxsw-next>.label-arrow {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 54px;
height: 54px;
margin: 0px 0px;
padding: 0px 0px;
border-radius: 100%;
background: #fff;
font-size: 30px;
color: #1f4c98;
cursor: pointer;
}
.historyboxsw-c {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 30px auto;
padding: 0px 0px;
position: relative;
max-width: 1400px;
}
.historyboxsw-c .swiper-pagination {
bottom: 0px !important;
}
.historyboxsw-c .swiper-pagination-bullet {
width: 10px;
height: 10px;
text-align: center;
line-height: 10px;
font-size: 12px;
color: #000;
opacity: 1;
background: #fff;
margin: 0 10px;
}
.historyboxsw-c .swiper-pagination-bullet-active {
color: #fff;
background: red;
}
.historyboxsw-line {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: 1px;
margin: 0px auto;
padding: 0px 0px;
background: #0072E3;
position: absolute;
z-index: 0;
left: 0px;
top: 105px;
background: linear-gradient(to right, #86aef3 0%, #1F4C9B 50%, #86aef3 100%);
}
.historyboxsw-c .swiper {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
}
.historyboxsw-c .swiper-wrapper {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
display: flex;
align-items: stretch;
}
.historyboxsw-c .swiper-slide {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: center;
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
}
.historyboxsw-c .swiper-item {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
position: relative;
}
.historyboxsw-text {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 100%;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.historyboxsw-text-l {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 90%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.historyboxsw-cir {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
margin: 0px 0px 0 0;
padding: 0px 0px 0 35px;
position: relative;
z-index: 100;
}
.historyboxsw-c .swiper-slide-active .historyboxsw-cir>img {
width: 16px;
height: auto;
margin: 0 0;
object-fit: cover;
display: block;
}
.historyboxsw-cir>img {
width: 16px;
height: auto;
margin: 0 0;
object-fit: cover;
display: block;
}
.historyboxsw-c .swiper-slide-active .historyboxsw-cir>img:nth-child(2) {
width: 16px;
height: auto;
margin: 0 0;
object-fit: cover;
display: none;
}
.historyboxsw-cir>img:nth-child(2) {
width: 16px;
height: auto;
margin: 0 0;
object-fit: cover;
display: none;
}
.historyboxsw-cir>.label-cir {
width: 10px;
height: 10px;
padding: 0px 0px;
border-radius: 100%;
background: #0072E3;
position: relative;
z-index: 100;
text-align: center;
font-size: 14px;
font-weight: normal;
line-height: 1.6;
color: #000;
opacity: 0.5;
}
.historyboxsw-text-l>.label-title {
margin: 50px 0px 20px 0;
padding: 0px 0px;
width: 79px;
height: 48px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 36px;
color: #121212;
line-height: 48px;
text-align: left;
font-style: normal;
text-transform: none;
}
.historyboxsw-text-l>.label-desc {
margin: 0px 0px;
padding: 0px 0px;
width: 100%;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: #121212;
line-height: 32px;
text-align: left;
font-style: normal;
text-transform: none;
}
.historyboxsw-text-l>.label-desc p {
margin: 0 0;
}
.historyboxsw-text-l>.label-desc img {
margin: 10px 0;
object-fit: cover;
width: 100%;
height: auto;
} .abotucom-c {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 80px 0px 80px 0;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/aboutbg.png) no-repeat center center;
background-size: cover;
}
.abotucom {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
max-width: 1400px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.abotucom-l {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
flex-wrap: wrap;
width: 195px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.aboucomhead {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.aboucomhead-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.aboucomhead-t>.label-head {
padding: 0px 0px;
text-align: center;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 48px;
color: #121212;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.aboucomhead-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
margin: 10px 0px;
padding: 0px 0px;
}
.aboucomhead-m>.img1 {
width: auto;
height: 8px;
min-height: 0;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.aboucomhead-b {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
margin: 60px 0px 0 0;
padding: 0px 0px;
}
.aboucomhead-b>.link-about {
width: 100px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
margin: 10px 0px;
height: 28px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: #121212;
line-height: 28px;
text-align: left;
font-style: normal;
text-transform: none;
}
.aboucomhead-b>.link-about:hover {
color: #1f4c98;
text-decoration: none;
}
.aboucomhead-b>.link-about.on {
color: #1f4c98;
text-decoration: none;
}
.aboucomhead-b>.link-about.on img {
display: block;
}
.aboucomhead-b>.link-about img {
display: none;
}
.abotucom-r {
flex: 1;
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 40px 0px 40px 40px;
}
.brief {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.brief-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.brief-top {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.brief-top-l {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 49%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.brief-top-l>.label-head {
margin: 30px 0 0 0;
padding: 0px 0px;
text-align: left;
min-height: 34px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 24px;
color: #121212;
line-height: 34px;
text-align: left;
font-style: normal;
text-transform: none;
}
.brief-top-l>.p2 {
margin: 30px 0px;
padding: 0px 0px;
width: 100%;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 18px;
color: rgba(18, 18, 18, 0.8);
line-height: 34px;
text-align: left;
font-style: normal;
text-transform: none;
}
.brief-top-r {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 49%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.brief-top-r>.img1 {
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.brief-b {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 40px 0px 0 0;
padding: 0px 0px;
grid-template-columns: repeat(6, 1fr);
grid-template-rows: auto;
grid-column-gap: 30px;
grid-row-gap: 30px;
}
.birefunit {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 20px 10px;
border: dashed 1px #ddd;
}
.birefunit-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: baseline;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.birefunit-t>img {
width: auto;
height: 52px;
margin: 0 0;
object-fit: cover;
}
.brief-head {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: 100%;
height: auto;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
}
.brief-head>label {
width: auto;
min-height: 34px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 22px;
color: #1F4C9B;
line-height: 34px;
text-align: left;
font-style: normal;
text-transform: none;
}
.birefunit-t>.label-text {
padding: 0px 0px;
text-align: left;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 48px;
color: #1F4C9B;
line-height: 64px;
text-align: left;
font-style: normal;
text-transform: none;
}
.birefunit-t>.label-unit {
margin: 0px 0px 0px 5px;
padding: 0px 0px;
width: auto;
min-height: 24px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 18px;
color: rgba(18, 18, 18, 0.8);
line-height: 24px;
text-align: left;
font-style: normal;
text-transform: none;
}
.birefunit-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.birefunit-b>.label-desc {
padding: 0px 0px;
text-align: center;
width: auto;
min-height: 24px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 18px;
color: rgba(18, 18, 18, 0.8);
line-height: 24px;
text-align: center;
font-style: normal;
text-transform: none;
}
.aboutad {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 40px 10px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/aboutadbg.png) no-repeat center center;
background-size: cover;
}
.aboutad-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.aboutad-t>.label-title {
padding: 0px 0px;
text-align: center;
height: 37px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 28px;
color: #1F4C9B;
line-height: 37px;
text-align: left;
font-style: normal;
text-transform: none;
}
.aboutad-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 10px 0px;
padding: 0px 0px;
}
.aboutad-b>.label-desc {
padding: 0px 0px;
text-align: center;
height: 32px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 24px;
color: rgba(31, 76, 155, 0.8);
line-height: 32px;
text-align: left;
font-style: normal;
text-transform: none;
} .subban-box {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
position: relative;
}
.subban-box>.img1 {
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
position: relative;
z-index: 1;
object-fit: cover;
}
.subban-ads {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 100%;
max-width: 1400px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
position: absolute;
z-index: 100;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
}
.subban-ads-l {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
width: 46%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.subban-ads-l>.label1 {
padding: 0px 0px;
text-align: left;
height: auto;
font-family: Alimama ShuHeiTi, Alimama ShuHeiTi;
font-weight: 700;
font-size: 66px;
color: #FFFFFF;
line-height: 90px;
text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
text-align: left;
font-style: normal;
text-transform: none;
}
.subban-ads-l>.label2 {
margin: 10px 0px;
padding: 0px 0px;
height: 104px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 32px;
color: #FFFFFF;
line-height: 52px;
text-align: left;
font-style: normal;
text-transform: none;
}
.subban-ads-l>.label2 p {
margin: 0 0;
}
.subban-ads-r {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 50%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.subban-mask {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
background: #000;
position: absolute;
z-index: 10;
left: 0px;
top: 0px;
opacity: 0;
} .joinus-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 70px 0px;
background-color: #F5F8FC;
}
.joinus {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 1400px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.joinus-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.joinus-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 48px;
color: #121212;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.joinus-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.joinus-m>.img1 {
width: auto;
height: 8px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
} .joinbox-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.joinbox {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 60px 0px 30px 0;
padding: 0px 0px;
}
.joinbox-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 50%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
position: relative;
z-index: 1;
}
.joinbox-l>.img1 {
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.joinbox-r {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 50%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
position: relative;
}
.joinitem {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: calc(100% + 200px);
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 30px 30px;
border-radius: 10px;
background: #fff;
position: absolute;
z-index: 10;
left: -200px;
}
.joinitem-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.joinitem-t>.p1 {
margin: 0px 0px;
padding: 0px 0px;
text-align: left;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: #121212;
line-height: 34px;
text-align: left;
font-style: normal;
text-transform: none;
}
.joinitem-b {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 20px 0px;
padding: 0px 0px;
}
.joinitem-row {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 10px auto;
padding: 0px 0px;
}
.joinitem-row>.img1 {
width: 44px;
height: 44px;
min-height: 30px;
margin: 0px 10px 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.joinitem-row>.label-title {
margin: 0px 10px 0px 0px;
padding: 0px 0px;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: #3D3D3D;
line-height: 36px;
text-align: left;
font-style: normal;
text-transform: none;
}
.joinitem-row>.link-row {
margin: 0px 0px;
padding: 0px 0px;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: #1f4c98;
line-height: 36px;
text-align: left;
font-style: normal;
text-transform: none;
}
.joinitem-row>.link-row:hover {
color: #1f4c98;
text-decoration: none;
} .onesite-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 70px 0px;
background-color: #F5F8FC;
}
.onesite {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 1500px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.onesite-desc {
box-sizing: border-box;
margin: 0 0;
padding: 0 0 15px 0;
width: 100%;
height: auto;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.onesite-desc>.label-desc {
padding: 0px 0px;
text-align: center;
width: auto;
height: 30px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 24px;
color: rgba(18, 18, 18, 0.6);
line-height: 30px;
text-align: center;
font-style: normal;
text-transform: none;
}
.onesite-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.onesite-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 48px;
color: #121212;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.onesite-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.onesite-m>.img1 {
width: auto;
height: 8px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
} .hospital-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 70px 0px;
background-color: #EEF2F9;
}
.hospital {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.hospital-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.hospital-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 48px;
color: #121212;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.hospital-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.hospital-m>.img1 {
width: auto;
height: 8px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.swhosp-c {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 50px 0 0 0;
padding: 0px 0px;
}
.swhosp-c .swiper-pagination {
bottom: 0px !important;
display: none;
}
.swhosp-c .swiper-pagination-bullet {
width: 10px;
height: 10px;
text-align: center;
line-height: 10px;
font-size: 12px;
color: #000;
opacity: 1;
background: #fff;
margin: 0 10px;
display: none;
}
.swhosp-c .swiper-pagination-bullet-active {
color: #fff;
background: red;
display: none;
}
.swhosp-c .swiper {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
}
.swhosp-c .swiper-wrapper {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
}
.swhosp-c .swiper-slide {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
border-radius: 5px;
overflow: hidden;
}
.swhosp-c .swiper-item {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
position: relative;
}
.swhosp-c .swiper-item>.img1 {
width: 100%;
height: 360px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.swhosp-c .swhosp-text {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 100%;
max-width: 100%;
height: 100%;
min-height: 30px;
margin: 0px 0px;
padding: 20px 20px;
background: #fff;
}
.swhosp-c .swhosp-text-l {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.swhosp-c .swhosp-text-l>.label-title {
box-sizing: border-box;
padding: 0px 0px;
width: auto;
min-height: 42px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 32px;
color: #121212;
line-height: 42px;
text-align: left;
font-style: normal;
text-transform: none;
}
.swhosp-c .swhosp-text-l>.label-desc {
box-sizing: border-box;
margin: 10px 0px;
padding: 5px 10px;
border-radius: 5px;
background: #E8EDF5;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 24px;
color: #1F4C9B;
line-height: 32px;
text-align: left;
font-style: normal;
text-transform: none;
}
.swhosp-c .swiper-pagination {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
}
.swhosp-c .swhosp-cmd {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 30px auto;
padding: 0px 0px;
}
.swhosp-c .swhosp-prev {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
height: auto;
min-height: 30px;
margin: 0px 5px;
padding: 0px 0px;
}
.swhosp-c .swhosp-prev>.label-arrow {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
margin: 0px 0px;
padding: 0px 0px;
border: dashed 1px #ddd;
border-radius: 0px;
background: #fff;
font-size: 30px;
color: #999;
overflow: hidden;
cursor: pointer;
}
.swhosp-c .swhosp-next {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
height: auto;
min-height: 30px;
margin: 0px 5px;
padding: 0px 0px;
}
.swhosp-c .swhosp-next>.label-arrow {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
margin: 0px 0px;
padding: 0px 0px;
border: dashed 1px #ddd;
border-radius: 0px;
background: #fff;
font-size: 30px;
color: #999;
cursor: pointer;
} .yuannei-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 70px 0px;
background-color: #F5F8FC;
}
.yuannei {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 1400px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.yuannei-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.yuannei-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 48px;
color: #121212;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.yuannei-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.yuannei-m>.img1 {
width: auto;
height: 8px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.yuanneibox-c {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 50px 0px 20px 0;
padding: 0px 0px;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: auto;
grid-column-gap: 20px;
grid-row-gap: 20px;
}
.yuannei-wrap {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
background: #fff;
position: relative;
overflow: hidden;
border: dashed 1px #ccc;
}
.yuanitem {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 30px 30px;
position: relative;
}
.yuanitem-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.yuanitem-t>.img1 {
width: 60px;
height: 60px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.yuanitem-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
margin: 20px 0px 0 0;
padding: 0px 0px;
}
.yuanitem-m>.label-head {
padding: 0px 0px;
text-align: left;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 28px;
color: #121212;
line-height: 37px;
text-align: left;
font-style: normal;
text-transform: none;
}
.yuanitem-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
margin: 0px 0px 20px 0;
padding: 0px 0px;
}
.yuanitem-b>.label-desc {
padding: 0px 0px;
text-align: left;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: rgba(18, 18, 18, 0.4);
line-height: 27px;
text-align: left;
font-style: normal;
text-transform: none;
}
.yuannei-wrap>.img2 {
width: auto;
max-width: 70%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
position: absolute;
z-index: 10;
top: 0px;
right: 0px;
object-fit: cover;
} .career-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 70px 0px;
}
.career {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 1400px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.career-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.career-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 48px;
color: #121212;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.career-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.career-m>.img1 {
width: auto;
height: 8px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.career-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 10px 0px;
padding: 0px 0px;
}
.career-b>label {
font-weight: normal;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 24px;
color: rgba(18, 18, 18, 0.6);
line-height: 30px;
text-align: center;
font-style: normal;
text-transform: none;
}
.careerbox {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 50px 0px 0 0;
padding: 0px 0px;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: auto;
grid-column-gap: 0px;
grid-row-gap: 0px;
}
.careerbox .careerbox-l:nth-child(2) .careerbox-info {
padding: 40px 60px;
}
.careerbox-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
position: relative;
}
.careerbox-l>.img1 {
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.careerbox-info {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px auto;
padding: 40px 40px;
position: absolute;
z-index: 10;
left: 0px;
top: 0px;
}
.careercnt {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.careercnt-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.careercnt-t>.label-head {
padding: 0px 0px;
font-family: MiSans, MiSans;
font-weight: 600;
font-size: 36px;
color: #FFFFFF;
line-height: 48px;
letter-spacing: 1px;
text-align: left;
font-style: normal;
text-transform: none;
}
.careercnt-b {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 20px 0px;
padding: 0px 0px;
}
.careercnt-b ul {
margin: 0 0;
}
.careercnt-b ul li {
margin: 10px 0;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 24px;
color: #FFFFFF;
line-height: 32px;
text-align: left;
font-style: normal;
text-transform: none;
} .careerad-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 40px 0px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/ad2.png) no-repeat center center;
background-size: cover;
}
.careerad {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
max-width: 1400px;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
}
.careeraditem {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 30%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 10px 10px;
}
.careeraditem-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: auto;
height: auto;
min-height: 30px;
margin: 0px 20px 0px 0px;
padding: 0px 0px;
}
.careeraditem-l>.img {
width: 80px;
height: 80px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
border-radius: 100%;
object-fit: cover;
}
.careeraditem-m {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.careeraditem-info {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.careeraditem-info-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
margin: 0px 0px;
padding: 0px 0px;
}
.careeraditem-info-t>.label-title {
padding: 0px 0px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 28px;
color: #FFFFFF;
line-height: 40px;
text-align: left;
font-style: normal;
text-transform: none;
} .factory-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 100px 0px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/factorybg.png) no-repeat center -30px;
background-size: cover;
overflow-x: hidden;
}
.factory {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.factory-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.factory-t>.label-title {
padding: 0px 0px;
text-align: center;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 48px;
color: #FFFFFF;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.factory-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.factory-m>.img1 {
width: auto;
height: 8px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.factory-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.factory-b>label {
font-weight: normal;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 24px;
color: rgba(255, 255, 255, 0.6);
line-height: 30px;
text-align: center;
font-style: normal;
text-transform: none;
}
.swhomefunc-c {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 0;
margin: 90px auto;
padding: 0rem 0.0rem;
position: relative;
max-width: 1400px;
}
.swhomefunc-c .swiper-pagination {
bottom: 0.3rem !important;
display: none;
}
.swhomefunc-c .swiper-pagination-bullet {
width: 0;
height: 0.1rem;
text-align: center;
line-height: 0.10rem;
font-size: 0.12rem;
color: #000;
opacity: 1;
background: #BEBEBE;
margin: 0 0.10rem;
border-radius: 0.06rem;
display: none;
}
.swhomefunc-c .swiper-pagination-bullet-active {
color: #fff;
background: #137EA7;
display: none;
}
.swhomefunc-c .swhomefunc-cmd {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
margin: 0rem auto;
padding: 0rem 0rem;
}
.swhomefunc-c .swhomefunc-prev {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
min-height: 0.30rem;
margin: 0rem 0.0rem;
padding: 0rem 0rem;
position: absolute;
z-index: 999;
left: 0px;
top: calc(40% + 70px);
transform: translateX(0%) translateY(-50%);
}
.swhomefunc-c .swhomefunc-prev>.label-arrow {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
margin: 0rem 0rem;
padding: 0rem 0rem;
font-size: 30px;
font-weight: normal;
color: #1f4c98;
overflow: hidden;
cursor: pointer;
border: solid 1px #ddd;
border-radius: 5px;
background-color: #fff;
}
.swhomefunc-c .swhomefunc-next {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
min-height: 0.30rem;
margin: 0rem 0.0rem;
padding: 0rem 0rem;
position: absolute;
z-index: 999;
top: 40%;
left: 0px;
transform: translateX(0%) translateY(-50%);
background-color: #fff;
border-radius: 5px;
}
.swhomefunc-c .swhomefunc-next>.label-arrow {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
margin: 0rem 0rem;
padding: 0rem 0rem;
font-size: 30px;
font-weight: normal;
color: #1f4c98;
overflow: hidden;
cursor: pointer;
border-radius: 100%;
}
.swhomefunc-c .swiper {
box-sizing: border-box;
width: 100%;
max-width: 100%;
height: auto;
min-height: 0rem;
margin: 0rem auto;
padding: 0rem 0rem 0 0;
overflow: hidden;
position: relative;
left: 100px;
}
.swhomefunc-c .swiper-wrapper {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 0.30rem;
margin: 0rem auto;
padding: 0rem 0rem;
}
.swhomefunc-c .swiper-slide {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 0.30rem;
margin: 0rem auto;
padding: 0rem 0rem;
position: relative;
cursor: pointer;
}
.swhomefunc-c .swhomefunc-swiperitem {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 0.30rem;
margin: 0rem 0rem;
padding: 20px 20px;
background-color: #fff;
border-radius: 10px;
}
.swhomefunc-c .swhomefunc-swiperitem-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 0.30rem;
margin: 0rem 0rem;
padding: 0rem 0rem;
}
.swhomefunc-c .swhomefunc-swiperitem-t>a>img {
width: auto;
max-width: 100%;
height: 220px;
margin: 0rem auto;
padding: 0rem 0rem;
object-fit: contain;
}
.swhomefunc-c .swhomefunc-swiperitem-t>a {
display: block;
width: 100%;
height: auto;
}
.swhomefunc-c .swhomefunc-swiperitem-m {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 0.30rem;
margin: 0rem 0rem;
padding: 0rem 0rem;
}
.swhomefunc-c .swhomefunc-swiperitem-title {
box-sizing: border-box;
width: 100%;
height: 66px;
min-height: auto;
min-height: 0rem;
margin: 10px 0;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
word-break: break-all;
text-overflow: ellipsis;
white-space: wrap;
overflow: hidden;
}
.swhomefunc-c .swhomefunc-swiperitem-title>.label-title {
margin: 0rem 0rem;
padding: 0rem 0rem;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 20px;
color: #121212;
line-height: 30px;
text-align: center;
font-style: normal;
text-transform: none;
}
.swhomefunc-c .swhomefunc-swiperitem-title>.label-title2 {
margin: 0px 0;
padding: 5px 10px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: #1F4C9B;
line-height: 30px;
text-align: center;
font-style: normal;
text-transform: none;
background-color: #F5F7FA;
}
.swhomefunc-c .swiper-pagination {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 0.30rem;
margin: 0rem auto;
padding: 0rem 0rem;
} .onecenter {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: 100%;
height: auto;
text-align: center;
width: 309px;
height: 246px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/homesobg.png) no-repeat center center;
background-size: cover;
position: absolute;
z-index: 10;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.onecenter-t {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: auto;
height: 70px;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
font-family: MiSans, MiSans;
font-weight: 600;
font-size: 50px;
color: #1F4C9B;
line-height: 66px;
letter-spacing: 1px;
text-align: center;
font-style: italic;
text-transform: none;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/onelinebg.png) no-repeat center 50px;
background-size: cover;
position: relative;
}
.onecenter-m {
box-sizing: border-box;
margin: 0 0 0 -10px;
padding: 0 0 0 0px;
width: auto;
height: 60px;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
font-family: MiSans, MiSans;
font-weight: normal;
font-size: 46px;
color: #1F4C9B;
line-height: 46px;
letter-spacing: 1px;
text-align: center;
font-style: italic;
text-transform: none;
}
.onecenter-b {
box-sizing: border-box;
margin: 0 0 0 -40px;
padding: 0 0 0 0;
width: auto;
height: 60px;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
font-family: MiSans, MiSans;
font-weight: normal;
font-size: 46px;
color: #1F4C9B;
line-height: 46px;
letter-spacing: 1px;
text-align: center;
font-style: italic;
text-transform: none;
}
.onebox {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 100px 0px;
padding: 0px 0px;
position: relative;
}
.onebox-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 50%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
position: relative;
}
.onebox-l>.img1 {
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.onebox-title1 {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 373px;
height: 80px;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/onsite.png) no-repeat center center;
background-size: cover;
position: absolute;
z-index: 10;
top: -30px;
right: 60px;
}
.onebox-title1>.label-head {
padding: 0px 0px;
text-align: left;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 32px;
color: #FFFFFF;
line-height: 42px;
text-align: center;
font-style: normal;
text-transform: none;
}
.onebox-cnt {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 56%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
position: absolute;
z-index: 10;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
}
.onebox-cnt.r2 {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 56%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
position: absolute;
z-index: 10;
left: 55%;
top: 54%;
transform: translateX(-50%) translateY(-50%);
}
.oneboxrow {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.oneboxrow-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: 60px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px 0px 20px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/onetbg.png) no-repeat center center;
background-size: cover;
}
.oneboxrow-t>.label1 {
padding: 0px 0px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 28px;
color: #121212;
line-height: 37px;
text-align: left;
font-style: normal;
text-transform: none;
}
.oneboxrow-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.oneboxrow-b ul {
margin: 10px 0;
width: 100%;
padding: 0 0;
}
.oneboxrow-b ul li {
margin: 8px 0;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 22px;
color: #121212;
line-height: 29px;
text-align: left;
font-style: normal;
text-transform: none;
list-style: none;
}
.onebox-r {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 50%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
position: relative;
}
.onebox-r>.img1 {
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.onebox-title2 {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 373px;
height: 80px;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/onsite.png) no-repeat center center;
background-size: cover;
position: absolute;
z-index: 10;
left: 50px;
bottom: -40px;
}
.onebox-title2>.label-head {
padding: 0px 0px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 32px;
color: #FFFFFF;
line-height: 42px;
text-align: center;
font-style: normal;
text-transform: none;
} #goTop {
position: fixed;
z-index: 9999;
right: 20px;
bottom: 20px;
background-color: #137EA7;
color: #fff;
width: 40px;
height: 40px;
text-align: center;
line-height: 40px;
opacity: 0.6;
border-radius: 100%;
font-size: 20px;
cursor: pointer;
}
#goTop>label {
cursor: pointer;
color: #fff;
} .articlebox-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 10px 0px;
}
.articlebox {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 1200px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.articlebox-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 15px 0px;
border-bottom: solid 1px #ddd;
}
.articlebox-t>.label-head {
padding: 0px 0px;
text-align: left;
font-size: 20px;
font-weight: bold;
color: #121212;
}
.articlebox-m {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 10px 0px;
}
.articlebox-item {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 10px 0px;
padding: 10px 0px 30px 0px;
border-bottom: solid 1px #ddd;
}
.articlebox-item-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 200px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
overflow: hidden;
}
.articlebox-item-l>a>.img {
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
aspect-ratio: 200/145;
}
.articlebox-item-l>a {
margin: 0 0;
padding: 0 0;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
}
.articlebox-item-r {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px 0px 25px;
padding: 0px 0px;
}
.articlebox-item-info {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.articlebox-item-info-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.articlebox-item-info-title {
box-sizing: border-box;
width: 100%;
height: auto;
margin: 5px 0px;
padding: 0px 0px;
text-align: left;
}
.articlebox-item-info-title>.label-title {
margin: 0px 0px;
padding: 0px 0px;
font-size: 18px;
font-weight: normal;
color: #121212;
}
.articlebox-item-info-title>.label-title:hover {
color: #121212;
text-decoration: none;
}
.articlebox-item-info-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 5px 0px;
}
.articlebox-item-info-desc {
box-sizing: border-box;
width: 100%;
height: auto;
margin: 0px 0px;
padding: 0px 0px;
text-align: left;
}
.articlebox-item-info-desc>.label-desc {
margin: 0px 0px;
padding: 0px 0px;
font-size: 14px;
font-weight: normal;
line-height: 1.8;
color: #666;
}
.articlebox-item-info-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
margin: 0px 0px;
padding: 10px 0px;
}
.articlebox-item-info-b>.label-date {
padding: 0px 0px;
font-size: 14px;
font-weight: normal;
color: #666;
}
.articlebox-item-info-b>.label2 {
margin: 0px 20px;
padding: 0px 0px;
font-size: 14px;
font-weight: normal;
color: #666;
}
.articlebox-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 10px 0px;
padding: 10px 0px;
} .pager {
box-sizing: border-box;
clear: both;
font-size: 14px;
width: 100%;
height: auto;
margin: 40px 0 50px 0;
padding: 0 0px 0 0;
text-align: center;
}
.pager a {
color: #666;
font-size: 14px;
text-decoration: none;
border: solid 1px #ddd;
display: inline-block;
padding: 6px 10px;
margin: 2px 4px;
border-radius: 3px;
}
.pager a:visited {
color: #666;
text-decoration: none
}
.pager a:active {
color: #666;
text-decoration: none
}
.pager a:hover {
color: #666;
text-decoration: none;
}
.pager a.cur {
color: #fff;
background: #1f4c98;
border: solid 1px #1f4c98;
}
.pager a.prev {}
.pager a.next {}
.pager a.off {
color: #dddddd;
border: solid 1px #ddd;
}
.pager span {
float: right;
}
.pager input {
outline: none;
width: 40px;
height: 29px;
text-align: center;
line-height: 28px;
border: solid 1px #ccc;
}
.pager button {
outline: none;
width: 40px;
height: 29px;
line-height: 28px;
border: solid 1px #ccc;
border-left: none;
cursor: pointer;
}
.artdetail {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 10px 10px;
background: #fff;
}
.artdetail-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 10px 0px;
}
.artdetail-t>.label-title {
padding: 0px 0px;
font-size: 18px;
font-weight: bold;
color: 121212;
}
.artdetail-m1 {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 10px 0px 20px 0px;
border-bottom: solid 1px #eee;
}
.artdetail-m1>.label-date {
margin: 0px 0px 0px 20px;
padding: 0px 0px;
font-size: 14px;
font-weight: normal;
color: #666;
}
.artdetail-m2 {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 10px 0px;
}
.artdetail-detail {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 10px 10px;
text-align: left;
font-size: 14px;
color: #121212;
line-height: 1.8;
}
.artdetail-detail p {
margin: 0px 0px;
}
.artdetail-detail img {
margin: 10px auto;
width: auto;
max-width: 100%;
height: auto;
}
.artdetail-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 20px 0px;
padding: 20px 0px;
border-top: solid 1px #eee;
}
.artdetail-prenext {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.artdetail-prenext-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
width: 48%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.artdetail-prenext-l>.label-prev {
width: 60px;
padding: 0px 0px;
font-size: 14px;
font-weight: bold;
color: #666;
}
.artdetail-prenext-l>.label-prev-text {
flex: 1;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
flex-wrap: wrap;
width: 100%;
padding: 0px 0px;
font-size: 14px;
font-weight: normal;
color: #666;
}
.artdetail-prenext-l>.label-prev-text:hover {
color: #666;
text-decoration: none;
}
.artdetail-prenext-l>.label-prev-text:active {
color: #666;
text-decoration: none;
}
.artdetail-prenext-l>.label-prev-text:visited {
color: #666;
text-decoration: none;
}
.artdetail-prenext-r {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
flex-wrap: wrap;
width: 48%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.artdetail-prenext-r>.label-next {
width: 60px;
padding: 0px 0px;
font-size: 14px;
font-weight: bold;
color: #666;
}
.artdetail-prenext-r>.label-next-text {
flex: 1;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
flex-wrap: wrap;
width: 100%;
padding: 0px 0px;
font-size: 14px;
font-weight: normal;
color: #666;
}
.artdetail-prenext-r>.label-next-text:hover {
color: #666;
text-decoration: none;
}
.artdetail-prenext-r>.label-next-text:active {
color: #666;
text-decoration: none;
}
.artdetail-prenext-r>.label-next-text:visited {
color: #666;
text-decoration: none;
}
.label-next-text>label {
color: #666;
font-size: 14px;
margin: 0 5px 0 0;
cursor: pointer;
}
.expertlast {
box-sizing: border-box;
display: none;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 400px;
margin: 0px 0px;
padding: 25px 25px;
border-radius: 10px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/expbg.png) no-repeat right 0px;
background-size: contain;
background-color: #1F4C9B;
}
.expert-wrap.on .expertlast {
display: flex;
}
.expert-wrap.on .expertrow {
display: none;
}
.expertlast-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.expertlasth {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.expertlasth-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: auto;
height: auto;
min-height: 30px;
margin: 0px 10px 0px 0px;
padding: 0px 0px;
}
.expertlasth-l>.img1 {
width: 48px;
height: 48px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
border-radius: 100%;
object-fit: cover;
}
.expertlasth-r {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: row;
align-items: baseline;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.expertlasth-r>.label-title {
margin-right: 10px;
padding: 0px 0px;
text-align: left;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 28px;
color: #FFFFFF;
line-height: 37px;
text-align: left;
font-style: normal;
text-transform: none;
}
.expertlasth-r>.label-sp {
margin: 0px 5px;
padding: 0px 0px;
text-align: center;
font-size: 14px;
font-weight: normal;
line-height: 1.6;
color: rgba(255, 255, 255, 0.6);
}
.expertlasth-r>.label-desc {
padding: 0px 0px;
width: 375px;
height: 21px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: rgba(255, 255, 255, 0.6);
line-height: 21px;
text-align: left;
font-style: normal;
text-transform: none;
}
.expertlast-b {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
text-align: left;
font-size: 14px;
line-height: 1.6;
color: #000;
}
.expertlast-b ul {
margin: 30px 0 0 -10px;
}
.expertlast-b ul li {
margin: 10px 0;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: #FFFFFF;
line-height: 27px;
text-align: left;
font-style: normal;
text-transform: none;
} .problock-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 70px 0px;
background-color: #E8EDF5;
}
.problock {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 1400px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.prowrap {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.prowrap-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.tabcate-tab {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.tabcate-tab-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.tabcate-nav-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.tabcate-nav-item-on {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: auto;
height: auto;
min-height: 30px;
margin: 0px 30px;
padding: 0px 30px;
cursor: pointer;
}
.tabcate-nav-item-on-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: 50px;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
}
.tabcate-nav-item-on>.label-text {
margin: 15px 0;
padding: 0px 0px;
font-size: 20px;
font-weight: bold;
color: #1f4c98;
cursor: pointer;
}
.tabcate-nav-item {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: auto;
height: auto;
min-height: 30px;
margin: 0px 30px;
padding: 0px 30px;
cursor: pointer;
}
.tabcate-nav-item svg {
fill: #666 !important;
}
.tabcate-nav-item-on svg {
fill: #1296db !important;
}
.tabcate-nav-item-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: 50px;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
}
.tabcate-nav-item>.label-text {
margin: 15px 0;
padding: 0px 0px;
font-size: 20px;
font-weight: bold;
color: #999;
cursor: pointer;
}
.tabcate-tab-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 20px 0px;
padding: 10px 0px;
}
.tabcate-tab-content-on {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 50px;
margin: 0px 0px;
text-align: left;
transition: all .2s linear 100ms;
}
.subcatlinks-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
}
.subcatlinks-c>.subcatlinks-link-on {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
min-height: 30px;
margin: 0px 20px 10px 0px;
padding: 5px 20px;
border: none;
border-radius: 5px;
background: #0072E3;
font-size: 18px;
font-weight: normal;
color: #fff;
}
.subcatlinks-c>.subcatlinks-link-on:hover {
color: #fff;
text-decoration: none;
}
.subcatlinks-c>.subcatlinks-link-on:active {
color: #fff;
text-decoration: none;
}
.subcatlinks-c>.subcatlinks-link-on:visited {
color: #fff;
text-decoration: none;
}
.subcatlinks-c>.subcatlinks-link {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
min-height: 30px;
margin: 0px 20px 10px 0px;
padding: 5px 20px;
border: none;
border-radius: 5px;
background: #fff;
border: solid 1px #ddd;
font-size: 18px;
font-weight: normal;
color: #121212;
}
.subcatlinks-c>.subcatlinks-link:hover {
color: #1f4c98;
text-decoration: none;
}
.tabcate-tab-content {
box-sizing: border-box;
display: none;
width: 100%;
height: auto;
min-height: 0px;
margin: 0px 0px;
background: #eee;
text-align: center;
transition: all .2s linear 100ms;
}
.prowrap-b {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 10px 0px;
padding: 0px 0px;
} .goodslist-c {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: auto;
grid-column-gap: 20px;
grid-row-gap: 20px;
}
.gooditem {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
background: #fff;
border-radius: 8px;
}
.gooditem-t:hover>a>.img1 {
transform: scale(1.2);
transition: all .2s linear 100ms;
}
.gooditem-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
overflow: hidden;
}
.gooditem-t>a>.img1 {
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
transition: all .2s linear 100ms;
object-fit: cover;
aspect-ratio: 1/1;
}
.gooditem-t>a {
margin: 0 0;
padding: 0 0;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
}
.gooditem-m {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 5px 5px;
}
.gooditem-info {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.gooditem-info-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
flex-wrap: wrap;
width: 100%;
height: auto;
margin: 0px 0px;
padding: 5px 0px;
}
.gooditem-info-t-a {
box-sizing: border-box;
width: 100%;
height: 48px;
margin: 0px 0px;
padding: 0px 0px;
text-align: center;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
word-break: break-all;
text-overflow: ellipsis;
white-space: wrap;
overflow: hidden;
}
.gooditem-info-t-a>.label-title {
margin: 0px 0px;
padding: 0px 0px;
font-size: 16px;
font-weight: normal;
color: #333;
}
.gooditem-info-t-a>.label-title:hover {
color: #333;
text-decoration: none;
}
.gooditem-info-t-a>.label-title:active {
color: #333;
text-decoration: none;
}
.gooditem-info-t-a>.label-title:visited {
color: #333;
text-decoration: none;
}
.gooditem-info-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 0px;
margin: 0px 0px;
padding: 0px 0px;
} .productdil {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.productdil-l {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 45%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.productdil-r {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 52%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.proinfo {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.proinfo-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.positionx-c {
box-sizing: border-box;
text-align: left;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.positionx {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
max-width: 1200px;
height: 40px;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
}
.positionx>.link-item {
margin: 0px 5px 0 0;
padding: 0px 0px;
font-size: 14px;
font-weight: normal;
color: #666;
}
.positionx>.link-item:hover {
color: #666;
text-decoration: none;
}
.positionx>.link-item:active {
color: #666;
text-decoration: none;
}
.positionx>.link-item:visited {
color: #666;
text-decoration: none;
}
.positionx>.icon-arrow {
margin: 0px 5px 0 0;
padding: 0px 0px;
font-size: 14px;
font-weight: bold;
color: #666;
}
.positionx>.label-item {
margin: 0px 5px 0 0;
padding: 0px 0px;
text-align: center;
font-size: 14px;
font-weight: normal;
color: #666;
}
.proinfo-m1 {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.proinfo-m1>.link-cat {
margin: 0px 0px;
padding: 0px 0px;
font-size: 14px;
font-weight: normal;
color: #0072E3;
}
.proinfo-m1>.link-cat:hover {
color: #0072E3;
text-decoration: none;
}
.proinfo-m1>.link-cat:active {
color: #0072E3;
text-decoration: none;
}
.proinfo-m1>.link-cat:visited {
color: #0072E3;
text-decoration: none;
}
.proinfo-m2 {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 10px 0px;
padding: 0px 0px;
}
.proinfo-m2>.label-title {
padding: 0px 0px;
text-align: left;
font-size: 26px;
font-weight: bold;
line-height: 1.6;
color: #000;
}
.proinfo-m3 {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.proinfo-m3>.label-price {
margin: 0 0;
padding: 0px 0px;
text-align: left;
font-size: 24px;
font-weight: bold;
line-height: 1.6;
color: #000;
}
.proinfo-m3>.label-ni {
margin: 0px 0px 0px 0px;
padding: 0px 0px;
text-align: left;
font-size: 14px;
font-weight: normal;
line-height: 1.6;
color: #000;
}
.proinfo-m4 {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 30px 0px;
padding: 0px 0px;
text-align: left;
font-size: 14px;
line-height: 1.6;
color: #000;
}
.proinfo-m4>.p1 {
margin: 0px 0px;
padding: 0px 0px;
text-align: left;
font-size: 18px;
font-weight: normal;
line-height: 1.6;
color: #000;
}
.proinfo-m5 {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.proinfo-b {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 10px 0px;
border-top: solid 1px #ddd;
text-align: left;
font-size: 14px;
line-height: 1.6;
color: #000;
}
.proinfo-b>.label-tagt {
padding: 0px 0px;
text-align: left;
font-size: 14px;
font-weight: normal;
line-height: 1.6;
color: #000;
}
.proinfo-b>.link-tag {
margin: 0px 0px;
padding: 0px 0px;
font-size: 14px;
font-weight: normal;
color: #666;
}
.proinfo-b>.link-tag:hover {
color: #666;
text-decoration: none;
}
.proinfo-b>.link-tag:active {
color: #666;
text-decoration: none;
}
.proinfo-b>.link-tag:visited {
color: #666;
text-decoration: none;
} .product-gallery {
position: relative;
display: flex;
flex-direction: column-reverse;
align-items: flex-start;
justify-content: flex-start;
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0px;
width: 100%;
height: auto;
max-width: 100%;
text-align: center;
}
.product-big {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: 100%;
height: auto;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
overflow: hidden;
position: relative;
flex: 1;
border: solid 1px #ddd;
background-color: #fff;
}
.mysw-c {
box-sizing: border-box;
width: 100%;
height: auto;
position: relative;
}
.mysw {
width: 100%;
height: auto;
}
.mysw .swiper-slide {
display: block;
width: 100%;
height: auto;
object-fit: contain;
position: relative;
}
.mysw .swiper-slide img {
display: block;
width: 100%;
height: 100%;
aspect-ratio: 1/1;
object-fit: contain;
}
.mysw .swiper-pagination {
bottom: 30px !important;
}
.mysw .swiper-pagination-bullet {
width: 14px;
height: 14px;
text-align: center;
line-height: 14px;
font-size: 12px;
color: #000;
opacity: 1;
background: #fff;
margin: 0 10px;
display: none;
}
.mysw .swiper-pagination-bullet-active {
color: #fff;
background: red;
}
.mysw-next {
position: absolute;
width: 42px;
right: -20px;
height: 42px;
background-color: #fff;
border-radius: 100%;
border: solid 2px #ccc;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
z-index: 999;
cursor: pointer;
top: 50%;
transform: translateX(0%) translateY(-50%);
}
.mysw-prev {
position: absolute;
width: 42px;
left: -20px;
top: 50%;
height: 42px;
background-color: #fff;
border-radius: 100%;
border: solid 2px #ccc;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
z-index: 999;
cursor: pointer;
transform: translateX(0%) translateY(-50%);
}
.mysw-next label,
.mysw-prev label {
font-size: 20px;
color: #000;
font-weight: normal;
cursor: pointer;
}
.mysw .swiper-button-next {
width: 42px;
right: 50px;
height: 42px;
}
.mysw .swiper-button-prev {
width: 42px;
left: 50px;
height: 42px;
}
.mysw .swiper-button-next:after,
.mysw .swiper-button-prev:after {
content: '';
}
.flex-control-thumbs {
position: relative;
zoom: 1;
margin: 10px 0 0 0;
padding: 0;
box-sizing: border-box;
width: 100%;
height: 110px;
}
.flex-control-thumbs .swiper {
overflow: hidden;
zoom: 1;
margin: 0;
padding: 0;
box-sizing: border-box;
width: 100%;
height: 100%;
overflow: hidden;
}
.flex-control-thumbs .swiper-slide {
overflow: hidden;
width: 100px;
height: auto;
overflow: hidden;
box-sizing: border-box;
margin: 0 0 0px 0;
padding: 0 0;
border: solid 1px #ccc;
cursor: pointer;
aspect-ratio: 1/1;
background-color: #fff;
}
.flex-control-thumbs .swiper-slide img {
width: 100%;
height: 100%;
margin: 0 0;
padding: 0 0;
object-fit: cover;
cursor: pointer;
aspect-ratio: 1/1;
}
.flex-control-thumbs .swiper-slide.on {
border: solid 1px #1f4c98;
}
.xsmall-cmd {
position: static;
}
.xsmall-next {
width: 25px;
background-color: #fff;
border: solid 1px #ccc;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
cursor: pointer;
height: 25px;
border-radius: 100%;
position: absolute;
z-index: 9999;
right: -12px;
top: 40px;
}
.xsmall-prev {
width: 25px;
height: 25px;
border-radius: 100%;
background-color: #fff;
border: solid 1px #ccc;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
cursor: pointer;
position: absolute;
z-index: 999;
left: -12px;
top: 40px;
}
.xsmall-next label,
.xsmall-prev label {
font-size: 20px;
color: #000;
font-weight: normal;
cursor: pointer;
}
.gallery-icon {
position: absolute;
z-index: 98;
right: 15px;
top: 20px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background-color: #fff;
border-radius: 100%;
cursor: pointer;
border: solid 1px #999;
}
.picsbox-c {
box-sizing: border-box;
width: 100%;
height: 100%;
margin: 0px 0px;
padding: 0px 0px;
background: #000;
position: fixed;
z-index: 999999991;
left: 0px;
top: 0px;
display: none;
}
.picboxs-top {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
position: absolute;
z-index: 10;
left: 0px;
top: 0px;
}
.picboxs-topleft {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
}
.picboxs-topleft>.label-count {
padding: 0px 0px;
text-align: center;
font-size: 14px;
font-weight: normal;
color: #fff;
}
.picboxs-topright {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-end;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 10px;
}
.picboxs-topright>.img-fullscreen {
width: 20px;
height: 20px;
margin: 0px 0px 0 20px;
padding: 0px 0px;
cursor: pointer;
object-fit: cover;
}
.picboxs-topright>.img-exitscreen {
width: 20px;
height: 20px;
margin: 0px 0px 0 20px;
padding: 0px 0px;
cursor: pointer;
object-fit: cover;
}
.picboxs-topright>.img-share {
width: 20px;
height: 20px;
margin: 0px 0px;
padding: 0px 0px;
cursor: pointer;
object-fit: cover;
}
.picboxs-topright>.img-close {
width: 29px;
height: 29px;
margin: 0px 0px 0px 20px;
padding: 0px 0px;
cursor: pointer;
object-fit: cover;
}
.picboxs-topright>.img-zoom {
width: 20px;
height: 20px;
margin: 0px 0px 0px 20px;
padding: 0px 0px;
cursor: pointer;
object-fit: cover;
}
.picsbox-c-left {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
position: absolute;
z-index: 100;
top: 50%;
left: 0px;
transform: translateX(0%) translateY(-50%);
cursor: pointer;
}
.picsbox-c-right {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
position: absolute;
z-index: 100;
top: 50%;
right: 0px;
transform: translateX(0%) translateY(-50%);
cursor: pointer;
}
.picsbox-c-d {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
margin: 0px auto;
padding: 0px 0px;
position: absolute;
z-index: 5;
left: 0px;
top: 0px;
}
.picsbox-c-d>.img1 {
width: auto;
max-width: 90%;
height: auto;
max-height: 95%;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
transition: all .5s linear 100ms;
-webkit-transition: all .5s linear 100ms;
transform: scale(1);
}
.picsbox-c-d>.img1.big {
width: 50%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
transition: all .5s linear 100ms;
-webkit-transition: all .5s linear 100ms;
transform: scale(1.5);
}
@media screen and (max-width: 750px) {
.product-gallery {
position: relative;
display: flex;
flex-direction: column-reverse;
align-items: flex-start;
justify-content: flex-start;
box-sizing: border-box;
margin: 0 0;
padding: 0 0 0 0px;
width: 100%;
height: auto;
text-align: center;
}
.product-big {
box-sizing: border-box;
margin: 0 0 0 0px;
padding: 0 0 0 0;
width: 100%;
height: 500px;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
overflow: hidden;
position: relative;
flex: 1;
}
.xsmall-cmd {
position: absolute;
z-index: 2;
left: 0px;
bottom: 0px;
width: 50px;
display: none;
}
.flex-control-thumbs {
overflow: hidden;
zoom: 1;
margin: 10px 0;
padding: 0;
box-sizing: border-box;
width: 100%;
height: 100px;
overflow: hidden;
}
.flex-control-thumbs .swiper-slide {
overflow: hidden;
width: auto;
height: 60px !important;
overflow: hidden;
box-sizing: border-box;
margin: 0 0 0px 0;
padding: 0 0;
cursor: pointer;
}
.mysw .swiper-slide {
display: block;
width: 100%;
height: 400px;
object-fit: cover;
position: relative;
}
}
.proinfo-msg {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: 100%;
height: auto;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
}
.proinfo-msg>.link-sendmsg {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
min-height: 40px;
margin: 10px 0px;
padding: 6px 40px;
border: none;
border-radius: 5px;
background: #222;
font-size: 18px;
font-weight: normal;
color: #fff;
}
.proinfo-msg>.link-sendmsg:hover {
color: #fff;
text-decoration: none;
}
.proinfo-msg>.link-sendmsg:active {
color: #fff;
text-decoration: none;
}
.proinfo-msg>.link-sendmsg:visited {
color: #fff;
text-decoration: none;
}
.protab-tab {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 60px 0px 30px 0;
padding: 0px 0px;
}
.protab-tab-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.protab-nav-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
border-bottom: solid 1px #ddd;
}
.protab-nav-item-on {
box-sizing: border-box;
display: inline-flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
height: 60px;
min-height: 30px;
margin: 0px 40px 0px 0px;
padding: 0px 0px;
border-top: solid 4px #0072E3;
cursor: pointer;
}
.protab-nav-item-on>.label-text {
padding: 0px 0px;
font-size: 18px;
font-weight: bold;
color: #666;
cursor: pointer;
}
.protab-nav-item {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
height: auto;
min-height: 30px;
margin: 0px 40px 0 0;
padding: 0px 0px;
cursor: pointer;
}
.protab-nav-item>.label-text {
padding: 0px 0px;
font-size: 16px;
font-weight: bold;
color: #666;
cursor: pointer;
}
.protab-tab-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 10px 0px;
}
.protab-tab-content-on {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 100px;
margin: 0px 0px;
text-align: left;
display: block;
}
.protab-tab-content {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 100px;
margin: 0px 0px;
text-align: left;
display: none;
} .pagedetail {
box-sizing: border-box;
width: 100%;
max-width: 100%;
margin: 0px auto;
padding: 0px 0px;
text-align: left;
font-size: 14px;
color: #000;
line-height: 1.8;
}
.pagedetail h1 {
font-size: 50px;
}
.pagedetail h2 {
font-size: 40px;
}
.pagedetail h3 {
font-size: 30px;
}
.pagedetail h4 {
font-size: 20px;
}
.pagedetail h5 {
font-size: 18px;
}
.pagedetail p {
text-align: left;
color: #000;
line-height: 1.8;
}
.pagedetail img {
width: auto;
max-width: 100%;
margin: 10px auto;
height: auto;
}
.pagedetail video {
width: auto;
max-width: 100%;
margin: 10px auto;
height: auto;
}
.pagedetail table {
margin: 10px 0;
padding: 0 0;
width: 100px;
height: auto;
border-collapse: collapse;
}
.pagedetail table th {
border: solid 1px #ddd;
min-height: 40px;
height: auto;
}
.pagedetail table tr {
border: solid 1px #ddd;
}
.pagedetail table tr td {
border: solid 1px #ddd;
padding: 5px 5px;
font-size: 14px;
color: #000;
min-height: 40px;
line-height: 1.8;
}
.hxad {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px 0 0px;
padding: 0px 0px 0 235px;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: auto;
grid-column-gap: 0px;
grid-row-gap: 0px;
max-width: 1400px;
}
.hxaditem {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.hxaditem-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
margin: 0px 0px;
padding: 0px 0px;
}
.hxaditem-t>.label-line {
width: 5px;
height: 24px;
margin: 0px 15px 0px 0px;
padding: 0px 0px;
background: #1F4C9B;
text-align: left;
font-size: 14px;
font-weight: bold;
line-height: 1.6;
color: #000;
}
.hxaditem-t>.label-title {
padding: 0px 0px;
width: 100%;
min-height: 37px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 28px;
color: #1F4C9B;
line-height: 37px;
text-align: left;
font-style: normal;
text-transform: none;
}
.hxaditem-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
flex-wrap: wrap;
width: 80%;
height: auto;
min-height: 30px;
margin: 10px 0px;
padding: 0px 0px;
}
.hxaditem-b>.label1 {
padding: 0px 0px;
width: 100%;
min-height: 64px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 24px;
color: rgba(31, 76, 155, 0.8);
line-height: 32px;
text-align: left;
font-style: normal;
text-transform: none;
} .subcatlist {
box-sizing: border-box;
text-align: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 30px 0px 0px 0;
padding: 0px 0px;
}
.subcatlist-r {
box-sizing: border-box;
width: 100%;
height: auto;
margin: 0px 0px;
padding: 0px 0px 0px 0px;
text-align: center;
font-size: 14px;
line-height: 1.6;
color: #000;
}
.subcatlist-r>.link1 {
display: inline-flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
min-height: 30px;
margin: 0px 20px 10px 0px;
padding: 5px 20px;
border: none;
border-radius: 5px;
background: #fff;
border: solid 1px #ddd;
font-size: 16px;
font-weight: normal;
color: #121212;
}
.subcatlist-r>.link1.on {
display: inline-flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
min-height: 30px;
margin: 0px 20px 10px 0px;
padding: 5px 20px;
border: none;
border-radius: 5px;
background: #0072E3;
border: solid 0px #ddd;
font-size: 16px;
font-weight: normal;
color: #fff;
} .langbox {
float: left;
position: relative;
width: auto;
height: 36px;
display: flex;
justify-content: center;
align-items: center;
margin-top: 0px;
margin-right: 15px;
}
font[dir='auto'] {
color: inherit !important;
}
.gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow {
display: inline-block;
height: 24px;
width: 15px;
vertical-align: middle;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 285 285'><path d='M282 76.5l-14.2-14.3a9 9 0 0 0-13.1 0L142.5 174.4 30.3 62.2a9 9 0 0 0-13.2 0L3 76.5a9 9 0 0 0 0 13.1l133 133a9 9 0 0 0 13.1 0l133-133a9 9 0 0 0 0-13z' style='fill:%23666'/></svg>");
background-position: 50%;
background-size: 11px;
background-repeat: no-repeat;
transition: all .3s;
transform: rotate(-180deg);
display: none!important;
}
#gt_float_wrapper {
position: relative !important;
top: 0px !important;
left: 10px !important;
z-index: 999999;
}
.gt_float_switcher {
font-family: Arial;
font-size: 20px;
border-radius: 7px;
color: #555;
display: inline-block;
line-height: 20px;
box-shadow: rgba(0, 0, 0, 0) 0 0px 0px !important;
overflow: hidden;
background: transparent !important;
transition: all .5s cubic-bezier(0.4, 0, 1, 1);
}
.gt_float_switcher .gt-selected {
position: relative;
z-index: 888;
cursor: pointer;
text-transform: uppercase;
overflow: hidden;
text-align: left !important;
width: auto;
height: 36px;
padding: 0px 15px;
border: solid 1px #aaa;
overflow: hidden;
border-radius: 7px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
background: transparent !important;
}
.gt_float_switcher .gt-selected .gt-current-lang {
padding: 0px 0px !important;
color: #fff;
font-weight: bold;
}
.gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code {
position: relative;
top: 2px;
font-size: 12px;
font-weight: normal;
color: #fff;
}
.langbox.on .gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code {
position: relative;
top: 2px;
font-size: 12px;
font-weight: normal;
color: #333;
}
.gt_float_switcher img {
vertical-align: middle;
display: inline-block;
width: 16px !important;
height: auto;
margin: 0 5px 0 0;
border-radius: 3px;
}
.gt_float_switcher .gt-selected .gt-current-lang {
padding: 0px 0px !important;
color: #333;
font-weight: normal;
font-size: 12px;
}
.gt_float_switcher .gt_options {
position: absolute !important;
left: 0px;
top: 40px;
z-index: 777;
min-width: 100px;
max-height: 250px;
overflow-y: auto;
transform: translateY(0px);
opacity: 0;
cursor: pointer;
transition: all .8s cubic-bezier(.3, 1.1, .4, 1.1);
background-color: #fff;
border: none;
border-radius: 7px;
}
.gt_float_switcher .gt_options a {
display: block;
text-decoration: none;
padding: 5px 5px !important;
color: #444;
transition: color .4s linear;
font-size: 12px;
}
.gt_float_switcher .gt_options a img {}.pc-box {
display: block !important;
}
.phone-box {
display: none !important;
}
.pc-box-flex {
display: flex !important;
}
.phone-box-flex {
display: none !important;
}
.mobhead-nav-modalbox {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
margin: 0px 0px;
padding: 0px 0px;
overflow: hidden;
}
.mobhead-nav-modalbg {
box-sizing: border-box;
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
background: #000;
position: fixed;
z-index: 999991;
left: 0px;
top: 0px;
transform: translateX(-150%);
transition: all .2s linear 100ms;
opacity: 0.3;
}
.mobhead-nav-modal {
box-sizing: border-box;
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
background: #fff;
position: fixed;
z-index: 9999999;
left: 0px;
top: 0px;
overflow: hidden;
transform: translateX(-150%);
transition: all .2s linear 100ms;
opacity: 1;
}
.mobhead-nav-navmob {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.mobhead-nav-navmob-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: 75px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
border-bottom: solid 1px #ddd;
}
.mobhead-icon-search {
margin: 0px 10px 0 0;
padding: 0px 0px;
font-size: 18px;
font-weight: normal;
color: #fff;
cursor: pointer;
}
.mobhead-nav-navhead {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
width: 100%;
height: 50px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
}
.mobhead-nav-navhead-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 50%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.mobhead-nav-navhead-l>.img1 {
width: auto;
height: 30px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.mobhead-nav-navhead-r {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 30px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.mobhead-nav-navhead-r>.label-close {
margin: 0px 0px;
padding: 0px 0px;
font-size: 26px;
font-weight: normal;
color: #1f4c98;
cursor: pointer;
}
.mobhead-nav-navmob-b {
box-sizing: border-box;
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px 0px;
padding: 20px 20px;
overflow-x: hidden;
overflow-y: auto;
}
.mobhead-nav-navtree-c {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
background: #fff;
}
.mobhead-nav-navtree {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 100%;
height: auto;
min-height: 50px;
margin: 0px 0px;
padding: 0px 10px;
border-bottom: solid 1px #eee;
cursor: pointer;
}
.mobhead-nav-navtree>.label1 {
padding: 0px 0px;
text-align: left;
font-size: 18px;
font-weight: bold;
color: #121212;
}
.mobhead-nav-navtree>.arr-icon {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 16px;
height: 16px;
margin: 0px 0px;
padding: 0px 0px;
text-align: center;
font-size: 24px;
font-weight: bold;
color: #121212;
cursor: pointer;
}
.mobhead-nav-navtree>.arr-icon.on {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 16px;
height: 16px;
margin: 0px 0px;
padding: 0px 0px;
text-align: center;
font-size: 24px;
font-weight: bold;
color: #121212;
cursor: pointer;
transform: rotate(90deg);
}
.mobhead-nav-navtree-childs {
box-sizing: border-box;
display: none;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 10px 0px;
}
.mobhead-nav-navtree-childs-a {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 100%;
height: auto;
min-height: 40px;
margin: 0px auto;
padding: 0px 20px;
}
.mobhead-nav-navtree-childs-a>.label1 {
padding: 0px 0px;
text-align: left;
font-size: 16px;
font-family: MiSans, MiSans;
font-weight: normal;
color: #333;
}
.mobhead-searchbox {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: 0px;
margin: 0px 0px;
padding: 0px 0px;
background: #eee;
position: fixed;
z-index: 999;
left: 0px;
top: 70px;
overflow: hidden;
transition: all .2s linear 100ms;
}
.mobhead-search {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
width: 100%;
height: 40px;
min-height: 30px;
margin: 30px 30px;
padding: 0px 0px;
border: solid 1px #ddd;
border-radius: 20px;
overflow: hidden;
}
.mobhead-search-l {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.mobhead-search-l>.search-input {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px 0px;
padding: 0px 20px;
border: none;
background: #fff;
text-align: left;
font-size: 14px;
font-weight: normal;
color: #666;
outline: none;
}
.mobhead-search-r {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 80px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.mobhead-search-r>.button-search {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
border: solid 0px #ccc;
border-radius: 0px;
background: #1f4c98;
text-align: center;
font-size: 14px;
font-weight: normal;
color: #fff;
outline: none;
cursor: pointer;
}
.mobhead-nav-modalbg.on {
transform: translateX(0%);
width: 100%;
}
.mobhead-nav-modal.on {
transform: translateX(0%);
width: 70%;
} @media screen and (max-width: 1400px) {
.mainnav-item>.label-text {
padding: 0px 0px;
width: auto;
height: 24px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: #121212;
line-height: 24px;
text-align: left;
font-style: normal;
text-transform: none;
}
}
@media screen and (max-width: 1300px) {
.mainnav-item>.label-text {
padding: 0px 0px;
width: auto;
height: 22px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 14px;
color: #121212;
line-height: 22px;
text-align: left;
font-style: normal;
text-transform: none;
}
.top-tel {
box-sizing: border-box;
margin: 0 20px 0 10px;
padding: 0 0 0 0;
height: auto;
text-align: left;
color: #FFFFFF;
font-family: 16px;
font-weight: 500;
}
.top-wx {
box-sizing: border-box;
margin: 0 20px 0 10px;
padding: 0 0 0 0;
height: auto;
color: #FFFFFF;
height: 20px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
line-height: 20px;
text-align: left;
font-style: normal;
text-transform: none;
}
.headtop-r>.link-lang {
margin: 0px 0px;
padding: 0px 0px;
height: 20px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 16px;
color: #FFFFFF;
line-height: 20px;
text-align: left;
font-style: normal;
text-transform: none;
}
.headtop-r {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-end;
width: 35%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.header-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 230px;
height: 150px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
background: #fff;
}
}
@media screen and (max-width: 980px) {
.pc-box {
display: none !important;
}
.phone-box {
display: block !important;
}
.pc-box-flex {
display: none !important;
}
.phone-box-flex {
display: flex !important;
}
}
@media screen and (max-width: 980px) {
header {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: 100%;
height: 70px;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
position: sticky;
z-index: 99999;
left: 0px;
top: 0px;
background-color: #fff;
}
.header {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
width: 100%;
max-width: 100%;
height: 100%;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
}
.headermain-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: center;
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
background-color: #1F4C9B;
}
.headtop-l {
height: 70px;
overflow: hidden;
position: relative;
}
.headermain-b {
display: none;
}
.header-l>a>.img1 {
width: auto;
height: 50px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.header-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 30%;
height: 70px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
background: #fff;
}
.header-bg {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: 50%;
height: 70px;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
background-color: #1F4C9B;
position: absolute;
z-index: 12;
right: 0px;
top: 0px;
}
.headtop-l>.xshape {
position: absolute;
z-index: 1;
height: 72px;
left: 0px;
}
.headtop-r label.fa-list {
color: #fff;
cursor: pointer;
font-size: 18px;
margin-right: 10px;
}
.searchbox {
position: relative;
box-sizing: border-box;
margin: 0 20px 0 0;
padding: 0 0 0 0;
width: auto;
height: 30px;
overflow: hidden;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-end;
transition: all .3s linear 100ms;
-webkit-transition: all .3s linear 100ms;
}
.homeai {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
}
.homeai-t>.label-head {
padding: 0px 0px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 38px;
color: #FFFFFF;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.homeai-b {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 40px 0px;
padding: 0px 0px;
grid-template-columns: repeat(1, 1fr);
grid-template-rows: auto;
grid-column-gap: 15px;
grid-row-gap: 15px;
}
.homeabout-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 38px;
color: #121212;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.homeabout {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 80px 10px;
}
.searchbox {
display: none;
}
.homecom {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
}
.comlist-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/cmobg.png) no-repeat center center;
background-size: cover;
border-radius: 3px;
}
.comlisthead {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 10px 10px;
}
.comlist-item>.img1 {
width: 90%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.comlisthead-l>.img {
width: 48px;
height: 48px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
border-radius: 100%;
object-fit: cover;
}
.comlisthead-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: auto;
height: auto;
min-height: 30px;
margin: 0px 10px 0 0;
padding: 0px 0px;
}
.comlisthead-info {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.comlisthead-info-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
width: auto;
height: auto;
margin: 0px 10px 0 0;
padding: 0px 0px;
}
.comlisthead-info-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
flex: 1;
}
.comlisthead-r {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px 0px 10px;
padding: 0px 0px;
}
.comlisthead-info-b>.label-date {
padding: 0px 0px;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 24px;
color: rgba(255, 255, 255, 0.8);
line-height: auto;
text-align: left;
font-style: normal;
text-transform: none;
}
.homecon {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
}
.homeconcnt-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.homeconcnt-r {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 20px 0px 0 0;
padding: 0px 0px;
background: #fff;
border-radius: 10px;
overflow: hidden;
}
.onebox-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
position: relative;
}
.onebox-r {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 60px 0px 0 0;
padding: 0px 0px;
position: relative;
}
.footer-top {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.footer-top-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px 20px 0;
padding: 0px 0px;
order: 2;
}
.footer-top-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px 20px 0;
padding: 0px 0px;
order: 1;
}
.footer-top-r {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px 0px 0;
padding: 0px 0px;
order: 3;
}
.footer-top-r>.link-foot2 {
margin: 0px 0px 0px 0px;
padding: 0px 0px;
height: 24px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 18px;
color: #FFFFFF;
line-height: 24px;
text-align: left;
font-style: normal;
text-transform: none;
}
.footer-top-l>.link-foot1 {
margin: 0px 0px 0px 0px;
padding: 0px 0px;
width: auto;
height: 24px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 18px;
color: #FFFFFF;
line-height: 24px;
text-align: left;
font-style: normal;
text-transform: none;
}
.problock {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
}
.goodslist-c {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: auto;
grid-column-gap: 20px;
grid-row-gap: 20px;
}
.footer-top-m>a>.img1 {
width: auto;
height: 53px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.headtop-r {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-end;
width: 50%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.footer {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
}
.footer-b>.label1 {
padding: 0px 0px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 14px;
color: rgba(255, 255, 255, 0.6);
line-height: 21px;
text-align: center;
font-style: normal;
text-transform: none;
}
.subban-ads {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
position: absolute;
z-index: 100;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
}
.culutre {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
}
.culutre-b {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 40px 0px;
padding: 0px 0px;
grid-template-columns: repeat(1, 1fr);
grid-template-rows: auto;
grid-column-gap: 15px;
grid-row-gap: 15px;
}
.subban-ads-l>.label1 {
padding: 0px 0px;
text-align: left;
height: auto;
font-family: Alimama ShuHeiTi, Alimama ShuHeiTi;
font-weight: 700;
font-size: 36px;
color: #FFFFFF;
line-height: 50px;
text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
text-align: left;
font-style: normal;
text-transform: none;
}
.subban-ads-l {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.subban-ads-r {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 0%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.subban-ads-l>.label2 {
margin: 10px 0px;
padding: 0px 0px;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 22px;
color: #FFFFFF;
line-height: 32px;
text-align: left;
font-style: normal;
text-transform: none;
}
.abotucom-c {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 30px 0px 30px 0;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/aboutbg.png) no-repeat center center;
background-size: cover;
}
.abotucom {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
}
.aboucomhead-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.abotucom-l {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.aboucomhead-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
margin: 60px 0px 0 0;
padding: 0px 0px;
}
.abotucom-r {
flex: 1;
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 40px 0px 40px 10px;
}
.aboucomhead-b>.link-about {
width: 100px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
margin: 10px 10px;
height: 28px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: #121212;
line-height: 28px;
text-align: left;
font-style: normal;
text-transform: none;
}
.brief-b {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 40px 0px 0 0;
padding: 0px 0px;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: auto;
grid-column-gap: 30px;
grid-row-gap: 30px;
}
.comlay-m {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 20px 0px;
padding: 0px 0px;
grid-template-columns: repeat(1, 1fr);
grid-template-rows: auto;
grid-column-gap: 20px;
grid-row-gap: 20px;
}
.comlayitem-b>ul li {
margin: 0 0 20px 0;
width: 100%;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: #121212;
line-height: 24px;
text-align: left;
font-style: normal;
text-transform: none;
}
.comlayitem-b {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 10px 0px;
padding: 0px 20px;
text-align: left;
font-size: 14px;
line-height: 1.6;
color: #000;
}
.comlist-box {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: 100%;
height: auto;
text-align: center;
max-width: 100%;
padding: 30px 10px;
}
.tabhonor-nav-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 30px 0px;
padding: 0px 0px;
}
.tabhonor-nav-item {
box-sizing: border-box;
display: inline-flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 46%;
height: auto;
min-height: 36px;
margin: 10px 15px;
padding: 10px 20px;
cursor: pointer;
background-color: #fff;
border-radius: 30px;
}
.tabhonor-nav-item-on {
box-sizing: border-box;
display: inline-flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 46%;
height: auto;
min-height: 36px;
margin: 10px 15px;
padding: 10px 20px;
cursor: pointer;
background: #1F4C9B;
border-radius: 30px;
}
.tabhonor-tab {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.swhonor-c .swiper-item>.img1 {
width: 100%;
height: 500px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: contain;
}
.historybox {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
}
.brief-top-l {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.brief-top-r {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.boss {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
overflow: hidden;
}
.bossinfo-t {
box-sizing: border-box;
min-height: 30px;
margin: 20px 0px;
padding: 10px 30px;
width: 60%;
height: auto;
background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
border-radius: 12px 12px 12px 12px;
}
.bossabout-t>.label-head {
padding: 0px 0px;
text-align: left;
height: 54px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 38px;
color: #FFFFFF;
line-height: 44px;
text-align: center;
font-style: normal;
text-transform: none;
}
.bossabout-t>.label-desc {
margin: 0px 0px 0px 10px;
padding: 0px 0px;
height: 37px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 22px;
color: #FFFFFF;
line-height: 27px;
text-align: center;
font-style: normal;
text-transform: none;
}
.bossinfo-pic {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: center;
width: 30%;
height: 100%;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
position: absolute;
z-index: 10;
top: 0px;
right: 0px;
}
.bossabout-b ul>li {
margin: 10px 0 0px 0;
width: 100%;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 20px;
color: #FFFFFF;
line-height: 28px;
text-align: left;
font-style: normal;
text-transform: none;
}
.expert {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
}
.expertlist-c {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 30px 0px 30px 0;
padding: 0px 0px;
grid-template-columns: repeat(1, 1fr);
grid-template-rows: auto;
grid-column-gap: 20px;
grid-row-gap: 20px;
}
.invest {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
}
.investbox-c {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 30px 0px;
padding: 0px 0px;
grid-template-columns: repeat(1, 1fr);
grid-template-rows: auto;
grid-column-gap: 20px;
grid-row-gap: 20px;
}
.historyboxsw-prev {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
height: auto;
min-height: 30px;
margin: 0px 5px;
padding: 0px 0px;
position: absolute;
z-index: 10;
left: 10px;
top: 47px;
}
.historyboxsw-next {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
height: auto;
min-height: 30px;
margin: 0px 5px;
padding: 0px 0px;
position: absolute;
z-index: 10;
right: 10px;
top: 47px;
}
.mobhead-icon-search {
margin: 0px 20px 0 0;
padding: 0px 0px;
font-size: 26px;
font-weight: normal;
color: #fff;
cursor: pointer;
}
.headtop-r label.fa-list {
color: #fff;
cursor: pointer;
font-size: 26px;
margin-right: 10px;
}
.onesite {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.career {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
}
.careeraditem {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 32%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 10px 10px;
}
.careeraditem-l>.img {
width: 50px;
height: 50px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
border-radius: 100%;
object-fit: cover;
}
.careeraditem-info-t>.label-title {
padding: 0px 0px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 20px;
color: #FFFFFF;
line-height: 40px;
text-align: left;
font-style: normal;
text-transform: none;
}
.careerad {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 10px;
}
.yuannei {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
}
.yuanneibox-c {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 50px 0px 20px 0;
padding: 0px 0px;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: auto;
grid-column-gap: 20px;
grid-row-gap: 20px;
}
.swhosp-c .swiper-item>.img1 {
width: 100%;
height: 260px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.hospital {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
}
.swhomefunc-c {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 0;
margin: 90px auto;
padding: 0 0px;
position: relative;
max-width: 100%;
}
.swhomefunc-c .swiper {
box-sizing: border-box;
width: 80%;
max-width: 100%;
height: auto;
min-height: 0rem;
margin: 0rem auto;
padding: 0rem 0rem 0 0;
overflow: hidden;
position: relative;
left: 0px;
}
.swhomefunc-c .swhomefunc-swiperitem-t>a {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: auto;
}
.swhomefunc-c .swhomefunc-prev {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
min-height: 0.30rem;
margin: 0rem 0.0rem;
padding: 0rem 0rem;
position: absolute;
z-index: 999;
left: 10px;
top: calc(40% + 70px);
transform: translateX(0%) translateY(-50%);
}
.swhomefunc-c .swhomefunc-next {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
min-height: 0.30rem;
margin: 0rem 0.0rem;
padding: 0rem 0rem;
position: absolute;
z-index: 999;
top: 40%;
left: 10px;
transform: translateX(0%) translateY(-50%);
background-color: #fff;
border-radius: 5px;
}
.careercnt-t>.label-head {
padding: 0px 0px;
font-family: MiSans, MiSans;
font-weight: 600;
font-size: 26px;
color: #FFFFFF;
line-height: 38px;
letter-spacing: 1px;
text-align: left;
font-style: normal;
text-transform: none;
}
.careercnt-b ul li {
margin: 5px 0;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 18px;
color: #FFFFFF;
line-height: 26px;
text-align: left;
font-style: normal;
text-transform: none;
}
.productdil-l {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.productdil-r {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.aboucomhead-t>.label-head {
padding: 0px 0px;
text-align: center;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 38px;
color: #121212;
line-height: 44px;
text-align: center;
font-style: normal;
text-transform: none;
}
.joinus {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
}
.joinbox-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
position: relative;
z-index: 1;
}
.joinbox-r {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
position: relative;
}
.joinitem {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 30px 30px;
border-radius: 10px;
background: #fff;
position: static;
z-index: 10;
left: 0px;
}
.artdetail-prenext-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.artdetail-prenext-r {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 10px 0px;
padding: 0px 0px;
}
}
@media screen and (max-width: 750px) {
.homeban-c .swiper-item>.img1 {
width: 100%;
height: auto;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
aspect-ratio: 207/100;
}
.header-bg {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: 39%;
height: 70px;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
background-color: #1F4C9B;
position: absolute;
z-index: 12;
right: 0px;
top: 0px;
}
.header-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 50%;
height: 70px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
background: #fff;
}
.header-l>a>.img1 {
width: auto;
height: 40px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.homeabout {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 30px 10px;
}
.articlebox-item-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
overflow: hidden;
}
.articlebox-item-r {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 10px 0px 0px 0px;
padding: 0px 0px;
}
.positionx {
box-sizing: border-box;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
display: flex;
align-items: center;
justify-content: flex-start;
flex-wrap: wrap;
}
.positionx>.label-item {
margin: 0px 5px 0 0;
padding: 0px 0px;
text-align: left;
font-size: 14px;
font-weight: normal;
color: #666;
word-break: break-all;
}
.proinfo-m4 {
box-sizing: border-box;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
text-align: left;
font-size: 14px;
line-height: 1.6;
color: #000;
}
.protab-tab {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 20px 0px 10px 0;
padding: 0px 0px;
}
.problock-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 10px 0px;
background-color: #E8EDF5;
}
.swhomefunc-c .swhomefunc-next {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
min-height: 0.30rem;
margin: 0rem 0.0rem;
padding: 0rem 0rem;
position: absolute;
z-index: 999;
top: 40%;
left: 10px;
transform: translateX(0%) translateY(-50%);
background-color: #fff;
border-radius: 5px;
}
.swhomefunc-c .swhomefunc-prev {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
min-height: 0.30rem;
margin: 0rem 0.0rem;
padding: 0rem 0rem;
position: absolute;
z-index: 999;
left: 10px;
top: calc(40% + 60px);
transform: translateX(0%) translateY(-50%);
}
.swhomefunc-c .swhomefunc-swiperitem-t>a>img {
width: 100%;
height: auto;
margin: 0rem auto;
padding: 0rem 0rem;
object-fit: cover;
}
.swhomefunc-c .swhomefunc-prev>.label-arrow {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
margin: 0rem 0rem;
padding: 0rem 0rem;
font-size: 20px;
font-weight: normal;
color: #1f4c98;
overflow: hidden;
cursor: pointer;
border: solid 1px #ddd;
border-radius: 5px;
background-color: #fff;
}
.swhomefunc-c .swhomefunc-next>.label-arrow {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
margin: 0rem 0rem;
padding: 0rem 0rem;
font-size: 20px;
font-weight: normal;
color: #1f4c98;
overflow: hidden;
cursor: pointer;
border-radius: 100%;
}
.careerad-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 40px 0px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/ad2-mobile.png) no-repeat center center;
background-size: cover;
}
.aboutad-t>.label-title {
box-sizing: border-box;
width: 100%;
padding: 0px 40px;
text-align: center;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 20px;
color: #1F4C9B;
line-height: 32px;
text-align: center;
font-style: normal;
text-transform: none;
}
.aboutad-b>.label-desc {
padding: 0px 0px;
text-align: center;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: rgba(31, 76, 155, 0.8);
line-height: 18px;
text-align: center;
font-style: normal;
text-transform: none;
}
.culutre-t>.label-head {
padding: 0px 0px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 38px;
color: #FFFFFF;
line-height: 44px;
text-align: center;
font-style: normal;
text-transform: none;
}
.comlay-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 10px 10px;
height: auto;
background: #1F4C9B;
border-radius: 12px 12px 12px 12px;
}
.historyboxsw-text-l {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 96%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.historyboxsw-text-l>.label-desc {
margin: 0px 0px;
padding: 0px 0px;
width: 100%;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: #121212;
line-height: 22px;
text-align: left;
font-style: normal;
text-transform: none;
}
.comlay-t>.label-head {
width: 100%;
padding: 0px 45px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 20px;
color: #FFFFFF;
line-height: 26px;
text-align: center;
font-style: normal;
text-transform: none;
}
.comlayitem-b>ul li {
margin: 0 0 20px 0;
width: 100%;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: #121212;
line-height: 22px;
text-align: left;
font-style: normal;
text-transform: none;
}
.invest-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 38px;
color: #121212;
line-height: 44px;
text-align: center;
font-style: normal;
text-transform: none;
}
.honorbox-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 38px;
color: #121212;
line-height: 54px;
text-align: center;
font-style: normal;
text-transform: none;
}
.tabhonor-nav-item-on {
box-sizing: border-box;
display: inline-flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 48%;
height: auto;
min-height: 30px;
margin: 10px 0px;
padding: 5px 10px;
cursor: pointer;
background: #1F4C9B;
border-radius: 10px;
}
.tabhonor-nav-item-on>.label-text {
padding: 0px 0px;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 16px;
color: #FFFFFF;
line-height: 1.3;
text-align: center;
font-style: normal;
text-transform: none;
cursor: pointer;
}
.tabhonor-nav-item {
box-sizing: border-box;
display: inline-flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 48%;
height: auto;
min-height: 30px;
margin: 10px 0px;
padding: 5px 10px;
cursor: pointer;
background-color: #fff;
border-radius: 10px;
}
.tabhonor-nav-item>.label-text {
padding: 0px 0px;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 16px;
color: #1F4C9B;
line-height: 30px;
text-align: center;
font-style: normal;
text-transform: none;
cursor: pointer;
}
.honorbox {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
}
.expertlast-b ul li {
margin: 10px 0;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: #FFFFFF;
line-height: 27px;
text-align: left;
font-style: normal;
text-transform: none;
}
.expertlasth-r>.label-title {
width: 80px;
margin-right: 10px;
padding: 0px 0px;
text-align: left;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 20px;
color: #FFFFFF;
line-height: 37px;
text-align: left;
font-style: normal;
text-transform: none;
}
.expertlasth-r>.label-desc {
padding: 0px 0px;
width: auto;
height: 21px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 14px;
color: rgba(255, 255, 255, 0.6);
line-height: 21px;
text-align: left;
font-style: normal;
text-transform: none;
}
.expertlasth-r {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.expertlasth-r>.label-sp {
margin: 0px 5px;
padding: 0px 0px;
text-align: center;
font-size: 14px;
font-weight: normal;
line-height: 1.6;
color: rgba(255, 255, 255, 0.6);
display: none;
}
.expertman-l>.img {
width: 66px;
height: 66px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
border-radius: 100%;
object-fit: cover;
}
.expertman-info-t>.label-title {
padding: 0px 0px;
height: 27px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 20px;
color: #121212;
line-height: 27px;
text-align: left;
font-style: normal;
text-transform: none;
}
.expertman-info-desc>.label-desc {
margin: 0px 0px;
height: 20px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: rgba(18, 18, 18, 0.4);
line-height: auto;
text-align: left;
font-style: normal;
text-transform: none;
}
.expertman-info-b {
box-sizing: border-box;
flex: 1;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
margin: 0px 0px;
padding: 0px 0px;
overflow: hidden;
}
.expertrow-m ul li {
margin: 10px 0;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: #121212;
line-height: 27px;
text-align: left;
font-style: normal;
text-transform: none;
}
.expert-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 38px;
color: #121212;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.boss-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 38px;
color: #121212;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.swhonor-c .swiper-item>.img1 {
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: contain;
}
.swhonor-c .swhonor-prev>.label-arrow {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 38px;
height: 38px;
margin: 0px 0px;
padding: 0px 0px;
border: solid 1px #1F4C9B;
border-radius: 10px;
background: #fff;
font-size: 22px;
color: #1F4C9B;
overflow: hidden;
cursor: pointer;
}
.swhonor-c .swhonor-next>.label-arrow {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 38px;
height: 38px;
margin: 0px 0px;
padding: 0px 0px;
border: solid 1px #1F4C9B;
border-radius: 10px;
background: #fff;
font-size: 22px;
color: #1F4C9B;
cursor: pointer;
}
.bossinfo-pic {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: center;
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
position: static;
z-index: 10;
top: 0px;
right: 0px;
}
.bossinfo-t {
box-sizing: border-box;
min-height: 30px;
margin: 20px 0px;
padding: 10px 30px;
width: 100%;
height: auto;
background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
border-radius: 12px 12px 12px 12px;
}
.bossinfo-t {
box-sizing: border-box;
min-height: 30px;
margin: 20px 0px;
padding: 10px 20px 0 30px;
width: 100%;
height: auto;
background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
border-radius: 12px 12px 12px 12px;
}
.bossinfo-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 20px 0px 0 0;
padding: 30px 20px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/bosssbg.png) no-repeat center center;
background-size: cover;
}
.bossinfo-t ul>li {
margin: 0 0;
width: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: #121212;
line-height: 40px;
text-align: left;
font-style: normal;
text-transform: none;
}
.bossabout {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.bossabout-b ul>li {
margin: 10px 0 0px 0;
width: 100%;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 16px;
color: #FFFFFF;
line-height: 28px;
text-align: left;
font-style: normal;
text-transform: none;
}
.bossabout-t>.label-head {
padding: 0px 0px;
text-align: left;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 28px;
color: #FFFFFF;
line-height: 44px;
text-align: center;
font-style: normal;
text-transform: none;
}
.birefunit-t>.label-text {
padding: 0px 0px;
text-align: left;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 28px;
color: #1F4C9B;
line-height: 44px;
text-align: left;
font-style: normal;
text-transform: none;
}
.birefunit-b>.label-desc {
padding: 0px 0px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: rgba(18, 18, 18, 0.8);
line-height: 24px;
text-align: center;
font-style: normal;
text-transform: none;
}
.brief-b {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 30px 0px 0 0;
padding: 0px 0px;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: auto;
grid-column-gap: 10px;
grid-row-gap: 10px;
}
.aboucomhead-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
height: auto;
margin: 30px 0px 0 0;
padding: 0px 10px;
}
.aboucomhead-b>.link-about {
width: 45%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
margin: 10px 0px;
height: 28px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: #121212;
line-height: 28px;
text-align: left;
font-style: normal;
text-transform: none;
}
.brief-top-l>.label-head {
margin: 0px 0 10px 0;
padding: 0px 0px;
text-align: left;
min-height: 34px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 24px;
color: #121212;
line-height: 34px;
text-align: left;
font-style: normal;
text-transform: none;
}
.brief-head {
box-sizing: border-box;
margin: 30px auto;
padding: 0 0 0 0;
width: 100%;
height: auto;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
}
.hxad {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px 0 0px;
padding: 0 10px;
grid-template-columns: repeat(1, 1fr);
grid-template-rows: auto;
grid-column-gap: 0px;
grid-row-gap: 0px;
max-width: 100%;
}
.hxaditem-t>.label-title {
padding: 0px 0px;
width: 100%;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 20px;
color: #1F4C9B;
line-height: 27px;
text-align: left;
font-style: normal;
text-transform: none;
}
.hxaditem {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px 10px 0;
padding: 0px 0px;
}
.historyboxsw-cir {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
margin: 0px 0px 0 0;
padding: 0px 0px 0 35px;
position: relative;
z-index: 100;
}
.hxaditem-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 10px 0px;
padding: 0px 0px;
}
.hxaditem-b>.label1 {
padding: 0px 0px;
width: 100%;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: rgba(31, 76, 155, 0.8);
line-height: 22px;
text-align: left;
font-style: normal;
text-transform: none;
}
.historyboxsw-next>.label-arrow {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
margin: 0px 0px;
padding: 0px 0px;
border-radius: 100%;
background: #fff;
font-size: 16px;
color: #1f4c98;
cursor: pointer;
}
.historyboxsw-prev>.label-arrow {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
margin: 0px 0px;
padding: 0px 0px;
border-radius: 100%;
background: #fff;
font-size: 16px;
color: #1f4c98;
overflow: hidden;
cursor: pointer;
}
.historyboxsw-prev {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
position: absolute;
z-index: 10;
left: 0px;
top: 60px;
}
.historyboxsw-next {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
position: absolute;
z-index: 10;
right: 0px;
top: 60px;
}
.develop-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 38px;
color: #121212;
line-height: 44px;
text-align: center;
font-style: normal;
text-transform: none;
}
.historyboxsw-text-l {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
.abotucom-r {
flex: 1;
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 40px 0px 40px 0px;
}
.culutre-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 50px 0px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/culturebg.png) no-repeat center center;
background-size: cover;
overflow: hidden;
}
.culutreitem-b>.p1 {
margin: 0px 0px;
padding: 0px 0px;
text-align: left;
width: 100%;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 18px;
color: #FFFFFF;
line-height: 30px;
text-align: left;
font-style: normal;
text-transform: none;
}
.culutreitembox {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 20px 20px 10px 20px;
border-radius: 10px;
position: relative;
overflow: hidden;
}
.homecom-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 10px 0px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/homelay.png) no-repeat center center;
background-size: cover;
background-color: #fff;
}
.develop-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 40px 0px;
background-color: #F5F8FC;
}
.bossinfo-t>ul{
margin: 0 0;
padding: 0 0px;
}
.bossabout-b>ul{
margin: 0 0;
padding: 0 20px;
}
.bossinfo-t ul>li {
margin: 0 0;
width: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: #121212;
line-height: 30px;
text-align: left;
font-style: normal;
text-transform: none;
}
.haccp-desc {
width: 100%;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 18px;
color: #121212;
line-height: 26px;
text-align: left;
font-style: normal;
text-transform: none;
box-sizing: border-box;
padding: 0 20px;
}
#sw3 .swiper-slide {
width: 100%;
}
#sw3 .swiper-item {
padding: 0 0px;
box-sizing: border-box;
background-color: #fff;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
#sw3 .swiper-item img {
aspect-ratio: 335/474;
}
#sw3 .swiper-slide.w50{
width: 100%!important;
aspect-ratio: 337/474;
}
}
@media screen and (max-width: 550px) {
.gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code {
position: relative;
top: 2px;
font-size: 12px;
font-weight: normal;
color: #fff;
display: none!important;
}
.gt_float_switcher .gt-selected {
position: relative;
z-index: 888;
cursor: pointer;
text-transform: uppercase;
overflow: hidden;
text-align: left !important;
width: auto;
height: 36px;
padding: 0px 15px;
border: none!important;
overflow: hidden;
border-radius: 7px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
background: transparent !important;
}
}
@media screen and (max-width: 500px) {
.onesite-desc>.label-desc {
padding: 0px 0px;
text-align: center;
width: auto;
height: 30px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: rgba(18, 18, 18, 0.6);
line-height: 30px;
text-align: center;
font-style: normal;
text-transform: none;
}
.homeabout-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 28px;
color: #121212;
line-height: 34px;
text-align: center;
font-style: normal;
text-transform: none;
}
.onebox-title1 {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 200px;
height: 40px;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/onsite.png) no-repeat center center;
background-size: cover;
position: absolute;
z-index: 10;
top: -20px;
right: 20px;
}
.oneboxrow-b ul li {
margin: 4px 0;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 14px;
color: #121212;
line-height: 18px;
text-align: left;
font-style: normal;
text-transform: none;
list-style: none;
}
.oneboxrow-b ul li>img {
height: 14px;
width: auto;
}
.onebox-title1>.label-head {
padding: 0px 0px;
text-align: left;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 16px;
color: #FFFFFF;
line-height: 32px;
text-align: center;
font-style: normal;
text-transform: none;
}
.oneboxrow-t {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
height: 30px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px 0px 20px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/onetbg.png) no-repeat center center;
background-size: cover;
}
.oneboxrow-t>.label1 {
padding: 0px 0px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 16px;
color: #121212;
line-height: 27px;
text-align: left;
font-style: normal;
text-transform: none;
}
.onebox-cnt {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 76%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
position: absolute;
z-index: 10;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
}
.onecenter {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: 100%;
height: auto;
text-align: center;
width: 200px;
height: 160px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/homesobg.png) no-repeat center center;
background-size: cover;
position: absolute;
z-index: 10;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.onecenter-t {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: auto;
height: 40px;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
font-family: MiSans, MiSans;
font-weight: 600;
font-size: 30px;
color: #1F4C9B;
line-height: 36px;
letter-spacing: 1px;
text-align: center;
font-style: italic;
text-transform: none;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/onelinebg.png) no-repeat center 50px;
background-size: cover;
position: relative;
}
.onecenter-m {
box-sizing: border-box;
margin: 0 0 0 -10px;
padding: 0 0 0 0px;
width: auto;
height: 40px;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
font-family: MiSans, MiSans;
font-weight: normal;
font-size: 26px;
color: #1F4C9B;
line-height: 30px;
letter-spacing: 1px;
text-align: center;
font-style: italic;
text-transform: none;
}
.onecenter-b {
box-sizing: border-box;
margin: 0 0 0 -40px;
padding: 0 0 0 0;
width: auto;
height: 40px;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
font-family: MiSans, MiSans;
font-weight: normal;
font-size: 26px;
color: #1F4C9B;
line-height: 30px;
letter-spacing: 1px;
text-align: center;
font-style: italic;
text-transform: none;
}
.onebox-title2 {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 200px;
height: 40px;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/onsite.png) no-repeat center center;
background-size: cover;
position: absolute;
z-index: 10;
left: 20px;
bottom: -20px;
}
.onebox-title2>.label-head {
padding: 0px 0px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 16px;
color: #FFFFFF;
line-height: 32px;
text-align: center;
font-style: normal;
text-transform: none;
}
.onebox-cnt.r2 {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 76%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
position: absolute;
z-index: 10;
left: 55%;
top: 54%;
transform: translateX(-50%) translateY(-50%);
}
.homeabout-m>.label-desc {
padding: 0px 0px;
text-align: center;
width: auto;
min-height: 30px;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: rgba(18, 18, 18, 0.6);
line-height: 30px;
text-align: center;
font-style: normal;
text-transform: none;
}
.homeabout-m {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px 10px 0;
padding: 0px 0px;
}
.onebox {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
height: auto;
min-height: 30px;
margin: 60px 0px;
padding: 0px 0px;
position: relative;
}
.homeai-t>.label-head {
padding: 0px 0px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 28px;
color: #FFFFFF;
line-height: 34px;
text-align: center;
font-style: normal;
text-transform: none;
}
.homeaiitem-b>.p1 {
margin: 0px 0px;
padding: 0px 0px;
text-align: left;
width: 100%;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: #FFFFFF;
line-height: 30px;
text-align: left;
font-style: normal;
text-transform: none;
}
.comlist-item>.img1 {
width: 98%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.comlisthead-l>.img {
width: 28px;
height: 28px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
border-radius: 100%;
object-fit: cover;
}
.comlisthead-info-title>.label-title {
margin: 0px 0px;
padding: 0px 0px;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 20px;
color: #FFFFFF;
line-height: auto;
text-align: left;
font-style: normal;
text-transform: none;
}
.comlisthead-info-b>.label-date {
padding: 0px 0px;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 14px;
color: rgba(255, 255, 255, 0.8);
line-height: auto;
text-align: left;
font-style: normal;
text-transform: none;
}
.comlisthead {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-between;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
}
.homecom-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 30px 0px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/homelay.png) no-repeat center center;
background-size: cover;
background-color: #fff;
}
.homeai-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 40px 0px 0 0;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/homeaibg.png) no-repeat center center;
background-size: cover;
}
.homecon-t>.label-head {
padding: 0px 0px;
text-align: center;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 38px;
color: #FFFFFF;
line-height: 43px;
text-align: center;
font-style: normal;
text-transform: none;
}
.homecon-m2>.label-desc {
padding: 0px 0px;
text-align: center;
height: 30px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: rgba(255, 255, 255, 0.7);
line-height: 30px;
text-align: center;
font-style: normal;
text-transform: none;
}
.conitem-l>.img {
width: auto;
height: 52px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
}
.conitem-info-t>.label-title {
padding: 0px 0px;
height: 32px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: #FFFFFF;
line-height: 32px;
text-align: center;
font-style: normal;
text-transform: none;
}
.conitem-info-desc>.label-desc {
margin: 0px 0px;
padding: 0px 0px;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 16px;
color: #FFFFFF;
line-height: 22px;
text-align: left;
font-style: normal;
text-transform: none;
}
.homeaiitem-t>.label-title {
padding: 0px 0px;
text-align: left;
width: auto;
height: 37px;
font-family: MiSans, MiSans;
font-weight: 600;
font-size: 22px;
color: #FFFFFF;
line-height: 37px;
text-align: left;
font-style: normal;
text-transform: none;
}
.conqrcode-l>.img {
width: auto;
height: 78px;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: cover;
border-radius: 5px;
}
.conqrcode-info-t>.label-title {
padding: 0px 0px;
height: 27px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 20px;
color: #FFFFFF;
line-height: 27px;
text-align: center;
font-style: normal;
text-transform: none;
}
.conqrcode-info-desc>.label-desc {
margin: 0px 0px;
padding: 0px 0px;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 16px;
color: #FFFFFF;
line-height: 1.6;
text-align: left;
font-style: normal;
text-transform: none;
}
.w48 {
width: 100% !important;
}
.onesite-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 26px;
color: #121212;
line-height: 44px;
text-align: center;
font-style: normal;
text-transform: none;
}
.factory-t>.label-title {
padding: 0px 0px;
text-align: center;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 26px;
color: #FFFFFF;
line-height: 34px;
text-align: center;
font-style: normal;
text-transform: none;
}
.factory-b>label {
font-weight: normal;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 18px;
color: rgba(255, 255, 255, 0.6);
line-height: 30px;
text-align: center;
font-style: normal;
text-transform: none;
}
.factory-b {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 10px;
}
.swhomefunc-c {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 0;
margin: 30px auto;
padding: 0 0px;
position: relative;
max-width: 100%;
}
.swhomefunc-c .swhomefunc-swiperitem-title>.label-title {
margin: 0rem 0rem;
padding: 0rem 0rem;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 18px;
color: #121212;
line-height: 30px;
text-align: center;
font-style: normal;
text-transform: none;
}
.swhomefunc-c .swhomefunc-swiperitem-title>.label-title2 {
margin: 0px 0;
padding: 5px 10px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: #1F4C9B;
line-height: 30px;
text-align: center;
font-style: normal;
text-transform: none;
background-color: #F5F7FA;
}
.career-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 26px;
color: #121212;
line-height: 34px;
text-align: center;
font-style: normal;
text-transform: none;
}
.career-b>label {
font-weight: normal;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 18px;
color: rgba(18, 18, 18, 0.6);
line-height: 30px;
text-align: center;
font-style: normal;
text-transform: none;
}
.careerbox {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 30px 0px 0 0;
padding: 0px 0px;
grid-template-columns: repeat(1, 1fr);
grid-template-rows: auto;
grid-column-gap: 0px;
grid-row-gap: 0px;
}
.subban-ads-l>.label1 {
padding: 0px 0px;
text-align: left;
height: auto;
font-family: Alimama ShuHeiTi, Alimama ShuHeiTi;
font-weight: 700;
font-size: 26px;
color: #FFFFFF;
line-height: 50px;
text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
text-align: left;
font-style: normal;
text-transform: none;
}
.subban-ads-l>.label2 {
margin: 10px 0px;
padding: 0px 0px;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 18px;
color: #FFFFFF;
line-height: 32px;
text-align: center;
font-style: normal;
text-transform: none;
}
.subban-ads-l>.label2 img {
height: 16px;
}
.subban-box>.img1 {
width: 100%;
height: auto;
min-height: 200px;
margin: 0px 0px;
padding: 0px 0px;
position: relative;
z-index: 1;
object-fit: cover;
}
.careerbox-l {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 20px 0px 0 0;
padding: 0px 0px;
position: relative;
}
.careercnt-t>.label-head {
padding: 0px 0px;
font-family: MiSans, MiSans;
font-weight: 600;
font-size: 22px;
color: #FFFFFF;
line-height: 38px;
letter-spacing: 1px;
text-align: left;
font-style: normal;
text-transform: none;
}
.careercnt-b ul li {
margin: 5px 0;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: #FFFFFF;
line-height: 22px;
text-align: left;
font-style: normal;
text-transform: none;
}
.yuannei-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 26px;
color: #121212;
line-height: 33px;
text-align: center;
font-style: normal;
text-transform: none;
}
.yuanneibox-c {
box-sizing: border-box;
display: grid;
width: 100%;
height: auto;
min-height: 30px;
margin: 50px 0px 20px 0;
padding: 0px 0px;
grid-template-columns: repeat(1, 1fr);
grid-template-rows: auto;
grid-column-gap: 20px;
grid-row-gap: 20px;
}
.hospital-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 26px;
color: #121212;
line-height: 33px;
text-align: center;
font-style: normal;
text-transform: none;
}
.swhosp-c .swhosp-text-l>.label-title {
box-sizing: border-box;
padding: 0px 0px;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 22px;
color: #121212;
line-height: 32px;
text-align: left;
font-style: normal;
text-transform: none;
}
.swhosp-c .swhosp-text-l>.label-desc {
box-sizing: border-box;
margin: 10px 0px;
padding: 5px 10px;
border-radius: 5px;
background: #E8EDF5;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 18px;
color: #1F4C9B;
line-height: 22px;
text-align: left;
font-style: normal;
text-transform: none;
}
.yuanitem-m>.label-head {
padding: 0px 0px;
text-align: left;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 22px;
color: #121212;
line-height: 37px;
text-align: left;
font-style: normal;
text-transform: none;
}
.careeraditem {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 10px 10px;
}
.homecom-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 38px;
color: #121212;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
.joinus-t>.label-title {
font-size: 38px;
}
.joinitem-row-r {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: 100%;
height: auto;
text-align: left;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
.comlayitem-b>ul {
margin: 0 0;
padding: 0 10px;
}
.bossinfo-pic {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: center;
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px auto;
padding: 0px 10px;
position: static;
z-index: 10;
top: 0px;
right: 0px;
}
.bossinfo-pic>.img1 {
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
object-fit: contain;
}
.boss-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 50px 0px 0 0;
background-color: #F6F8FE;
}
}html[lang='en'] .mainnav-item>.label-text {
padding: 0px 0px;
width: auto;
height: 28px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 14px;
color: #121212;
line-height: 28px;
text-align: left;
font-style: normal;
text-transform: none;
}
html[lang='en'] .subban-ads-l>.label2 {
margin: 10px 0px;
padding: 0px 0px;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 32px;
color: #FFFFFF;
line-height: 52px;
text-align: left;
font-style: normal;
text-transform: none;
}
html[lang='en'] .mainnav-c {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: center;
width: 100%;
height: 100%;
min-height: 30px;
margin: 0px 0px 0 0px;
padding: 0px 0px;
background: #fff;
}
html[lang='en'] .mainnav-item {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: auto;
height: 100%;
min-height: 30px;
margin: 0px 6px;
padding: 0px 0px;
cursor: pointer;
position: relative;
}
html[lang='en'] .birefunit-t>.label-unit {
margin: 0px 0px 0px 5px;
padding: 0px 0px;
width: auto;
min-height: 24px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: rgba(18, 18, 18, 0.8);
line-height: 24px;
text-align: left;
font-style: normal;
text-transform: none;
}
html[lang='en'] .birefunit-b>.label-desc {
margin: 10px 0 0 0;
padding: 0px 0px;
text-align: center;
width: auto;
min-height: 24px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: rgba(18, 18, 18, 0.8);
line-height: 24px;
text-align: center;
font-style: normal;
text-transform: none;
}
html[lang='en'] .subnavitem>.link-text {
margin: 0px 0px 0px 10px;
padding: 0px 0px;
text-align: left;
font-size: 14px;
font-weight: normal;
line-height: 1.6;
color: #121212;
cursor: pointer;
}
html[lang='en'] .birefunit-t>.label-text {
padding: 0px 0px;
text-align: left;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 38px;
color: #1F4C9B;
line-height: 64px;
text-align: left;
font-style: normal;
text-transform: none;
}
html[lang='en'] .expertlast {
box-sizing: border-box;
display: none;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 520px;
margin: 0px 0px;
padding: 25px 25px;
border-radius: 10px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/expbg.png) no-repeat right 0px;
background-size: contain;
background-color: #1F4C9B;
}
html[lang='en'] .subnav {
display: none;
box-sizing: border-box;
width: 260px;
min-width: 150px;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 10px 20px;
background: #fff;
position: absolute;
z-index: 100;
left: 0px;
top: 99%;
box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}
html[lang='en'] .homeai-t>.label-head {
padding: 0px 0px;
text-align: center;
width: auto;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 26px;
color: #FFFFFF;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
html[lang='en'] .comlisthead-info-title>.label-title {
margin: 0px 0px;
padding: 0px 0px;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 18px;
color: #FFFFFF;
line-height: 22px;
text-align: left;
font-style: normal;
text-transform: none;
}
html[lang='en'] .comlisthead-info-b>.label-date {
padding: 0px 0px;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 14px;
color: rgba(255, 255, 255, 0.8);
line-height: 22px;
text-align: left;
font-style: normal;
text-transform: none;
}
html[lang='en'] .oneboxrow-t>.label1 {
padding: 0px 0px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 16px;
color: #121212;
line-height: 27px;
text-align: left;
font-style: normal;
text-transform: none;
}
html[lang='en'] .oneboxrow-b ul li {
margin: 0px 0;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 14px;
color: #121212;
line-height: 22px;
text-align: left;
font-style: normal;
text-transform: none;
list-style: none;
}
html[lang='en'] .oneboxrow-b ul li img {
width: 13px;
height: 13px;
margin: 8px 5px 0 0;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 14px;
color: #121212;
line-height: 13px;
text-align: left;
font-style: normal;
text-transform: none;
list-style: none;
}
html[lang='en'] .onecenter-t {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: auto;
height: 70px;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
font-family: MiSans, MiSans;
font-weight: 600;
font-size: 30px;
color: #1F4C9B;
line-height: 66px;
letter-spacing: 1px;
text-align: center;
font-style: italic;
text-transform: none;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/onelinebg.png) no-repeat center 50px;
background-size: cover;
position: relative;
}
html[lang='en'] .onecenter-m {
box-sizing: border-box;
margin: 0 0 0 -10px;
padding: 0 0 0 0px;
width: auto;
height: 60px;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
font-family: MiSans, MiSans;
font-weight: normal;
font-size: 26px;
color: #1F4C9B;
line-height: 46px;
letter-spacing: 1px;
text-align: center;
font-style: italic;
text-transform: none;
}
html[lang='en'] .onecenter-b {
box-sizing: border-box;
margin: 0 0 0 -40px;
padding: 0 0 0 0;
width: auto;
height: 60px;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
font-family: MiSans, MiSans;
font-weight: normal;
font-size: 18px;
color: #1F4C9B;
line-height: 46px;
letter-spacing: 1px;
text-align: center;
font-style: italic;
text-transform: none;
}
html[lang='en'] .homeabout-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: 64px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 28px;
color: #121212;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
html[lang='en'] .onebox-title1>.label-head {
padding: 0px 0px;
text-align: left;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 22px;
color: #FFFFFF;
line-height: 42px;
text-align: center;
font-style: normal;
text-transform: none;
}
html[lang='en'] .onebox-title2>.label-head {
padding: 0px 0px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 22px;
color: #FFFFFF;
line-height: 42px;
text-align: center;
font-style: normal;
text-transform: none;
}
html[lang='en'] .expertrow-m ul li {
margin: 10px 0;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: #121212;
line-height: 27px;
text-align: left;
font-style: normal;
text-transform: none;
}
html[lang='en'] .expertrow {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 520px;
margin: 0px 0px;
padding: 25px 25px;
border-radius: 10px;
background: #fff;
}
html[lang='en'] .expertlast-b ul li {
margin: 10px 0;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: #FFFFFF;
line-height: 27px;
text-align: left;
font-style: normal;
text-transform: none;
}
html[lang='en'] .investbox-t>.label-head {
padding: 0px 0px;
width: 100%;
height: 37px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 28px;
color: #FFFFFF;
line-height: 37px;
text-align: left;
font-style: normal;
text-transform: none;
}
html[lang='en'] .comlay-t>.label-head {
padding: 0px 0px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 18px;
color: #FFFFFF;
line-height: 36px;
text-align: center;
font-style: normal;
text-transform: none;
}
html[lang='en'] .aboucomhead-t>.label-head {
width: 100%;
padding: 0px 0px;
text-align: center;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 20px;
color: #121212;
line-height: 34px;
text-align: center;
font-style: normal;
text-transform: none;
}
html[lang='en'] .aboucomhead-b>.link-about {
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
margin: 10px 0px;
height: 28px;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: #121212;
line-height: 28px;
text-align: left;
font-style: normal;
text-transform: none;
}
html[lang='en'] .historyboxsw-text-l>.label-desc {
margin: 0px 0px;
padding: 0px 0px;
width: 100%;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 18px;
color: #121212;
line-height: 32px;
text-align: left;
font-style: normal;
text-transform: none;
}
html[lang='en'] .tabhonor-nav-item>.label-text {
padding: 0px 0px;
min-height: 30px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 16px;
color: #1F4C9B;
line-height: 30px;
text-align: center;
font-style: normal;
text-transform: none;
cursor: pointer;
}
html[lang='en'] .brief-top-l>.p2 {
margin: 30px 0px;
padding: 0px 0px;
width: 100%;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 18px;
color: rgba(18, 18, 18, 0.8);
line-height: 34px;
text-align: left;
font-style: normal;
text-transform: none;
}
html[lang='en'] .bossinfo-t ul>li {
margin: 0 0;
width: 80%;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 18px;
color: #121212;
line-height: 30px;
text-align: left;
font-style: normal;
text-transform: none;
}
html[lang='en'] .pfcertbox>.label-desc2 {
width: 100%;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 12px;
color: #121212;
line-height: 18px;
text-align: left;
font-style: normal;
text-transform: none;
}
html[lang='en'] .pfcertbox>.label-head {
font-weight: normal;
width: auto;
min-height: 60px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 16px;
color: #1F4C9B;
line-height: 22px;
text-align: left;
font-style: normal;
text-transform: none;
}
html[lang='en'] .swhosp-c .swhosp-text-l>.label-title {
box-sizing: border-box;
padding: 0px 0px;
width: auto;
min-height: 42px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 22px;
color: #121212;
line-height: 42px;
text-align: left;
font-style: normal;
text-transform: none;
}
html[lang='en'] .swhosp-c .swhosp-text-l>.label-desc {
box-sizing: border-box;
margin: 10px 0px;
padding: 5px 10px;
border-radius: 5px;
background: #E8EDF5;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: #1F4C9B;
line-height: 32px;
text-align: left;
font-style: normal;
text-transform: none;
}
html[lang='en'] .careeraditem-info-t>.label-title {
padding: 0px 0px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 20px;
color: #FFFFFF;
line-height: 40px;
text-align: left;
font-style: normal;
text-transform: none;
}
@media screen and (max-width: 750px) {
html[lang='en'] .footer-top-l {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px 20px 0;
padding: 0px 0px;
order: 2;
}
html[lang='en'] .footer-top-r {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px 0px 0;
padding: 0px 0px;
order: 3;
}
html[lang='en'] .homeabout-t>.label-title {
margin: 10px 0 0 0;
padding: 0px 0px;
text-align: center;
width: auto;
min-height: 64px;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 24px;
color: #121212;
line-height: 34px;
text-align: center;
font-style: normal;
text-transform: none;
}
html[lang='en'] .oneboxrow-b ul li {
margin: 0px 0;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 12px;
color: #121212;
line-height: 16px;
text-align: left;
font-style: normal;
text-transform: none;
list-style: none;
}
html[lang='en'] .onebox-title1>.label-head {
padding: 0px 0px;
text-align: left;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 14px;
color: #FFFFFF;
line-height: 42px;
text-align: center;
font-style: normal;
text-transform: none;
}
html[lang='en'] .oneboxrow-t>.label1 {
padding: 0px 0px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 14px;
color: #121212;
line-height: 27px;
text-align: left;
font-style: normal;
text-transform: none;
}
html[lang='en'] .onebox-cnt {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 86%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
position: absolute;
z-index: 10;
left: 50%;
top: 46%;
transform: translateX(-50%) translateY(-50%);
}
html[lang='en'] .oneboxrow-b ul {
margin: 0px 0;
width: 100%;
padding: 0 0;
}
html[lang='en'] .onecenter-m {
box-sizing: border-box;
margin: 0 0 0 -10px;
padding: 0 0 0 0px;
width: auto;
height: 40px;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
font-family: MiSans, MiSans;
font-weight: normal;
font-size: 18px;
color: #1F4C9B;
line-height: 40px;
letter-spacing: 1px;
text-align: center;
font-style: italic;
text-transform: none;
}
html[lang='en'] .onecenter-t {
box-sizing: border-box;
margin: 0 auto;
padding: 0 0 0 0;
width: auto;
height: 70px;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
font-family: MiSans, MiSans;
font-weight: 600;
font-size: 28px;
color: #1F4C9B;
line-height: 56px;
letter-spacing: 1px;
text-align: center;
font-style: italic;
text-transform: none;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/onelinebg.png) no-repeat center 50px;
background-size: cover;
position: relative;
}
html[lang='en'] .onecenter-b {
box-sizing: border-box;
margin: 0 0 0 -40px;
padding: 0 0 0 0;
width: auto;
height: 40px;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
font-family: MiSans, MiSans;
font-weight: normal;
font-size: 18px;
color: #1F4C9B;
line-height: 46px;
letter-spacing: 1px;
text-align: center;
font-style: italic;
text-transform: none;
}
html[lang='en'] .onebox-title2>.label-head {
padding: 0px 0px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 14px;
color: #FFFFFF;
line-height: 42px;
text-align: center;
font-style: normal;
text-transform: none;
}
html[lang='en'] .onebox-title2 {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 250px;
height: 40px;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/onsite.png) no-repeat center center;
background-size: cover;
position: absolute;
z-index: 10;
left: 20px;
bottom: -20px;
}
html[lang='en'] .onebox-title1 {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 250px;
height: 40px;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
background: url(//www.meyerhealth.com/wp-content/themes/mytheme/static/images/onsite.png) no-repeat center center;
background-size: cover;
position: absolute;
z-index: 10;
top: -20px;
right: 20px;
}
html[lang='en'] .onebox-cnt.r2 {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 80%;
height: auto;
min-height: 30px;
margin: 0px auto;
padding: 0px 0px;
position: absolute;
z-index: 10;
left: 55%;
top: 55%;
transform: translateX(-50%) translateY(-50%);
}
html[lang='en'] .homeai-t>.label-head {
padding: 0px 0px;
text-align: center;
width: auto;
min-height: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 24px;
color: #FFFFFF;
line-height: 34px;
text-align: center;
font-style: normal;
text-transform: none;
}
html[lang='en'] .homeabout {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
max-width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 30px 10px 0 10px;
}
html[lang='en'] .birefunit-t {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 30px;
margin: 0px 0px;
padding: 0px 0px;
}
html[lang='en'] .subban-ads-l>.label2 {
margin: 0px 0px;
padding: 0px 0px;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 18px;
color: #FFFFFF;
line-height: 22px;
text-align: center;
font-style: normal;
text-transform: none;
}
html[lang='en'] .aboucomhead-t>.label-head {
width: 100%;
padding: 0px 0px;
text-align: center;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 24px;
color: #121212;
line-height: 34px;
text-align: center;
font-style: normal;
text-transform: none;
}
html[lang='en'] .develop-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 28px;
color: #121212;
line-height: 44px;
text-align: center;
font-style: normal;
text-transform: none;
}
html[lang='en'] .honorbox-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 28px;
color: #121212;
line-height: 54px;
text-align: center;
font-style: normal;
text-transform: none;
}
html[lang='en'] .boss-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 28px;
color: #121212;
line-height: 64px;
text-align: center;
font-style: normal;
text-transform: none;
}
html[lang='en'] .bossinfo-t ul>li {
margin: 0 0;
width: 100%;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: #121212;
line-height: 30px;
text-align: left;
font-style: normal;
text-transform: none;
}
html[lang='en'] .invest-t>.label-title {
padding: 0px 0px;
text-align: center;
width: auto;
height: auto;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 28px;
color: #121212;
line-height: 44px;
text-align: center;
font-style: normal;
text-transform: none;
}
html[lang='en'] .investbox-t>.label-head {
padding: 0px 0px;
width: 100%;
height: 37px;
font-family: MiSans, MiSans;
font-weight: 500;
font-size: 20px;
color: #FFFFFF;
line-height: 37px;
text-align: left;
font-style: normal;
text-transform: none;
}
html[lang='en'] .onesite-desc>.label-desc {
box-sizing: border-box;
padding: 0px 10px;
text-align: center;
width: 100%;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: rgba(18, 18, 18, 0.6);
line-height: 30px;
text-align: center;
font-style: normal;
text-transform: none;
}
html[lang='en'] .brief-top-l>.p2 {
margin: 30px 0px;
padding: 0px 0px;
width: 100%;
height: auto;
font-family: MiSans, MiSans;
font-weight: 400;
font-size: 16px;
color: rgba(18, 18, 18, 0.8);
line-height: 30px;
text-align: left;
font-style: normal;
text-transform: none;
}
}@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-slide-visible .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}.slider-container {
width: 300px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.slider-container .back-bar {
height: 10px;
position: relative;
}
.slider-container .back-bar .selected-bar {
position: absolute;
height: 100%;
}
.slider-container .back-bar .pointer {
position: absolute;
width: 10px;
height: 10px;
background-color: red;
cursor: col-resize;
opacity: 1;
z-index: 2;
}
.slider-container .back-bar .pointer.last-active {
z-index: 3;
}
.slider-container .back-bar .pointer-label {
position: absolute;
top: -17px;
font-size: 8px;
background: white;
white-space: nowrap;
line-height: 1;
}
.slider-container .back-bar .focused {
z-index: 10;
}
.slider-container .clickable-dummy {
cursor: pointer;
position: absolute;
width: 100%;
height: 100%;
z-index: 1;
}
.slider-container .scale {
top: 2px;
position: relative;
}
.slider-container .scale span {
position: absolute;
height: 5px;
border-left: 1px solid #999;
font-size: 0;
}
.slider-container .scale ins {
font-size: 9px;
text-decoration: none;
position: absolute;
left: 0;
top: 5px;
color: #999;
line-height: 1;
}
.slider-container.slider-readonly .clickable-dummy,
.slider-container.slider-readonly .pointer {
cursor: auto;
}
.theme-green .back-bar {
height: 5px;
border-radius: 2px;
background-color: #eeeeee;
background-color: #e7e7e7;
background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}
.theme-green .back-bar .selected-bar {
border-radius: 2px;
background-color: #a1fad0;
background-image: -moz-linear-gradient(top, #bdfade, #76fabc);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bdfade), to(#76fabc));
background-image: -webkit-linear-gradient(top, #bdfade, #76fabc);
background-image: -o-linear-gradient(top, #bdfade, #76fabc);
background-image: linear-gradient(to bottom, #bdfade, #76fabc);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbdfade', endColorstr='#ff76fabc', GradientType=0);
}
.theme-green .back-bar .pointer {
width: 14px;
height: 14px;
top: -5px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-radius: 10px;
border: 1px solid #AAA;
background-color: #e7e7e7;
background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}
.theme-green .back-bar .pointer-label {
color: #999;
}
.theme-green .back-bar .focused {
color: #333;
}
.theme-green .scale span {
border-left: 1px solid #e5e5e5;
}
.theme-green .scale ins {
color: #999;
}
.theme-blue .back-bar {
height: 5px;
border-radius: 2px;
background-color: #eeeeee;
background-color: #e7e7e7;
background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}
.theme-blue .back-bar .selected-bar {
border-radius: 2px;
background-color: #92c1f9;
background-image: -moz-linear-gradient(top, #b1d1f9, #64a8f9);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#b1d1f9), to(#64a8f9));
background-image: -webkit-linear-gradient(top, #b1d1f9, #64a8f9);
background-image: -o-linear-gradient(top, #b1d1f9, #64a8f9);
background-image: linear-gradient(to bottom, #b1d1f9, #64a8f9);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb1d1f9', endColorstr='#ff64a8f9', GradientType=0);
}
.theme-blue .back-bar .pointer {
width: 14px;
height: 14px;
top: -5px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-radius: 10px;
border: 1px solid #AAA;
background-color: #e7e7e7;
background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}
.theme-blue .back-bar .pointer-label {
color: #999;
}
.theme-blue .back-bar .focused {
color: #333;
}
.theme-blue .scale span {
border-left: 1px solid #e5e5e5;
}
.theme-blue .scale ins {
color: #999;
}