* {
  box-sizing: border-box;
  outline: 0;
}
@font-face {
  font-family: "myfont";
  src: url("../fonts/Oswald-Regular.woff2") format("woff2"), url("../fonts/Oswald-Regular.woff") format("woff"), url("../fonts/Oswald-Regular.ttf") format("truetype"), url("../fonts/Oswald-Regular.eot") format("embedded-opentype"), url("../fonts/Oswald-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "myfont2";
  src: url("../fonts/Oswald-Bold.woff2") format("woff2"), url("../fonts/Oswald-Bold.woff") format("woff"), url("../fonts/Oswald-Bold.ttf") format("truetype"), url("../fonts/Oswald-Bold.eot") format("embedded-opentype"), url("../fonts/Oswald-Bold.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "myfont3";
  src: url("../fonts/Oswald-ExtraLight.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.ttf");
  font-weight: normal;
  font-style: normal;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
}
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
em,
img,
strong,
b,
small,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
sub,
sup,
tt,
var,
del,
dfn,
ins,
kbd,
q,
s,
samp,
strike,
applet,
object,
iframe,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
mark,
audio,
video,
input,
textarea,
select {
  margin: 0;
  padding: 0;
}
a {
  color: #666;
  outline: none;
  text-decoration: none;
}
a:hover {
  color: #541b86;
}
ol,
ul {
  list-style: none;
}
img {
  border: 0;
  max-width: 100%;
}
table {
  border-collapse: collapse;
  width: 100%;
}
input[type='reset'],
input[type='button'],
input[type='submit'],
input[type='radio'] {
  cursor: pointer;
  outline: none;
}
input[type='checkbox'],
input[type='radio'] {
  position: relative;
  vertical-align: middle;
  margin: -2px 5px 1px;
}
textarea,
input[type='email'],
input[type='date'],
input[type='password'],
input[type='text'] {
  padding: 0;
  color: #ca8189;
  outline: none;
}
html {
  font-size: 100px;
}
@media (max-width: 1600px) {
  html {
    font-size: 80px;
  }
}
@media (max-width: 1450px) {
  html {
    font-size: 75px;
  }
}
@media (max-width: 1400px) {
  html {
    font-size: 72px;
  }
}
@media (max-width: 1300px) {
  html {
    font-size: 68px;
  }
}
.f-l {
  float: left;
}
.f-r {
  float: right;
}
/*清楚浮动*/
.clearfix:after {
  clear: both;
  height: 0;
  content: "";
  line-height: 0;
  font-size: 0;
  display: block;
}
/*图片垂直水平居中*/
.vcenter {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  display: block;
  vertical-align: middle;
  text-align: center;
  margin: auto;
}
.hid {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
/*多行省略隐藏*/
.ellipsis2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.ellipsis3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.ellipsis4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}
.ellipsis5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: 0.75s;
}
@keyframes dong {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp2 {
  from {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp2 {
  animation-name: fadeInUp2;
}
@keyframes fadeInDown2 {
  from {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown2 {
  animation-name: fadeInDown2;
}
@keyframes fadeInLeft2 {
  from {
    opacity: 0;
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft2 {
  animation-name: fadeInLeft2;
}
@keyframes fadeInRight2 {
  from {
    opacity: 0;
    transform: translate3d(200px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight2 {
  animation-name: fadeInRight2;
}
.scrollArrow1 {
  animation-name: scrollArrow1;
}
@keyframes bmove1 {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scrollArrow {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scrollArrow1 {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
body {
  color: #666;
  background: #fff;
  margin: 0 auto;
  font-size: 0.16rem;
  position: relative;
  line-height: 1.5;
  font-family: "myfont", "arial";
}
@media (max-width: 1024px) {
  body {
    font-size: 14px;
  }
}
img {
  border: 0;
  max-width: 100%;
  vertical-align: top;
}
.f50 {
  font-size: 0.5rem;
}
.f48 {
  font-size: 0.48rem;
  line-height: 0.5rem;
}
.f35 {
  font-size: 0.35rem;
}
.f35 {
  color: #333;
  font-family: "myfont2";
}
.f35 span {
  color: #541b86;
}
.f30 {
  font-size: 0.3rem;
}
.f20 {
  font-size: 0.2rem;
}
.f18 {
  font-size: 0.18rem;
}
@media (max-width: 1024px) {
  .f50 {
    font-size: 24px;
  }
  .f48 {
    font-size: 24px;
    line-height: 30px;
  }
  .f35 {
    font-size: 20px;
    line-height: 30px;
  }
  .f30 {
    font-size: 18px;
  }
  .f20 {
    font-size: 16px;
  }
  .f18 {
    font-size: 14px;
  }
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  height: 0px;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
  background-color: #ccc;
}
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 0, 0, 0.3);
}
.vcenter {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  vertical-align: middle;
}
.clearfix:after {
  clear: both;
  height: 0;
  content: "";
  line-height: 0;
  font-size: 0;
  display: block;
}
.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .container {
    max-width: 1259px;
  }
}
@media (max-width: 1380px) {
  .container {
    max-width: 1100px;
  }
}
@media (max-width: 1100px) {
  .container {
    max-width: 1024px;
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 640px;
    padding: 0 20px;
  }
}
@media (max-width: 640px) {
  .container {
    width: 100%;
  }
}
.dw {
  top: -1.08rem;
  z-index: -1;
  position: absolute;
}
.header {
  width: 100%;
  height: 0.9rem;
  z-index: 99;
  line-height: 0.9rem;
  position: relative;
  background: #fff;
  transition: all 334ms ease;
}
.header .container {
  max-width: 16.8rem;
}
.header .logo {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.header .logo img {
  max-width: 0.8rem;
  transition: all 500ms ease;
}
.header .language {
  color: #fff;
  float: right;
  margin-top: -0.02rem;
  margin-left: 0.4rem;
  position: relative;
}
.header .language a {
  color: #6e6e6e;
  font-family: "iconfont";
  transition: all 500ms ease;
}
.header .language a:hover {
  opacity: 0.5;
}
.header .language:after {
  content: "";
  width: 1px;
  left: 0.22rem;
  top: 50%;
  left: -0.2rem;
  position: absolute;
  height: 0.14rem;
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-50%);
}
.header .language i {
	margin-bottom:0.03rem;
  vertical-align: middle;
  font-size: 0.24rem;
  display: inline-block;
  margin-right: 0.1rem;
}
.header .language img {
  max-height: 20px;
  vertical-align: middle;
  margin-bottom: 0.07rem;
}
.header .header-search {
  float: right;
  display: inline-block;
}
.header .header-search a {
  transition: all 500ms ease;
}
.header .header-search a:hover {
  opacity: 0.6;
}
.header .header-search img {
  max-height: 0.2rem;
  vertical-align: middle;
  margin-bottom: 0.05rem;
}
.header .nav {
  float: right;
  padding-right: 0.3rem;
}
.header .nav li {
  float: left;
  font-weight: lighter;
  font-size: 0.18rem;
  margin: 0 0.25rem;
  position: relative;
}
.header .nav li > a {
  color: #333;
  display: block;
  position: relative;
}
.header .nav li > a:after {
  content: "";
  height: 0.03rem;
  width: 100%;
  bottom: 0rem;
  left: 50%;
  width: 0;
  opacity: 0;
  z-index: 10;
  position: absolute;
  background: #541b86;
  transition: all 500ms ease;
}
.header .nav li i {
  display: inline-block;
  font-style: normal;
  width: 0.06rem;
  height: 0.06rem;
  margin-left: 0.05rem;
  vertical-align: middle;
  margin-top: -0.08rem;
  border-bottom: solid 1px #9a9a9a;
  border-right: solid 1px #9a9a9a;
  transform: rotate(45deg);
  font-family: "宋体";
}
.header .nav li:hover > a,
.header .nav .active > a {
  color: #541b86;
}
.header .nav li:hover > a:after,
.header .nav .active > a:after {
  left: 0;
  opacity: 1;
  width: 100%;
}
.header .nav .subnav {
  top: 0.9rem;
  width: 4rem;
  left: 50%;
  display: none;
  padding: 0.1rem 0;
  text-align: center;
  transform: translateX(-50%);
  border-bottom-left-radius: 0.1rem;
  border-bottom-right-radius: 0.1rem;
  background: rgba(0, 114, 191, 0.85);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  position: absolute;
}
.header .nav .subnav a {
  color: #555;
  display: block;
  line-height: 0.26rem;
  padding: 5px;
  font-size: 0.16rem;
  font-family: "font3";
}
.header .nav .subnav a:hover {
  color: #541b86;
  text-shadow: 0 0 1px #fff;
  text-decoration: underline;
}
.header .nav .subnav-2 {
  width: 5.5rem;
}
.header .nav .subnav-2 a {
  width: 50%;
  float: left;
}
.header .nav .subdrop {
  transform: translateX(-30%);
  width: 11.6rem;
  background: rgba(255, 255, 255, 0.95);
}
.header .nav .subdrop .subtwo {
  width: 25%;
  display: block;
  float: left;
  padding: 0 0.6rem;
  text-align: left!important;
}
.header .nav .subdrop .subtwo > a {
  color: #333;
  font-weight: 700;
  padding-bottom: 0.15rem;
  margin-bottom: 0.15rem;
  border-bottom: solid 1px #eee;
}
.header .nav .subdrop .drop a {
  display: block;
  color: #555;
  padding: 0;
  font-size: 0.15rem;
}
.header .nav .subdrop .drop a:hover {
  color: #541b86;
}
@media (max-width: 1024px) {
  .header {
    top: 0;
    height: 50px;
    width: 100%;
    z-index: 99;
    line-height: 50px;
    position: fixed!important;
    background: #fff;
    border-bottom: 0;
    padding: 0 0px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  .header .logo {
    width: auto;
    height: auto;
    margin-left: 0;
    padding-top: 0px;
  }
  .header .logo img {
    max-height: 50px;
    max-width: 100%;
  }
  .header .hmenu {
    display: block;
  }
  .header .nav {
    display: none;
  }
  .header .language {
    color: #999;
    margin: 0;
    margin-right: 10px;
  }
  .header .language a {
    padding: 0 5px;
    font-size: 14px;
    color: #999;
  }
  .header .header-search {
    margin-right: 20px;
  }
  .header .header-search img {
    max-height: 20px;
    margin-bottom: 2px;
  }
  .header .language::after {
    height: 14px;
    left: -10px;
  }
  .header .container {
    max-width: 640px;
  }
}
.location {
  top: -1.8rem;
  z-index: -1;
  height: 1px;
  position: absolute;
}
.header-search .pull-right {
  width: 28px;
  height: 28px;
}
.header-search .pull-right a {
  display: block;
  width: 28px;
  height: 28px;
  text-align: center;
  background: url("../images/search.png") no-repeat center center;
  background-size: 16px;
}
.header .header-search .search {
  z-index: 9;
  position: relative;
}
.header-search .search .btn-search-max {
  z-index: 2;
  -webkit-transition: All 0.2s ease-in-out;
  transition: All 0.2s ease-in-out;
  position: relative;
}
.header-search .search .btn-search-max * {
  display: inline-block;
  vertical-align: middle;
}
.header-search .search .search-main {
  top: 0px;
  right: -20px;
  z-index: 9;
  width: 340px;
  display: none;
  padding: 20px;
  position: absolute;
}
@media (max-width: 640px) {
  .header-search .search .search-main {
    right: -140px;
    width: 280px;
  }
}
.header-search .search-container {
  background-color: #fff;
  padding-left: 0;
  overflow: hidden;
  position: relative;
  height: 42px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}
.header-search .search-container .form-control {
  text-align: left;
  border: 0;
  width: 100%;
  font-size: 14px;
  color: #999;
  line-height: 20px;
  height: 42px;
  vertical-align: top;
  padding: 10px 86px 10px 10px;
  -webkit-appearance: none;
  background-color: #ffffff;
}
.header-search .search-container .btn {
  top: 0;
  right: 0;
  color: #fff;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  position: absolute;
  cursor: pointer;
  border-radius: 0;
  border: 0;
  background: #541b86;
}
.header-search #search-closed {
  right: 0;
  top: 15px;
  max-width: 30px;
  position: absolute;
  cursor: pointer;
}
.fixed {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  position: fixed;
  height: 0.8rem;
  line-height: 0.8rem;
}
.fixed .nav .subnav {
  top: 0.8rem;
}
.fixed .logo {
  padding-top: 0.05rem;
}
.fixed .logo img {
  max-width: 0.6rem;
}
.fixed2 {
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
}
.banner {
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.banner .pic {
  position: relative;
}
.banner .tu {
  display: block;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.banner .txtbox {
  left: 0;
  width: 100%;
  z-index: 2;
  color: #fff;
  top: 50%;
  transform: translateY(-40%);
  position: absolute;
}
.banner .txtbox2 {
  top: 30%;
  text-align:center;
}
.banner .t1 {
  line-height: 0.6rem;
  font-size: 0.6rem;
  font-family: "myfont2";
}
.banner .t2 {
  padding-top: 0.15rem;
  font-family: "myfont3";
  font-size: 0.3rem;
}
.banner .slick-dots {
  bottom: 0.5rem;
}
.banner .slick-dots li {
  line-height: 0.4rem;
  text-align: center;
  margin-top: 0;
}
.banner .slick-dots li.slick-active button {
  width: 0.4rem;
  background: #fff;
}
.banner .slick-dots li button {
  width: 0.1rem;
  height: 0.1rem;
  opacity: 1;
  margin: 0 0.05rem;
  position: relative;
  transition: all 500ms ease;
  background: rgba(255, 255, 255, 0.5);
}
.banner .slick-active .tu {
  animation: 4s ease bmove1;
}
.banner .slick-active .t1 {
  animation: 1.5s ease fadeInUp2;
}
.banner .slick-active .t2 {
  animation: 1.7s ease fadeInDown2;
}
@media (max-width: 1024px) {
  .banner {
    height: 60vh;
    margin-top: 50px;
  }
  .banner .tu {
    height: 60vh;
  }
  .banner .t2 {
    letter-spacing: 0;
  }
  .banner .slick-prev,
  .banner .slick-next {
    display: none!important;
  }
}
@media (max-width: 640px) {
  .banner {
    height: 50vh;
  }
  .banner .tu {
    height: 50vh;
  }
  .banner .txtbox {
    top: 140px;
  }
  .banner .t1 {
    font-size: 30px;
    line-height: 40px;
  }
  .banner .t2 {
    font-size: 14px;
    margin-top: 0px;
    padding-top: 0;
  }
  .banner .slick-dots {
    bottom: 30px;
  }
  .banner .slick-dots li.slick-active button {
    width: 20px;
  }
  .banner .slick-dots li button {
    width: 20px;
    height: 4px;
    margin: 0;
  }
}
.index-more {
  font-size: 0.14rem;
  padding-top: 1.3rem;
}
.index-more a {
  width: 1.8rem;
  height: 0.5rem;
  color: #fff;
  overflow: hidden;
  display: block;
  border: solid 1px #7b2ac4;
  border-radius: 0.3rem;
  line-height: 0.48rem;
  font-family: "iconfont";
  text-align: center;
  position: relative;
  background: #541b86;
}
.index-more a:before {
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0%;
  z-index: 1;
  border-radius: 0.3rem;
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  transition: all 700ms ease;
}
.index-more span {
  z-index: 3;
  display: block;
  position: relative;
}
.index-more:hover a:before {
  left: 0;
  width: 100%;
}
@media (max-width: 1024px) {
  .index-more {
    font-size: 12px;
    padding-top: 20px;
  }
  .index-more a {
    width: 120px;
    height: 36px;
    line-height: 36px;
    border-radius: 30px;
  }
}
.index-title {
  line-height: 0.5rem;
  padding-bottom: 0.15rem;
  text-align: center;
  font-family: "Roboto";
  font-size: 0.48rem;
  color: #30266d;
}
@media (max-width: 1024px) {
  .index-title {
    font-size: 24px;
    line-height: 30px;
    padding: 0!important;
    padding-bottom: 10px!important;
  }
}
.index-text {
  margin: 0 auto;
  color: #737476;
  font-family: "myfont3";
  max-width: 12.4rem;
  text-align: center;
}
.index-map {
  background: #f7fafd;
}
.index-map .index-title {
  padding-top: 0.3rem;
  padding-bottom: 0.7rem;
}
.index-map .numleft {
  width: 25%;
  float: left;
  color: #4a2279;
  text-transform: uppercase;
}
.index-map .numleft .counter {
  line-height: 0.5rem;
  font-family: "myfont2";
}
.index-map .numleft li {
  padding-top: 0.4rem;
}
.index-map .numleft p:first-child {
  color: #090909;
  margin-bottom: 0.05rem;
}
.index-map .numleft i,
.index-map .numleft em {
  vertical-align: top;
  display: inline-block;
  font-style: normal;
}
.index-map .numleft i {
  line-height: 0.5rem;
  font-family: "myfont2";
}
.index-map .maplist {
  width: 75%;
  float: left;
  position: relative;
}
.index-map .maplist ul {
  width: 130%;
  margin-left: -0.7rem;
}
.index-map .arrow {
  right: -0.1rem;
  top: 2.3rem;
  position: absolute;
}
.index-map .arrow2 {
  right: 0.25rem;
  top: 2.8rem;
  position: absolute;
}
.index-map .arrow3 {
  left: 1.5rem;
  top: 1.7rem;
  position: absolute;
}
.index-map .arrow4 {
  left: 4.5rem;
  top: 0.6rem;
  position: absolute;
}
.index-map .arrow5 {
  left: 3.4rem;
  top: 1.7rem;
  position: absolute;
}
.index-map .arrow6 {
  left: 2.6rem;
  top: 2.16rem;
  position: absolute;
}
.index-map .arrow7 {
  left: 3.8rem;
  top: 4rem;
  position: absolute;
}
.index-map .arrow8 {
  left: 6.56rem;
  top: 2.8rem;
  position: absolute;
}
.index-map .arrow9 {
  left: 6.96rem;
  top: 3.5rem;
  position: absolute;
}
.index-map .arrow10 {
  left: 7.62rem;
  top: 1.73rem;
  position: absolute;
}
.index-map .arrow11 {
  left: 8.52rem;
  top: 1.5rem;
  position: absolute;
}
.index-map .arrow12 {
  left: 9.05rem;
  top: 1.03rem;
  position: absolute;
}
.index-map .arrow13 {
  left: 8.41rem;
  top: 2.45rem;
  position: absolute;
}
.index-map .arrow1-1 {
  animation: 1.5s scrollArrow ease infinite;
}
.index-map .arrow1-2 {
  animation: 1.7s scrollArrow ease infinite;
}
.index-map .arrow1 {
  width: 0.58rem;
  height: 0.58rem;
  display: inline-block;
  border-radius: 100%;
  background: rgba(92, 31, 187, 0.36);
}
.index-map .arrow1:before {
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 100%;
  position: absolute;
  background: rgba(92, 31, 187, 0.36);
}
.index-map .arrow1:after {
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.14rem;
  height: 0.14rem;
  border-radius: 100%;
  position: absolute;
  background: #5c1fbb;
}
.index-map .arrowg {
  width: 0.3rem;
  height: 0.3rem;
  display: inline-block;
  border-radius: 100%;
  background: rgba(92, 31, 187, 0.36);
}
.index-map .arrowg:before {
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 100%;
  position: absolute;
  background: rgba(92, 31, 187, 0.36);
}
.index-map .arrowg:after {
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 100%;
  position: absolute;
  background: #5c1fbb;
}
@media (max-width: 1024px) {
  .index-map {
    padding: 50px 0;
  }
  .index-map .numleft p:first-child {
    margin-bottom: 5px;
  }
  .index-map .numleft .counter {
    line-height: 30px;
  }
}
@media (max-width: 640px) {
  .index-map .numleft,
  .index-map .maplist {
    width: 100%;
    float: none;
    overflow: hidden;
  }
  .index-map .maplist {
    margin-top: 30px;
  }
  .index-map .maplist ul {
    width: 100%;
    margin-left: 0;
  }
  .index-map .numleft li {
    width: 50%;
    float: left;
  }
}
.index-product {
  overflow: hidden;
  position: relative;
}
.index-product .list {
  max-width: 19.2rem;
  width: 100%;
  margin: 0 auto;
  padding-top: 0.6rem;
}
.index-product .list .item {
  position: relative;
}
.index-product .list .txtbox {
  left: 0px;
  opacity: 1;
  width: 100%;
  padding-left: 0.4rem;
  position: absolute;
  color: #fff;
  bottom: 0;
  height: 1.2rem;
  padding-bottom: 0.3rem;
  padding-top: 0.2rem;
  text-align: left;
  text-transform: uppercase;
  border-bottom-left-radius: 0.15rem;
  border-bottom-right-radius: 0.15rem;
  background: rgba(153, 142, 237, 0.45);
}
.index-product .list .txtbox .tit {
  height: 0.4rem;
  overflow: hidden;
  font-size: 0.24rem;
  line-height: 0.4rem;
  font-weight: 700;
  margin-top: 0.15rem;
}
.index-product .list .txtbox .txt {
  height: 0.24rem;
  overflow: hidden;
  line-height: 0.24rem;
  font-size: 0.18rem;
  margin-top: 0.05rem;
  display: none;
}
.index-product .list .pic {
  height: 6.35rem;
  position: relative;
  border-radius: 0.15rem;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}
.index-product .list .pic img {
  border-radius: 0.15rem;
}
.index-product .list .swiper {
  width: 100%;
}
.index-product .list .swiper-slide {
  text-align: center;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.index-product .list .swiper-slide img {
  display: block;
  width: 100%!important;
  height: 6.35rem;
  object-fit: cover;
}
.index-product .list .swiper-slide {
  width: 10%;
}
.index-product .list .swiper-slide:hover {
  width: 15%!important;
}
.index-product .list .swiper-slide-active,.index-product .list .swiper-slide-active:hover {
  width: 55%!important;
}

.index-product .list .swiper-slide-active .txtbox {
  padding-left: 0.9rem;
}
.index-product .list .swiper-slide-active .txtbox .txt {
  display: block;
}
.index-product .list .swiper-slide-active .txtbox .tit {
  margin-top: 0;
}
@media (max-width: 1024px) {
  .index-product {
    padding: 50px 0;
  }
  .index-product .index-text {
    max-width: 100%;
  }
  .index-product .list {
    margin: 0 -15px;
    max-width: 100%;
    padding-top: 30px;
  }
  .index-product .list li {
    padding: 0 15px;
    margin-top: 30px;
  }
  .index-product .list .txtbox {
    height: auto;
    padding: 5px 20px;
  }
  .index-product .list .txtbox .tit {
    font-size: 16px;
    line-height: 30px;
    margin: 0px 0;
    height: 30px;
  }
  .index-product .list .txtbox .txt {
    font-size: 14px;
    line-height: 24px;
    height: 24px;
    margin-top: 0;
  }
  .index-product .list-2 {
    margin-top: 40px;
  }
  .index-product .list-2 .txtbox .txt {
    font-size: 14px;
    margin-top: 5px;
  }
  .index-product .list-2 .txtbox .num {
    font-size: 20px;
    line-height: 30px;
  }
  .index-product .list-2 .txtbox {
    padding: 20px;
    padding-bottom: 30px!important;
  }
  .index-product .list-2 .txtbox .tit {
    font-size: 14px;
    line-height: 24px;
    margin-top: 0px;
  }
}
@media (max-width: 500px) {
  .index-product .list li {
    width: 100%;
    float: none;
    padding: 0 30px;
  }
  .index-product .list .icon {
    max-width: 85px;
  }
  .index-product .list-2 .swiper-slide-active {
    width: 70%!important;
  }
  .index-product .list-2 .swiper-slide img {
    height: 260px;
  }
}
.index-about .index-title {
  text-align: left;
}
.index-about .f18 {
  padding-top: 0.2rem;
}
.index-about .leftbox {
  width: 53%;
  float: left;
  color: #090909;
}
.index-about .leftbox .f16 {
  font-family: "myfont3";
  padding-top: 0.3rem;
}
.index-about .leftbox .more {
  font-size: 0.14rem;
  font-family: "myfont3";
  margin-top: 0.62rem;
}
.index-about .right {
  width: 45%;
  float: right;
  padding-top: 0.25rem;
}
.index-about .right p {
  width: 140%;
}
.index-about .t1 {
  margin-top: 0.3rem;
}
.index-about .t1 span {
  display: block;
}
.index-about .numlist {
  z-index: 4;
  margin-top: 0.66rem;
  position: relative;
}
.index-about .numlist ul {
  width: 135%;
  height: 2.2rem;
  background: #fff;
  box-shadow: 0 0 0.15rem rgba(0, 0, 0, 0.05);
}
.index-about .numlist li {
  width: 25%;
  float: left;
  height: 2.2rem;
  text-align: center;
  padding-top: 0.55rem;
  transition: all 500ms ease;
  border-left: solid 1px #d4d4d4;
}
.index-about .numlist li .icon {
  width: 0.6rem;
  height: 0.6rem;
  position: relative;
  display: inline-block;
}
.index-about .numlist li .ic1 {
  transition: all 400ms ease;
}
.index-about .numlist li .ic2 {
  top: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: translateY(20px);
  transition: all 500ms ease;
}
.index-about .numlist li .bt {
  color: #333;
  margin-top: 0.1rem;
}
.index-about .numlist li:hover {
  background: #541b86;
}
.index-about .numlist li:hover .bt {
  color: #fff;
}
.index-about .numlist li:hover .ic1 {
  opacity: 0;
}
.index-about .numlist li:hover .ic2 {
  opacity: 1;
  transform: translateY(0);
}
.index-about .numlist li:first-child {
  border-left: 0;
}
@media (max-width: 1024px) {
  .index-about {
    padding: 50px 0;
  }
  .index-about .f18 {
    padding-top: 10px;
  }
  .index-about .f16 {
    padding-top: 20px;
  }
  .index-about .more {
    font-size: 14px;
    margin-top: 20px;
  }
  .index-about .leftbox,
  .index-about .right {
    width: 100%;
    float: none;
  }
  .index-about .right {
    margin-top: 30px;
  }
  .index-about .right p {
    width: 100%;
  }
  .index-about .leftbox .f16 {
    padding-top: 20px;
  }
  .index-about .leftbox .more {
    font-size: 14px;
    margin-top: 20px;
  }
  .index-about .numlist li .icon {
    width: 40px;
    height: 40px;
  }
  .index-about .numlist {
    background: #fff;
    overflow: hidden;
    margin-top: 30px;
  }
  .index-about .numlist ul {
    width: 100%;
    height: auto;
  }
  .index-about .numlist li {
    height: auto;
    padding: 10px;
  }
  .index-about .numlist li .bt {
    margin-top: 0;
  }
}
@media (max-width: 640px) {
  .index-about .numlist li {
    margin-top: -1px;
    margin-left: -1px;
    width: 50%!important;
    border-top: solid 1px #ccc;
  }
}
.index-news {
  position: relative;
}
.index-news .index-title {
  text-align: left;
  border-bottom: solid 1px #ededed;
}
.index-news .tabnav {
  padding-top: 30px;
  position: relative;
}
.index-news .tabnav li {
  color: #2a2a2a;
  width: 1.85rem;
  height: 0.43rem;
  vertical-align: top;
  margin-right: 0.3rem;
  line-height: 0.4rem;
  cursor: pointer;
  font-family: "myfont3";
  text-align: center;
  position: relative;
  display: inline-block;
  border-radius: 0.3rem;
  border: solid 1px #666666;
  transition: all 500ms ease;
}
.index-news .tabnav .cur {
  color: #fff;
  border-color: #541b86;
  background: #541b86;
}
.index-news .tabnav .cur:after {
  opacity: 1;
  width: 100%;
  left: 0;
}
.index-news .tabbox {
  position: relative;
}
.index-news .tablist {
  margin: 0 -0.1rem;
  display: none;
}
.index-news .tablist .scroll {
  padding: 0.5rem 0 0rem 0;
}
.index-news .tablist .item:hover {
  box-shadow: 0 0 0.1rem rgba(84, 27, 134, 0.1);
}
.index-news .tablist .item:hover .pic img {
  transform: scale(1.05);
}
.index-news .tablist .item:hover .more {
  background: #541b86;
}
.index-news .tablist .item:hover .tit {
  color: #541b86;
}
.index-news .tablist .item {
  background: #fff;
  padding: 0.11rem;
  padding-bottom: 0.24rem;
  transition: all 500ms ease;
  margin: 0.1rem;
  box-shadow: 0 0 0.1rem rgba(7, 108, 182, 0.1);
}
.index-news .tablist .item .pic {
  overflow: hidden;
  position: relative;
}
.index-news .tablist .item .pic:after {
  content: "";
  display: block;
  padding-bottom: 59.62732919%;
}
.index-news .tablist .item .pic img {
  transform-origin: top center;
  transition: all 700ms ease;
}
.index-news .tablist .item .txtbox {
  padding: 0 0.2rem;
}
.index-news .tablist .item .date {
  color: #040806;
  font-size: 12px;
  margin-top: 0.2rem;
  font-family: arial;
}
.index-news .tablist .item .date img {
  width: 0.12rem;
  height: 0.12rem;
  margin-right: 0.05rem;
  margin-top: 0.02rem;
  display: inline-block;
}
.index-news .tablist .item .tit {
  margin-top: 0.3rem;
  font-size: 0.18rem;
  color: #000000;
  height: 0.52rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  font-weight: 700;
  line-height: 0.26rem;
}
.index-news .tablist .item .more {
  color: #fff;
  margin-top: 30px;
  text-align: center;
  background: #a1a1a1;
  font-family: "myfont3";
  font-size: 0.14rem;
  height: 0.3rem;
  width: 1.1rem;
  line-height: 0.3rem;
  border-radius: 0.3rem;
}
.index-news .tablist .slick-prev,
.index-news .tablist .slick-next {
  top: -0.4rem;
  margin-top: 0;
  width: 0.36rem;
  height: 0.36rem;
  line-height: 0.36rem;
  text-align: center;
  transition: all 500ms ease;
  border-radius: 100%;
  border: 0;
}
.index-news .tablist .slick-prev:before,
.index-news .tablist .slick-next:before {
  content: "";
  color: #3d3d3d;
  font-family: "宋体";
  font-size: 0.18rem;
}
.index-news .tablist .slick-prev:hover:before,
.index-news .tablist .slick-next:hover:before {
  color: #fff;
}
.index-news .tablist .slick-prev {
  left: auto;
  right: 0.5rem;
  background-color: #ebebeb;
}
.index-news .tablist .slick-prev:before {
  content: "<";
}
.index-news .tablist .slick-prev:hover {
  background-color: #541b86;
}
.index-news .tablist .slick-next {
  right: 0;
  background-color: #ebebeb;
}
.index-news .tablist .slick-next:before {
  content: ">";
}
.index-news .tablist .slick-next:hover {
  background-color: #541b86;
}
@media (max-width: 1024px) {
  .index-news {
    padding: 50px 0;
  }
  .index-news .tabnav li {
    width: 120px;
    height: 40px;
    line-height: 38px;
    margin-right: 5px;
    border-radius: 30px;
  }
  .index-news .tablist .scroll {
    padding-top: 30px;
    padding-bottom: 0px;
    margin: 0 -10px;
  }
  .index-news .tablist .item {
    padding: 10px;
    margin: 0 10px;
    padding-bottom: 30px;
  }
  .index-news .tablist .slick-prev,
  .index-news .tablist .slick-next {
    width: 36px;
    height: 36px;
    top: -40px;
  }
  .index-news .tablist .slick-prev {
    right: 50px;
  }
  .index-news .tablist .slick-next {
    right: 0;
  }
  .index-news .tablist .item .date {
    margin-top: 10px;
  }
  .index-news .tablist .item .date img {
    width: 12px;
    height: 12px;
    margin-top: 1px;
    margin-right: 5px;
  }
  .index-news .tablist .item .tit {
    margin-top: 0px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
  .index-news .tablist .item .more {
    margin-top: 10px;
    font-size: 12px;
    height: 30px;
    line-height: 30px;
    width: 90px;
    border-radius: 30px;
  }
}
.index-prolist {
  overflow: hidden;
  position: relative;
}
.index-prolist .bigimg .item {
  height: 100vh;
  width: 100vw;
  color: #fff;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.index-prolist .bigimg .container {
  padding-top: 2.1rem;
}
.index-prolist .bigimg .f30 {
  padding-top: 0.6rem;
  font-family: "myfont2";
}
.index-prolist .bigimg .f18 {
  opacity: 0.7;
  width: 48%;
  padding-top: 0.3rem;
}
.index-prolist .bigimg .index-more {
  padding-top: 0.8rem;
}
.index-prolist .smallimgbox {
  bottom: 0.85rem;
  left: 0;
  width: 100%;
  z-index: 9;
  position: absolute;
}
.index-prolist .smallimg {
  height: 1.8rem;
  border-bottom: solid 2px #541b86;
  background: rgba(255, 255, 255, 0.3);
}
.index-prolist .smallimg .item {
  color: #fff;
  cursor: pointer;
  transition: all 334ms ease;
  padding-top: 0.4rem;
  height: 1.8rem;
  text-align: center;
}
.index-prolist .smallimg .item img {
  display: inline-block;
  max-height: 0.5rem;
  transition: all 700ms ease;
}
.index-prolist .smallimg .f18 {
  transition: all 334ms ease;
  margin-top: 0.15rem;
}
.index-prolist .smallimg .f18 span {
  display: block;
}
.index-prolist .smallimg .slick-current .item {
  background: #541b86;
}
.index-prolist .smallimg .slick-current .item img {
  transform: scale(1.1);
}
@media (max-width: 1024px) {
  .index-prolist .bigimg .container {
    padding: 50px 20px;
  }
  .index-prolist .bigimg .f30 {
    padding-top: 20px;
  }
  .index-prolist .bigimg .f18 {
    width: 80%;
    padding-top: 20px;
  }
  .index-prolist .bigimg .item {
    height: 70vh;
  }
  .index-prolist .smallimgbox {
    bottom: 0;
  }
  .index-prolist .smallimgbox .container {
    padding: 0;
  }
  .index-prolist .smallimg .item img {
    max-height: 50px;
  }
  .index-prolist .smallimg .f18 span {
    display: inline-block;
  }
  .index-prolist .smallimg {
    height: auto;
  }
  .index-prolist .smallimg .item {
    height: auto;
    padding: 10px;
  }
  .index-prolist .smallimg .f18 {
    margin-top: 10px;
  }
  .index-prolist .slick-prev,
  .index-prolist .slick-next {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
  .index-prolist .slick-prev {
    transform: rotate(45deg);
  }
  .index-prolist .slick-next {
    transform: rotate(-45deg);
  }
}
.footertop {
  color: #fff;
  text-align: center;
  position: relative;
  padding: 0.5rem 0 0.7rem 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.footertop .f48 {
  padding: 0.1rem 0;
}
.footertop .f48:nth-child(2) {
  font-family: "myfont2";
  text-transform: uppercase;
}
.footertop .index-more {
  padding-top: 0.3rem;
}
.footertop .index-more a {
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .footertop {
    display: none;
  }
}
.footer {
  color: #fff;
  position: relative;
  background-color: #081339;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}
.footer .logo {
  position: relative;
  padding-top: 0.3rem;
  padding-bottom: 0.2rem;
  border-bottom: solid 1px rgba(164, 164, 164, 0.2);
}
.footer .logo img {
  max-height: 1rem;
}
.footer .logo .top {
  right: 0;
  top: 0.6rem;
  position: absolute;
}
.footer .menulist {
  overflow: hidden;
  padding-top: 0.4rem;
  padding-bottom: 0.2rem;
}
.footer .menulist li {
  width: 11%;
  float: left;
  font-family: "myfont3";
}
.footer .menulist li h3 {
  padding-bottom: 0.15rem;
}
.footer .menulist li h3 a {
  color: #fff;
  font-size: 0.18rem;
}
.footer .menulist li h3 a:before {
  display: none;
}
.footer .menulist li a {
  color: #fff;
  margin-top: 0.1rem;
  font-size: 0.14rem;
  display: block;
  position: relative;
  transition: all 334ms ease;
}
.footer .menulist li a:hover {
  color: #fff;
  opacity: 0.8;
}
.footer .menulist .li2 {
  width: 15%;
}
.footer .menulist .li3 {
  width: 15%;
}
.footer .menulist .li4 {
  width: 22%;
}
.footer .menulist .li4 p {
  width: 50%;
  float: left;
}
.footer .menulist .last {
  width: 4%;
}
.footer .share {
  margin-bottom: 0.3rem;
  margin-left: -0.1rem;
}
.footer .share a {
  margin: 0 0.06rem;
  display: inline-block !important;
}
.footer .share a img {
  width: 0.24rem;
   
  vertical-align: middle;
}
.footer .share a:before {
  display: none!important;
}
.footer .share a:hover {
  opacity: 0.8;
}
.footer .share span {
  position: relative;
}
.footer .share span:hover .open {
  display: block;
}
@media (max-width: 1024px) {
  .footer .share {
    margin-bottom: 20px;
    margin-left: -10px;
  }
  .footer .share a {
    margin: 0 3px;
  }
  .footer .share a img {
    width: 24px;
    height: 20px;
  }
}
.footer .copy {
  padding: 0.15rem 0;
  font-family: "myfont3";
  background: #081339;
}
.footer .copy .t1 {
  padding: 0 0.2rem;
}
.footer .copy a {
  color: #fff;
  float: right;
  display: inline-block;
}
.footer .copy a:hover {
  color: #fff;
}
@media (max-width: 1024px) {
  .footer .menulist {
    display: none;
  }
  .footer .logo {
    padding: 10px 0;
    margin-bottom: 20px;
  }
  .footer .logo img {
    max-height: 40px;
  }
  .footer .logo .top {
    padding-top: 5px;
  }
  .footer .logo .top img {
    max-height: 30px;
  }
  .footer .copy {
    padding: 15px 0;
  }
  .footer .copy .ti {
    padding: 0 10px;
  }
}
.transparent {
  display: none;
  position: fixed;
  z-index: 998;
  top: 0;
  margin: auto;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.inside-map {
  padding: 80px 0;
}
.inside-map li {
  padding: 30px 0;
  font-size: 16px;
  border-bottom: solid 1px #eee;
}
.inside-map li h3 {
  padding-bottom: 10px;
}
.inside-map li a {
  display: inline-block;
  padding-right: 20px;
}
.inside-map li:first-child {
  padding-top: 0;
}
.inside-map li:last-child {
  border-bottom: 0;
}
@media (max-width: 1025px) {
  .inside-map {
    padding: 30px 0;
  }
  .inside-map li {
    font-size: 14px;
  }
}
.verify {
  height: 50px;
  background-color: #e5e5e5;
  position: relative;
}
.verify .drag-btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border: 1px #e5e5e5 solid;
  background: #ffffff url(../images/drag-arrow.svg) no-repeat center center;
  background-size: 20px 20px;
  z-index: 2;
  cursor: move;
}
.verify .suc-drag-btn {
  background: #ffffff url(../images/drag-success.svg) no-repeat center center;
  background-size: 20px 20px;
}
.verify .drag-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  line-height: 48px;
  width: 0;
  background-color: #7ac23c;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
.verify .fix-tips,
.verify .verify-msg {
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  height: 100%;
  color: #333;
  z-index: 1;
  line-height: 50px;
  padding-left: 50px;
  text-align: center;
}
.verify .verify-msg {
  padding-left: 0;
  padding-right: 50px;
}
.verify .verify-msg {
  background-color: #7ac23c;
  color: #fff;
  display: none;
}
.verifyDiv {
  vertical-align: middle;
  position: relative;
}
.navPhoneBtn {
  display: inline-block;
  cursor: pointer;
  float: right;
  padding-top: 20px;
  text-align: right;
  display: none;
}
.navPhoneBtn span {
  display: block;
  width: 20px;
  height: 2px;
  margin-bottom: 3px;
  position: relative;
  background:#4a2279;
  /*border-radius: 3px;*/
  z-index: 1;
  transform-origin: 20px;
  transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), width 0.5s, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.navPhoneBtn span:nth-last-child(2) {
  transform: rotate(0);
  transition: width .5s ease;
}
.navPhoneBtn span:last-child {
  margin-bottom: 0;
}
.navPhoneBtn.close,
.navPhoneBtn.closeMember {
  opacity: 1;
  z-index: 10;
}
.navPhoneBtn.close span,
.navPhoneBtn.closeMember span {
  opacity: 1;
  transform: rotate(45deg);
}
.navPhoneBtn.close span:nth-last-child(3),
.navPhoneBtn.closeMember span:nth-last-child(3) {
  opacity: 1;
  transform: rotate(-45deg);
}
.navPhoneBtn.close span:nth-last-child(2),
.navPhoneBtn.closeMember span:nth-last-child(2) {
  width: 0;
  opacity: 0;
  transform: rotate(0);
  transition: width .5s;
}
.navPhoneBtn.close span:last-child,
.navPhoneBtn.closeMember span:last-child {
  margin-bottom: 0;
}
@media (max-width: 1026px) {
  .navPhoneBtn {
    display: block;
  }
}
.navM {
  font-family: arial;
}
.navM .transparent {
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  display: none;
}
.navM .navMCon {
  background-color: #f3f3f3;
  width:100%;
  min-width: 140px;
  max-width: 440px;
  height: 100%;
  border-left: 1px rgba(0, 0, 0, 0.1) solid;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 2;
  position: fixed;
  z-index: 999999;
  top: 0;
  bottom: 0;
  right: auto;
  left: -100%;
  transition: all .5s;
}
.navM .navMWrap {
  overflow-y: auto;
  padding: 10px 20px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.navM.open .transparent {
  display: block;
}
.navM.open .closeBtn {
  display: block;
}
.navM.open .navMCon {
  left: 0;
}
.navM .closeBtn {
  display: none;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  /*background: #541b86;*/
  color: #000;
  position: absolute;
  z-index: 999;
  right: 0px;
  top: 0;
}
.navM .closeBtn:before,
.navM .closeBtn:after {
  content: "";
  display: block;
  background: #000;
  margin: auto;
  position: absolute;
  top: 10px;
  right:10px;
  bottom: 0;
  left: 0;
  transform: rotate(45deg);
}
.navM .closeBtn:before {
  width: 20px;
  height: 1px;
}
.navM .closeBtn:after {
  width: 1px;
  height: 20px;
}
.navM .titleBig {
  text-align: center;
  padding: 10px 0;
  display: none;
}
.navM .navMWrap > .list .title {
  margin-bottom: 10px;
  padding: 5px;
  font-size: 16px;
  border-bottom: 1px rgba(0, 0, 0, 0.1) solid;
  position: relative;
}
.navM .navMWrap > .list .title .icon {
  width: 40px;
  height: 40px;
  margin: auto;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(45deg);
  transition: all .3s ease;
}
.navM .navMWrap > .list .title .icon:after {
  content: "";
  margin: auto;
  height: 8px;
  width: 8px;
  border-top: 1px #aaa solid;
  border-right: 1px #aaa solid;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform-origin: center center;
}
.navM .navMWrap > .list .has .title .icon {
  display: block;
}
.navM .navMWrap > .list .active .title .icon {
  transform: rotate(135deg);
}
.navM .child {
	background:#f8f8f8;
  padding:10px;
  display: none;
  position: relative;
}
.navM .child a {
  color: #666;
  display: block;
  font-size:13px;
  line-height:20px;
  padding: 5px 0;
  position: relative;
}
.navM .child a:hover {
  color: #000;
  /*margin-left: 10px;*/
}
.navM .mSearch {
  padding: 10px 0;
  text-align: left;
  overflow: hidden;
  height: 56px;
  border-bottom: #f3f3f3 1px solid;
  position: relative;
}
.navM .mSearch .btn {
  width: 40px;
  height: 40px;
  display: inline-block;
  box-sizing: border-box;
  text-align: center;
  position: absolute;
  top: 10px;
  margin-top: 0;
  right: 0px;
  background: #ccc;
}
.navM .mSearch .btn img {
  max-height: 20px;
  margin-top: 4px;
  vertical-align: middle;
}
.navM .mSearch input {
  height: 40px;
  line-height: 38px;
  border: 0;
  vertical-align: middle;
  box-sizing: border-box !important;
  color: #333;
  appearance: none;
  transition: all 0.4s cubic-bezier(0.11393, 0.8644, 0.14684, 1);
  opacity: 1;
  width: 100%;
  padding: 5px 30px 5px 15px;
  border-radius: 2px;
  font-size: 16px;
  background-color: #fff;
  position: static;
  left: 0;
  right: 0;
}
.navM .other {
  padding: 10px;
}
.navM .languageBtn {
  padding: 10px 0;
}
.navM .languageBtn a {
  display: block;
  width: 50%;
  float: left;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px #ccc solid;
  margin-right: -1px;
  background: #541b86;
}
.topscorll {
  right: 10px;
  bottom: 1rem;
  position: fixed;
  max-width: 0.6rem;
}
@media (max-width: 1024px) {
  .topscorll {
    display: none;
  }
}
.active .numlist li {
  animation: 1.5s fadeInUp2 ease;
}
.active.inside-esg1 .f35 {
  animation: 1.5s fadeInUp2 ease;
}
.active.inside-esg1 .t1:nth-child(2) {
  animation: 1.6s fadeInUp2 ease;
}
.active.inside-esg1 .t1:nth-child(3) {
  animation: 1.9s fadeInUp2 ease;
}
.active.inside-esg1 .t1:nth-child(4) {
  animation: 2.1s fadeInUp2 ease;
}
.inside-banner {
  text-align: center;
  position: relative;
}
.inside-banner img {
  width: 100%;
}
.inside-banner .txtbox {
  top: 50%;
  width: 100%;
  left: 0;
  color: #fff;
  z-index: 2;
  text-align: left;
  line-height: 0.6rem;
  font-family: "myfont2";
  font-size: 0.6rem;
  transform: translateY(-50%);
  position: absolute;
}
.inside-banner .txtbox:before {
  content: "";
  margin-right: 0.15rem;
  width: 2.12rem;
  height: 0.02rem;
  background: #fff;
  margin-bottom: 0.1rem;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 1024px) {
  .inside-banner {
    margin-top: 50px;
  }
  .inside-banner .txtbox {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
  }
  .inside-banner .txtbox:before {
    display: none;
  }
}
.inside-current {
  color: #fff;
  height: 0.5rem;
  line-height: 0.5rem;
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.45);
  margin-top: -0.5rem;
}
.inside-current a {
  color: #fff;
  transition: all 334ms ease;
}
.inside-current a:hover {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .inside-current {
    display: none;
  }
}
.inside-title {
  padding-top: 1rem;
  text-align: center;
}
.inside-title .f48 {
  color: #541b86;
  font-family: "myfont2";
  padding-bottom: 0.1rem;
}
.inside-title .f18 {
  color: #737476;
  font-family: arial;
}
@media (max-width: 1024px) {
  .inside-title {
    margin-bottom: 30px;
    display: none;
  }
}
.inside-menu {
  text-align: center;
  padding-bottom: 0.5rem;
  padding-top: 0.3rem;
  font-family: "myfont3";
}
.inside-menu li {
  padding: 0 0.12rem;
  display: inline-block;
}
.inside-menu li a {
  width: 1.85rem;
  overflow: hidden;
  height: 0.42rem;
  display: block;
  color: #000;
  border-radius: 0.3rem;
  line-height: 0.4rem;
  border: solid 1px #666666;
  transition: all 334ms ease;
  font-weight: lighter;
  padding:0 15px;
}
.inside-menu li:hover a,
.inside-menu .active a {
  color: #fff;
  border-color: #541b86;
  background: #541b86;
}
@media (max-width: 1024px) {
  .inside-menu {
    display: none;
  }
}
.inside-menu-2 li:first-child a {
  line-height: 0.18rem;
}
.inside-menu-3 li:last-child a {
  line-height: 0.18rem;
}
.inside-about {
  padding-bottom: 1rem;
}
.inside-about .f30 {
  color: #000;
  line-height: 0.3rem;
  font-family: "myfont3";
}
.inside-about .f18 {
  line-height: 0.32rem;
  font-family: arial;
  padding-top: 0.2rem;
}
.inside-about .numlist {
  padding: 0.6rem 0;
}
.inside-about .numlist li {
  width: 20%;
  float: left;
  color: #000;
  font-family: "myfont3";
}
.inside-about .numlist li:nth-child(2) {
  width: 30%;
}
.inside-about .numlist li:nth-child(2) .f30 {
  color: #541b86;
  font-family: "myfont2";
}
.inside-about .numlist li:nth-child(3) {
  width: 30%;
}
.inside-about .numlist .counter {
  display: inline-block;
  color: #541b86;
  font-size: 0.7rem;
  line-height: 0.7rem;
  font-family: "myfont2";
}
.inside-about .numlist em,
.inside-about .numlist i {
  vertical-align: middle;
  font-style: normal;
  display: inline-block;
  margin-bottom: 0.27rem;
}
.inside-about .list .pic {
  position: relative;
  display: block;
}
.inside-about .list .pic:after {
  content: "";
  display: block;
  padding-bottom: 37.7%;
}
.inside-about .list .slick-prev {
  left: 0;
}
.inside-about .list .slick-next {
  right: 0;
}
.inside-about .list .slick-prev,
.inside-about .list .slick-next {
  width: 0.44rem;
  height: 0.44rem;
  border: 0;
  line-height: 0.44rem;
  margin-top: -0.22rem;
  transition: all 500ms ease;
  background: rgba(255, 255, 255, 0.62);
}
.inside-about .list .slick-prev:before,
.inside-about .list .slick-next:before {
  color: #fff;
  display: inline-block;
  font-family: "宋体";
  font-size: 0.24rem;
}
.inside-about .list .slick-prev:hover,
.inside-about .list .slick-next:hover {
  background: rgba(255, 255, 255, 0.4);
}
.inside-about .list .slick-prev:before {
  content: "<";
}
.inside-about .list .slick-next:before {
  content: ">";
}
.inside-about .list .slick-dots li {
  border: 0;
  display: none;
  height: 140px;
  width: 80px;
  padding: 0;
  color: #fff;
  padding-left: 0.25rem;
  font-size: 0.23rem;
  writing-mode: vertical-lr;
}
.inside-about .list .slick-dots li b {
  font-size: 0.3rem;
  font-weight: normal;
}
.inside-about .list .slick-dots .slick-active {
  display: block;
}
@media (max-width: 1024px) {
  .inside-about {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .inside-about .f18 {
    line-height: 24px;
    padding-top: 10px;
  }
  .inside-about .numlist {
    padding: 30px 0;
  }
  .inside-about .numlist li {
    padding: 10px 0;
    width: 50%!important;
  }
  .inside-about .numlist .counter {
    letter-spacing: -3px;
    font-size: 26px;
    line-height: 34px;
  }
  .inside-about .numlist em,
  .inside-about .numlist i {
    line-height: 16px!important;
    font-size: 12px!important;
    margin-bottom: 0;
    vertical-align: top;
  }
  .inside-about .list .slick-dots {
    display: none!important;
  }
  .inside-about .list .slick-prev,
  .inside-about .list .slick-next {
    width: 30px;
    height: 30px;
    border: 0;
    line-height: 30px;
    margin-top: -15px;
  }
  .inside-about .list .slick-prev:before,
  .inside-about .list .slick-next:before {
    font-size: 20px;
  }
}
.inside-about-2 {
  font-family: arial;
  line-height: 0.32rem;
  padding-bottom: 0.9rem;
  text-align: justify;
}
.inside-about-2 .t1 {
  color: #541b86;
  padding-top: 0.2rem;
}
.inside-about-2 .t2 {
  padding-top: 0.2rem;
}
@media (max-width: 1024px) {
  .inside-about-2 {
    line-height: 24px;
    padding: 40px 0 50px 0;
  }
  .inside-about-2 .t1 {
    padding-top: 20px;
  }
  .inside-about-2 .t2 {
    padding-top: 20px;
  }
  .inside-about-2 img {
    display: none;
  }
}
.inside-about-3 {
  line-height: 0.32rem;
}
.inside-about-3 .t1 {
  padding-top: 0.2rem;
}
.inside-about-3 .list {
  text-align: justify;
  padding-top: 0.2rem;
  padding-bottom: 0.7rem;
}
.inside-about-3 .list .pic {
  padding-left: 0.87rem;
}
.inside-about-3 .list-2 {
  padding: 0.8rem 0;
  background: #f7fafd;
}
.inside-about-3 .list-2 .t2 {
  font-weight: 700;
  color: #541b86;
  padding-top: 0.5rem;
  padding-bottom: 0.1rem;
}
.inside-about-3 .list-2 .leftbox {
  width: 65%;
  float: left;
}
.inside-about-3 .list-2 .pic {
  width: 27.5%;
  float: right;
}
.inside-about-3 .list-3 {
  padding: 0.8rem 0;
}
.inside-about-3 .list-3 .pic {
  width: 55%;
  float: left;
}
.inside-about-3 .list-3 .txtbox {
  width: 45%;
  float: right;
  padding-top: 0.3rem;
  padding-left: 1rem;
}
.inside-about-3 .list-3 .t2 {
  font-weight: 700;
  color: #541b86;
  padding-top: 0.3rem;
  padding-bottom: 0.1rem;
}
@media (max-width: 1024px) {
  .inside-about-3 {
    line-height: 24px;
    padding: 40px 0 50px 0;
  }
  .inside-about-3 .t1 {
    padding-top: 20px;
  }
  .inside-about-3 .t2 {
    padding-top: 20px;
  }
  .inside-about-3 .list .pic {
    margin: 20px 0;
    padding-left: 0;
  }
  .inside-about-3 .list-2 {
    padding: 40px 0;
  }
  .inside-about-3 .list-2 .leftbox {
    width: 100%;
    float: none;
  }
  .inside-about-3 .list-2 .pic {
    display: none;
  }
  .inside-about-3 .list-3 {
    padding-top: 40px;
    padding-bottom: 0;
  }
  .inside-about-3 .list-3 .pic {
    display: none;
  }
  .inside-about-3 .list-3 .txtbox {
    width: 100%;
    float: none;
    padding: 0;
  }
}
.inside-about-4 {
  padding-bottom: 1rem;
}
.inside-about-4 li {
  float: left;
  padding: 0 0.25rem;
  text-align: center;
  width: 33.333%;
}
.inside-about-4 li .item {
  color: #fff;
  line-height: 0.32rem;
  font-family: arial;
  height: 5.11rem;
  padding-top: 0.9rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.inside-about-4 li .icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 100%;
  margin: 0 auto;
  transition: all 700ms ease;
  border: solid 0.13rem rgba(255, 255, 255, 0.27);
}
.inside-about-4 li .icon img {
  background: #fff;
  border-radius: 100%;
}
.inside-about-4 li .f30 {
  margin-bottom: 0.2rem;
  font-family: "myfont2";
  margin-top: 0.4rem;
}
.inside-about-4 li:hover .icon {
  transform: scale(0.95);
}
@media (max-width: 1024px) {
  .inside-about-4 {
    padding: 40px 0 50px 0;
  }
  .inside-about-4 ul {
    margin: 0 -10px;
  }
  .inside-about-4 li {
    width: 50%;
    padding: 0 10px;
    padding-bottom: 20px;
  }
  .inside-about-4 li .item {
    height: 300px;
    line-height: 24px;
    padding: 40px 10px;
    border-radius: 10px;
  }
  .inside-about-4 li .icon {
    width: 63px;
    height: 63px;
    border-width: 3px;
  }
}
@media (max-width: 480px) {
  .inside-about-4 li {
    width: 100%;
  }
  .inside-about-4 li .item {
    height: auto;
  }
}
.inside-about-5 {
  font-family: arial;
  line-height: 0.32rem;
}
.inside-about-5 .boxwarp {
  position: relative;
}
.inside-about-5 .boxwarp:before {
  content: "";
  top: 0.8rem;
  left: 0;
  width: 100%;
  height: 0.87rem;
  position: absolute;
  background: url(../images/line.png) repeat-x center bottom;
}
.inside-about-5 .f18 {
  padding-top: 0.3rem;
}
.inside-about-5 .slide-time {
  width: 110%;
  padding-top: 0.8rem;
}
.inside-about-5 .slide-time span {
  color: #333;
  display: block;
  height: 0.86rem;
  cursor: pointer;
  font-family: "myfont2";
  font-size: 0.26rem;
  transition: all 500ms ease;
  position: relative;
}
.inside-about-5 .slide-time span:after {
  content: "";
  width: 1px;
  height: 0.33rem;
  bottom: 0;
  left: 0.29rem;
  position: absolute;
  background: #d6d6d6;
}
.inside-about-5 .slide-time span:before {
  content: "";
  top: 0.43rem;
  left: 0.24rem;
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 100%;
  border: solid 1px #d6d6d6;
}
.inside-about-5 .slide-time .slick-current span {
  font-size: 0.4rem;
  color: #541b86;
}
.inside-about-5 .slide-time .slick-current span:after {
  left: 0.41rem;
  background: #541b86;
}
.inside-about-5 .slide-time .slick-current span:before {
  left: 0.36rem;
  border-color: #541b86;
}
.inside-about-5 .slide-time .slick-prev,
.inside-about-5 .slide-time .slick-next {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 100%;
  border: solid 1px #e9e9e9;
  transition: all 500ms ease;
  margin-top: 0.54rem;
}
.inside-about-5 .slide-time .slick-prev {
  left: -1.4rem;
  background: url(../images/prev.png) no-repeat center center #ffffff;
}
.inside-about-5 .slide-time .slick-prev:hover {
  border-color: #541b86;
  background: url(../images/prev-h.png) no-repeat center center;
}
.inside-about-5 .slide-time .slick-next {
  background: url(../images/next.png) no-repeat center center #ffffff;
}
.inside-about-5 .slide-time .slick-next:hover {
  border-color: #541b86;
  background: url(../images/next-h.png) no-repeat center center;
}
@media (max-width: 1450px) {
  .inside-about-5 .slide-time {
    width: 100%;
  }
  .inside-about-5 .slide-time .slick-prev {
    left: 0;
  }
  .inside-about-5 .slide-time .slick-next {
    right: 0;
  }
}
.inside-about-5 .slide-for {
  margin-top: 0.5rem;
  padding-bottom: 1rem;
}
.inside-about-5 .slide-for li .box {
  margin: 0 -0.24rem;
  padding-bottom: 0.3rem;
}
.inside-about-5 .slide-for li .item {
  color: #3d3a3a;
  padding: 0 0.24rem;
  text-align: center;
}
.inside-about-5 .slide-for li .pic {
  position: relative;
}
.inside-about-5 .slide-for li .pic:after {
  content: "";
  display: block;
  padding-bottom: 98.5%;
}
.inside-about-5 .slide-for li .txt {
  margin-top: 0.3rem;
  text-align: center;
  line-height: 0.24rem;
  font-size: 0.16rem;
}
.inside-about-5 .slide-for li .date {
  margin-top: 0.1rem;
  font-size: 0.15rem;
  font-family: "myfont3";
}
.inside-about-5 .slide-for .slick-dots {
  bottom: 0;
}
.inside-about-5 .slide-for .slick-dots li button {
  background: #eee;
  width: 0.1rem;
  height: 0.1rem;
}
.inside-about-5 .slide-for .slick-dots li.slick-active button {
  background: #541b86;
}
.inside-about-5 .slide-for .slick-prev,
.inside-about-5 .slide-for .slick-next {
  width: 0.1rem;
  height: 0.1rem;
  margin-top: 0;
  top: auto;
  bottom: 0.1rem;
  border-color: #ccc;
}
.inside-about-5 .slide-for .slick-prev {
  left: 49%;
  transform: rotate(45deg);
}
.inside-about-5 .slide-for .slick-next {
  right: 49%;
  transform: rotate(-45deg);
}
@media (max-width: 1440px) {
  .inside-about-5 .slide-for {
    padding-bottom: 50px!important;
  }
}
@media (max-width: 1024px) {
  .inside-about-5 {
    line-height: 24px;
    padding: 40px 0 50px 0;
  }
  .inside-about-5 .f18 {
    padding-top: 15px;
  }
  .inside-about-5 .boxwarp:before {
    top: 30px;
    height: 40px;
  }
  .inside-about-5 .slide-time {
    width: 100%;
    text-align: center;
    padding: 0 50px;
    padding-top: 40px;
  }
  .inside-about-5 .slide-time .slick-prev,
  .inside-about-5 .slide-time .slick-next {
    width: 34px;
    height: 34px;
    margin-top: 5px;
  }
  .inside-about-5 .slide-time .slick-prev {
    left: 0px;
  }
  .inside-about-5 .slide-time .slick-next {
    right: 0;
  }
  .inside-about-5 .slide-time span {
    font-size: 18px;
  }
  .inside-about-5 .slide-time .slick-current span {
    font-size: 18px;
  }
  .inside-about-5 .slide-time span {
    height: 40px;
  }
  .inside-about-5 .slide-time span:before {
    display: none;
  }
  .inside-about-5 .slide-time span:after {
    display: none;
  }
}
.inside-about-5 .slide-for {
  margin-top: 30px;
  padding-bottom: 0;
}
.inside-about-5 .slide-for li .txt {
  margin-top: 15px;
  line-height: 20px;
  font-size: 14px;
}
.inside-about-5 .slide-for li .date {
  font-size: 13px;
  margin-top: 10px;
}
.inside-about-5 .slide-for .slick-prev,
.inside-about-5 .slide-for .slick-next {
  width: 10px;
  height: 10px;
}
.inside-about-5 .slide-for .slick-prev {
  left: 47%;
}
.inside-about-5 .slide-for .slick-next {
  right: 47%;
}
.history {
  font-family: arial;
}
.history .history-info {
  background: url("../images/history.png") no-repeat top center;
}
.history .history-info ul {
  background: url("../images/line-2.png") repeat-y top center;
}
.history .history-info ul li:first-child {
  margin-top: 0;
}
.history .history-info ul li:hover .pic img {
  transform: scale(1.05);
}
.history .history-info ul li {
  margin-bottom: 0.7rem;
}
.history .history-info ul li .box {
  position: relative;
}
.history .history-info ul li .pic {
  overflow: hidden;
  position: relative;
  margin-top: 0.2rem;
}
.history .history-info ul li .pic img {
  transition: all 700ms ease;
}
.history .history-info ul li .num {
  position: absolute;
  top: 0.09rem;
  left: 50%;
  background: url("../images/falc-2.jpg") no-repeat center top;
  padding-top: 0.36rem;
  width: 0.4rem;
  height: 0.76rem;
  margin-left: -0.2rem;
}
.history .history-info ul li .num h3 {
  font-size: 0.16rem;
  color: #541b86;
  padding: 0 0 0.05rem 0;
  background: #fbfbfa;
  font-family: arial;
  font-weight: normal;
}
.history .history-info ul li .text {
  width: 50%;
  padding-top: 0.1rem;
  text-align: right;
  padding-left: 0;
}
.history .history-info ul li .bt {
  font-size: 0.45rem;
  color: #541b86;
  line-height: 0.5rem;
  font-weight: 700;
  font-family: arial;
  margin-bottom: 0.14rem;
  font-family: "myfont2";
}
.history .history-info ul li .jsh span {
  float: left;
  padding-right: 0.1rem;
}
.history .history-info ul .odd {
  margin-top: -2rem;
}
.history .history-info ul .even {
  margin-top: -2.5rem;
}
.history .history-info ul .even .bt {
  position: relative;
}
.history .history-info ul .even .text {
  float: right;
  text-align: left;
  padding-left: 0.65rem;
  padding-right: 0;
}
.history .history-info ul .even .text .jsh-info {
  padding-left: 0.3rem;
  position: relative;
}
.history .history-info ul .even .text .jsh-info:before {
  content: "";
  width: 0.12rem;
  height: 0.12rem;
  background: #541b86;
  border-radius: 100%;
  top: 0.08rem;
  left: 0.05rem;
  position: absolute;
  border: solid 0.04rem #cbbada;
  vertical-align: top;
}
.history .history-info ul .odd .text {
  float: left;
  padding-right: 0.6rem;
  text-align: right!important;
}
.history .history-info ul .odd .text .jsh-info {
  text-align: left!important;
  padding-right: 0.2rem;
  position: relative;
}
.history .history-info ul .odd .text .jsh-info:after {
  content: "";
  width: 0.12rem;
  height: 0.12rem;
  background: #541b86;
  border-radius: 100%;
  top: 0.08rem;
  right: 0.05rem;
  position: absolute;
  border: solid 0.04rem #cbbada;
  vertical-align: top;
}
.history .history-info .more {
  width: 0.4rem;
  width: 1rem;
  height: 1rem;
  font-size: 0.18rem;
  padding-top: 0.3rem;
  text-align: center;
  border-radius: 100%;
  margin: 0 auto;
  margin-top: 0.2rem;
  transition: all 500ms ease;
  background: #b7b7b7;
}
.history .history-info .more a {
  color: #fff;
  display: block;
}
.history .history-info .more a span {
  display: block;
}
.history .history-info .more:hover {
  background: #541b86;
}
@media (max-width: 1024px) {
  .history {
    padding: 40px 0 50px 0;
  }
  .history .top img {
    max-height: 40px;
  }
  .history .history-info ul li {
    margin-bottom: 30px;
  }
  .history .history-info ul .even {
    margin-top: -150px;
  }
  .history .history-info ul .odd {
    margin-top: -120px;
  }
  .history .history-info ul li .bt {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .history .history-info ul .odd .text {
    padding-right: 30px;
  }
  .history .history-info ul li .num h3 {
    font-size: 14px;
  }
  .history .history-info ul .odd .text .jsh-info {
    padding-right: 0px;
  }
  .history .history-info ul li .pic {
    margin-top: 15px;
  }
  .history .history-info ul li .num {
    top: 9px;
    width: 36px;
    height: 80px;
    padding-top: 33px;
    margin-left: -15px;
  }
  .history .history-info ul .odd .text .jsh-info::after,
  .history .history-info ul .even .text .jsh-info::before {
    display: none!important;
  }
  .history .history-info ul .even .text .jsh-info {
    padding-left: 0;
  }
  .history .history-info ul li .text {
    padding-top: 10px;
  }
  .history .history-info ul .even .text {
    padding-left: 30px;
  }
}
.inside-news li:hover {
  background: #541b86;
}
.inside-news li:hover .tit,
.inside-news li:hover .txt {
  color: #fff;
}
.inside-news li:hover .more {
  color: #541b86;
  background: #fff;
  border-color: #fff;
}
.inside-news li:hover .pic img {
  transform: scale(1.05);
}
.inside-news li {
  padding: 0.4rem 0;
  transition: all 334ms ease;
  background: linear-gradient(to bottom, #ffffff, #fdfbff);
  border-bottom: solid 1px #f4f4f4;
}
.inside-news li .pic {
  width: 24%;
  float: left;
  border-radius: 0.1rem;
  overflow: hidden;
  position: relative;
}
.inside-news li .pic:after {
  content: "";
  display: block;
  padding-bottom: 59.8%;
}
.inside-news li .pic img {
  border-radius: 0.1rem;
  transition: all 700ms ease;
}
.inside-news li .txtbox {
  width: 76%;
  float: left;
  padding-top: 0.1rem;
  padding-left: 0.7rem;
}
.inside-news li .date {
  font-size: 12px;
  color: #040806;
  font-family: arial;
  display: inline-block;
  border-radius: 0.05rem;
  line-height: 0.22rem;
  padding: 0 0.1rem;
  background: #f5ecfd;
}
.inside-news li .date img {
  margin-right: 0.03rem;
  margin-bottom: 0.03rem;
  vertical-align: middle;
  max-height: 0.11rem;
}
.inside-news li .tit {
  color: #000;
  margin-top: 0.1rem;
  height: 0.4rem;
  line-height: 0.4rem;
  font-family: "myfont2";
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.inside-news li .txt {
  color: #666;
  font-family: arial;
  line-height: 0.28rem;
  height: 0.56rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.inside-news li .more {
  margin-top: 0.25rem;
  padding: 0 0.18rem;
  height: 0.3rem;
  border-radius: 30px;
  line-height: 0.28rem;
  color: #541b86;
  font-size: 0.14rem;
  font-family: "myfont3";
  display: inline-block;
  border: solid 1px #541b86;
}
@media (max-width: 1024px) {
  .inside-news li {
    padding: 20px 0;
  }
  .inside-news li .pic {
    width: 40%;
  }
  .inside-news li .txtbox {
    width: 60%;
    padding-top: 0;
    padding-left: 20px;
  }
  .inside-news li .date {
    line-height: 22px;
    border-radius: 3px;
    border-bottom: 3px;
  }
  .inside-news li .date img {
    vertical-align: top;
    max-height: 12px;
    margin: 4px 5px 0 0;
  }
  .inside-news li .tit {
    height: 30px;
    line-height: 30px;
    margin-top: 10px;
  }
  .inside-news li .txt {
    line-height: 20px;
    height: 40px;
  }
  .inside-news li .more {
    margin-top: 10px;
    height: 24px;
    padding: 0 5px;
    line-height: 22px;
    font-size: 12px;
  }
}
@media (max-width: 500px) {
  .inside-news li .more,
  .inside-news li .date {
    display: none;
  }
  .inside-news li .tit {
    margin-top: 0;
  }
}
.inside-video {
  padding-bottom: 0.1rem;
}
.inside-video ul {
  margin: 0 -0.48rem;
}
.inside-video li {
  width: 50%;
  float: left;
  padding: 0 0.48rem;
  padding-bottom: 0.65rem;
}
.inside-video li:hover .pic img {
  transform: scale(1.1);
}
.inside-video li:hover .video img {
  transform: rotate(360deg);
}
.inside-video .picbox {
  position: relative;
}
.inside-video .pic {
  overflow: hidden;
  position: relative;
}
.inside-video .pic:after {
  content: "";
  display: block;
  padding-bottom: 57%;
}
.inside-video .pic img {
  transition: all 700ms ease;
}
.inside-video .video {
  top: 50%;
  left: 50%;
  z-index: 1;
  position: absolute;
  transform: translate(-50%, -50%);
}
.inside-video .video img {
  width: 0.8rem;
  height: 0.8rem;
  transition: all 700ms ease;
}
.inside-video .txtbox {
  padding: 0.2rem 0.3rem;
  box-shadow: 0 0 0.19rem rgba(7, 108, 182, 0.13);
}
.inside-video .date {
  font-size: 0.14rem;
  color: #898e9d;
  font-family: arial;
}
.inside-video .date img {
  opacity: 0.5;
  vertical-align: middle;
  max-height: 0.15rem;
  margin: 0 0.05rem 0.04rem 0;
}
.inside-video .tit {
  color: #282828;
  margin-top: 0.05rem;
  height: 0.3rem;
  font-family: "myfont2";
  line-height: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .inside-video {
    padding: 40px 0 30px 0;
  }
  .inside-video ul {
    margin: 0 -10px;
  }
  .inside-video li {
    padding: 0 10px;
    padding-bottom: 20px;
  }
  .inside-video .video img {
    width: 40px;
    height: 40px;
  }
  .inside-video .date {
    font-size: 14px;
  }
  .inside-video .date img {
    max-height: 15px;
    vertical-align: top;
    margin: 2px 4px 0 0;
  }
  .inside-video .tit {
    line-height: 40px;
    height: 40px;
  }
}
@media (max-width: 480px) {
  .inside-video li {
    width: 100%;
  }
}
.inside-page {
  font-size: 12px;
  font-family: arial;
  text-align: center;
  padding: 0.85rem 0;
}
.inside-page a {
  width: 0.4rem;
  height: 0.4rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  line-height: 0.38rem;
  border-radius: 100%;
  margin: 0 0.05rem;
  font-size: 12px;
  color: #666;
  display: inline-block;
  transition: all 500ms ease;
  border: solid 1px #b5b5b5;
}
.inside-page a:hover,
.inside-page .cur {
  color: #fff;
  border-color: #541b86;
  background: #541b86;
}
.inside-page .prev,
.inside-page .next {
  width: 1.06rem;
  position: relative;
  border-radius: 30px;
}
.inside-page .prev:before {
  content: "<";
  margin-right: 0.06rem;
  font-family: "宋体";
  display: inline-block;
  font-weight: 700;
}
.inside-page .next:after {
  content: ">";
  margin-left: 0.06rem;
  font-family: "宋体";
  display: inline-block;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .inside-page {
    padding: 50px 0;
  }
  .inside-page .prev,
  .inside-page .next {
    width: auto;
    border-radius: 0;
  }
  .inside-page a {
    width: auto;
    height: auto;
    padding: 5px;
    border-radius: 0;
  }
}
.inside-news-show {
  font-family: arial;
  line-height: 0.28rem;
  padding-bottom: 0.8rem;
  padding-top: 1rem;
}
.inside-news-show h1 {
  color: #040806;
  text-align: center;
  font-family: "myfont2";
}
.inside-news-show .info {
  margin-bottom: 0.4rem;
  font-size: 0.14rem;
  text-align: center;
  padding-top: 0.3rem;
  padding-bottom: 0.2rem;
  border-bottom: solid 1px #dedede;
}
.inside-news-show .info img {
  opacity: 0.3;
  margin: 0 0.05rem 0.03rem 0;
  vertical-align: middle;
  max-height: 0.15rem;
}
.inside-news-show .info span {
  padding: 0 0.3rem;
  display: inline-block;
}
.inside-news-show .tag {
  margin-top: 0.3rem;
}
.inside-news-show .tag span {
  padding: 0 0.1rem;
  display: inline-block;
}
.inside-news-show .tag strong {
  color: #333;
  font-family: "myfont2";
}
@media (max-width: 1024px) {
  .inside-news-show {
    line-height: 24px;
    padding: 40px 0 50px 0;
  }
  .inside-news-show .info {
    font-size: 12px;
    padding: 15px 0;
    margin-bottom: 20px;
  }
  .inside-news-show .tag {
    margin-top: 30px;
  }
}
.inside-page-news {
  margin-top: 0.4rem;
  height: 0.57rem;
  line-height: 0.55rem;
  overflow: hidden;
  position: relative;
  font-family: arial;
  font-size: 0.14rem;
  border-top: solid 1px #e1e1e1;
  border-bottom: solid 1px #e1e1e1;
}
.inside-page-news li {
  width: 44%;
  float: left;
  color: #999;
  transition: all 500ms ease;
  padding: 0 0.6rem;
}
.inside-page-news li a {
  color: #888;
  display: block;
}
.inside-page-news li:nth-child(2) {
  float: right;
  text-align: right;
}
.inside-page-news .fanhui {
  width: 12%;
  top: 0;
  left: 50%;
  padding: 0;
  height: 100%;
  text-align: center;
  transform: translateX(-50%);
  position: absolute;
  border-left: solid 1px #e1e1e1;
  border-right: solid 1px #e1e1e1;
}
.inside-page-news .fanhui img {
  margin-bottom: 0.03rem;
  vertical-align: middle;
  max-height: 0.2rem;
}
.inside-page-news li:hover {
  background: #f8f8f8;
}
@media (max-width: 1024px) {
  .inside-page-news {
    margin-top: 30px;
    height: 45px;
    line-height: 43px;
    font-size: 12px;
  }
  .inside-page-news li {
    padding: 0 5px!important;
    width: 33.333%!important;
  }
}
.inside-xg-news {
  padding: 0.8rem 0;
}
.inside-xg-news .tablist .slick-prev,
.inside-xg-news .tablist .slick-next {
  top: -0.6rem;
}
@media (max-width: 1024px) {
  .inside-xg-news {
    padding: 40px 0;
  }
  .inside-xg-news .tablist .slick-prev,
  .inside-xg-news .tablist .slick-next {
    top: -20px;
  }
}
.inside-medicines {
  padding-top: 0.5rem;
}
.inside-medicines ul {
  margin: 0 -0.25rem;
}
.inside-medicines li:hover .pic img {
  transform: scale(1.05);
}
.inside-medicines li:hover .text {
  background: rgba(153, 142, 237, 0.3);
}
.inside-medicines li {
  width: 50%;
  float: left;
  margin-top: 0.5rem;
  padding: 0 0.25rem;
}
.inside-medicines li .item {
  overflow: hidden;
  display: block;
  position: relative;
  background: #fcf3ff;
  border-radius: 0.1rem;
  border: solid 1px #d9c2ec;
}
.inside-medicines li .item img {
  border-radius: 0.1rem;
}
.inside-medicines li .pic {
  overflow: hidden;
  position: relative;
}
.inside-medicines li .pic img {
  transition: all 700ms ease;
}
.inside-medicines li .pic:after {
  content: "";
  display: block;
  padding-bottom: 61%;
}
.inside-medicines li .text {
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 0.1rem 0.4rem;
  color: #541b86;
  position: absolute;
  text-transform: uppercase;
  border-bottom-left-radius: 0.1rem;
  border-bottom-right-radius: 0.1rem;
  background: rgba(153, 142, 237, 0.45);
  transition: all 700ms ease;
}
.inside-medicines li .tit {
  height: 0.4rem;
  line-height: 0.4rem;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.inside-medicines li .tit img {
  float: right;
  margin-left: 0.2rem;
  vertical-align: top;
  max-height: 0.4rem;
}
@media (max-width: 1024px) {
  .inside-medicines {
    padding-top: 20px;
  }
  .inside-medicines ul {
    margin: 0 -10px;
  }
  .inside-medicines li {
    margin-top: 20px;
    padding: 0 10px;
  }
  .inside-medicines li .text {
    padding: 0px 20px;
  }
  .inside-medicines li .tit {
    height: 40px;
    line-height: 40px;
  }
  .inside-medicines li .tit img {
    max-height: 24px;
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .inside-medicines li {
    width: 100%;
  }
}
.inside-business {
  padding-bottom: 0.8rem;
  font-family: arial;
  line-height: 0.32rem;
}
.inside-business .f18 {
  padding-top: 0.3rem;
}
.inside-business .list {
  padding-top: 0.5rem;
}
.inside-business .left {
  width: 28%;
  float: left;
}
.inside-business .left li {
  cursor: pointer;
  margin-bottom: 0.08rem;
  height: 0.65rem;
  position: relative;
  line-height: 0.63rem;
  border-radius: 0.05rem;
  border: solid 1px #bbbbbb;
}
.inside-business .left li span {
  vertical-align: top;
  display: inline-block;
}
.inside-business .left li .ico {
  margin-right: 0.2rem;
  margin-left: 0.15rem;
  margin-top: 0.08rem;
  position: relative;
  display: inline-block;
  width: 0.48rem;
  height: 0.48rem;
  background: #ece6f2;
  border-radius: 100%;
  border: dashed 1px #541b86;
  transition: all 500ms ease;
}
.inside-business .left li .ic2 {
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(0.5);
  position: absolute;
  transition: all 500ms ease;
}
.inside-business .left li .f20 {
  color: #000;
  font-family: "myfont2";
}
.inside-business .left .slick-current {
  background: #541b86;
}
.inside-business .left .slick-current .ico {
  background: #673493;
  border-color: #fff;
}
.inside-business .left .slick-current .ic1 {
  opacity: 0;
}
.inside-business .left .slick-current .ic2 {
  opacity: 1;
  transform: scale(1);
}
.inside-business .left .slick-current .f20 {
  color: #fff;
}
.inside-business .right {
  width: 70.5%;
  float: right;
  margin-bottom: 0.08rem;
  margin-top: 0rem;
  height: 4.3rem;
  border-radius: 0.1rem;
  padding: 0.24rem;
  border: solid 1px #dfdfdf;
}
.inside-business .right dt {
  width: 46.1%;
  float: left;
  border-radius: 0.1rem;
}
.inside-business .right dt img {
  width: 4.45rem;
  height: 3.76rem;
  border-radius: 0.1rem;
}
.inside-business .right dd {
  width: 53%;
  float: left;
  padding-left: 0.45rem;
  padding-right: 0.21rem;
}
.inside-business .right .f30 {
  color: #000000;
  padding: 0.3rem 0;
  font-family: "myfont2";
}
.inside-business .right .f30 span {
  position: relative;
  display: inline-block;
}
.inside-business .right .f30 span:after {
  content: "";
  z-index: -1;
  right: 0rem;
  position: absolute;
  width: 0.2rem;
  height: 0.2rem;
  background: #d9cde4;
  border-radius: 100%;
}
.inside-business .right .t1 {
  padding-bottom: 0.1rem;
}
.inside-business .right .t1 span {
  color: #541b86;
  font-weight: 700;
}
.inside-business .list-2 {
  border: solid 1px #d9c2ec;
  margin-top: 0.4rem;
}
.inside-business .list-2 li {
  width: 100%;
  display: flex;
  background: #fefdfe;
  align-items: center;
}
.inside-business .list-2 li span {
  width: 19.2%;
  padding: 0 0.15rem;
  text-align: center;
  align-items: center;
}
.inside-business .list-2 li span:last-child {
  width: 22%;
}
.inside-business .list-2 li:first-child {
  color: #fff;
  font-size: 0.24rem;
  font-family: "myfont2";
  background: #541b86;
  border-top: 0;
}
.inside-business .list-2 li {
  line-height: 0.2rem;
  height: 0.7rem;
  border-top: solid 1px #d9c2ec;
}
.inside-business .list-2 .tu {
  vertical-align: top;
}
.inside-business .list-2 .bg {
  background: #f8efff;
}
@media (max-width: 1024px) {
  .inside-business {
    padding: 40px 0 50px 0;
    line-height: 24px;
  }
  .inside-business .left {
    width: 100%;
    float: none;
  }
  .inside-business .left li {
    margin-bottom: 8px;
    height: 50px;
    line-height: 48px;
    border-radius: 5px;
  }
  .inside-business .left li .ico {
    width: 30px;
    height: 30px;
    margin-top: 9px;
    margin-left: 15px;
    margin-right: 10px;
  }
  .inside-business .right {
    width: 100%;
    float: none;
    height: auto;
    padding: 15px;
    margin-bottom: 0;
    border-radius: 5px;
  }
  .inside-business .right dt {
    display: none;
  }
  .inside-business .right dd {
    width: 100%;
    float: none;
  }
  .inside-business .right .f30 {
    padding: 10px 0;
  }
  .inside-business .list-2 {
    margin-top: 20px;
  }
  .inside-business .list-2 li {
    padding: 15px 0;
    text-align: center;
    display: block;
    line-height: 20px;
    height: auto;
  }
  .inside-business .list-2 li span {
    padding: 5px 10px;
    width: 100%!important;
    float: none;
    display: block;
  }
  .inside-business .list-2 li:first-child {
    font-size: 14px;
  }
}
@media (max-width: 630px) {
  .inside-business .list {
    margin-top: 20px;
  }
  .inside-business .slick-prev {
    margin-top: -15px;
    left: auto;
    right: 20px;
    transform: rotate(135deg);
  }
  .inside-business .slick-next {
    margin-top: 0px;
    left: auto;
    right: 20px;
    transform: rotate(45deg);
  }
  .inside-business .slick-prev,
  .inside-business .slick-next {
    width: 10px;
    height: 10px;
  }
  .inside-business .inside-business .left li .ico {
    background: #541b86;
    color: #fff;
  }
}
.inside-business-2 {
  font-family: arial;
}
.inside-business-2 .tu {
  padding: 0.7rem 0;
  text-align: center;
}
.inside-business-2 .list-1 {
  overflow: hidden;
  position: relative;
  padding: 0.8rem 0 0.5rem 0;
  background: #f7fbfe;
  line-height: 0.36rem;
}
.inside-business-2 .list-1 em {
  font-style: normal;
}
.inside-business-2 .list-1 span {
  padding-right: 0.05rem;
  vertical-align: top;
  display: inline-block;
  color: #541b86;
}
.inside-business-2 .list-1 .t1 {
  margin-top: 0.36rem;
}
.inside-business-2 .list-1 .leftbox {
  width: 70%;
  float: left;
  z-index: 2;
  position: relative;
}
.inside-business-2 .list-1 .right {
  width: 30%;
  float: left;
  padding-top: 0.5rem;
  margin-left: -4.8rem;
}
.inside-business-2 .list-1 .right ul {
  width: 300%;
}
.inside-business-2 .list-1 .right img {
  width: 11.67rem;
  height: 6.47rem;
}
@media (max-width: 1024px) {
  .inside-business-2 {
    padding: 40px 0 0px 0;
  }
  .inside-business-2 .tu {
    padding: 30px 0;
  }
  .inside-business-2 .list-1 {
    padding: 40px 0;
    line-height: 24px;
  }
  .inside-business-2 .list-1 .leftbox {
    width: 100%;
    float: none;
  }
  .inside-business-2 .list-1 .right {
    width: 100%;
    float: none;
    padding-top: 0;
    margin-top: 20px;
    margin-left: 0;
  }
  .inside-business-2 .list-1 .right img {
    width: auto;
    height: auto;
  }
  .inside-business-2 .list-1 .right ul {
    width: 100%;
  }
}
.inside-business-3 {
  line-height: 0.32rem;
  font-family: arial;
}
.inside-business-3 .list-1 {
  padding-bottom: 0.9rem;
}
.inside-business-3 .list-1 .f35 {
  padding-top: 0.5rem;
}
.inside-business-3 .list-1 .t1 {
  padding: 0.15rem 0;
}
.inside-business-3 .list-1 .t2 {
  margin-left: 0.3rem;
  padding-left: 0.14rem;
  position: relative;
}
.inside-business-3 .list-1 .t2:before {
  content: "";
  top: 0.13rem;
  left: 0;
  position: absolute;
  width: 0.04rem;
  height: 0.04rem;
  border-radius: 100%;
  background: #541b86;
}
.inside-business-3 .list-1 .t2 span {
  color: #541b86;
  font-weight: 700;
}
.inside-business-3 .list-1 .t3 {
  font-weight: 700;
  padding-left: 0.14rem;
  position: relative;
}
.inside-business-3 .list-1 .t3:before {
  content: "";
  top: 0.13rem;
  left: 0;
  position: absolute;
  width: 0.05rem;
  height: 0.05rem;
  border-radius: 100%;
  background: #541b86;
}
.inside-business-3 .list-2 {
  padding: 0.8rem 0;
  background: #f7fbfe;
}
.inside-business-3 .list-2 .lefttext {
  width: 60%;
  float: left;
}
.inside-business-3 .list-2 .right {
  width: 38.5%;
  float: right;
}
.inside-business-3 .list-2 .right li {
  margin: 0 0.06rem;
  position: relative;
}
.inside-business-3 .list-2 .right li:after {
  content: "";
  display: block;
  padding-bottom: 51.8%;
}
.inside-business-3 .list-2 .right .slick-dots {
  bottom: 0.1rem;
  padding-right: 0.2rem;
  text-align: right;
}
.inside-business-3 .list-2 .right .slick-dots li button {
  width: 0.08rem;
  height: 0.08rem;
}
.inside-business-3 .list-2 .right .slick-dots li.slick-active button {
  background: #541b86;
}
.inside-business-3 .list-2 .f35 {
  padding-bottom: 0.2rem;
}
.inside-business-3 .list-2 .t1 {
  padding-left: 0.14rem;
  position: relative;
}
.inside-business-3 .list-2 .t1:before {
  content: "";
  top: 0.13rem;
  left: 0;
  position: absolute;
  width: 0.05rem;
  height: 0.05rem;
  border-radius: 100%;
  background: #541b86;
}
.inside-business-3 .list-3 {
  background: #fff;
}
.inside-business-3 .list-3 .lefttext {
  width: 100%;
  float: none;
}
.inside-business-3 .list-3 .tu {
  border-radius: 0.1rem;
  margin-top: 0.5rem;
}
.inside-business-3 .list-3 .tu span {
  display: block;
  width: 33.333%;
  float: left;
}
.inside-business-3 .list-3 .tu span:first-child img {
  border-top-left-radius: 0.1rem;
  border-bottom-left-radius: 0.1rem;
}
.inside-business-3 .list-3 .tu span:last-child img {
  border-top-right-radius: 0.1rem;
  border-bottom-right-radius: 0.1rem;
}
@media (max-width: 1024px) {
  .inside-business-3 {
    line-height: 24px;
    padding-top: 40px;
  }
  .inside-business-3 .list-2 {
    padding: 40px 0;
  }
  .inside-business-3 .list-2 .lefttext,
  .inside-business-3 .list-2 .right {
    width: 100%;
    float: none;
  }
  .inside-business-3 .list-2 .right {
    margin-top: 30px;
  }
  .inside-business-3 .list-2 .right .slick-dots {
    bottom: 15px;
    text-align: center;
    padding-right: 0;
  }
  .inside-business-3 .list-2 .right .slick-dots li button {
    width: 8px;
    height: 8px;
  }
  .inside-business-3 .list-2 .right li {
    margin: 0 3px;
  }
}
.inside-medicines-show {
  padding: 1rem 0;
}
.inside-medicines-show .list-1 .left {
  width: 48.1%;
  float: left;
  border: solid 1px #d9c2ec;
}
.inside-medicines-show .list-1 .left li {
  position: relative;
}
.inside-medicines-show .list-1 .left li:after {
  content: "";
  display: block;
  padding-bottom: 60.9%;
}
.inside-medicines-show .list-1 .left .slick-dots {
  bottom: 0;
  height: 0.56rem;
  line-height: 0.4rem;
  background: rgba(153, 142, 237, 0.45);
}
.inside-medicines-show .list-1 .left .slick-dots li button {
  width: 0.1rem;
  height: 0.1rem;
  margin: 0 0.08rem;
}
.inside-medicines-show .list-1 .left .slick-dots li.slick-active button {
  background: #541b86;
}
.inside-medicines-show .list-1 .right {
  width: 50%;
  float: right;
  padding-top: 0.4rem;
  padding-left: 0.7rem;
}
.inside-medicines-show .list-1 .right h1 {
  color: #541b86;
  font-size: 0.24rem;
  padding: 0.25rem 0 0.15rem 0;
}
.inside-medicines-show .list-1 .right .box {
  min-height: 2.7rem;
}
.inside-medicines-show .list-1 .right .button {
  margin-top: 0.1rem;
}
.inside-medicines-show .list-1 .right .button a {
  margin-left: 0.15rem;
  height: 0.4rem;
  vertical-align: top;
  line-height: 0.38rem;
  text-align: center;
  display: inline-block;
  border: solid 1px #666;
  width: 1.8rem;
  transition: all 400ms ease;
  overflow:hidden;
}
.inside-medicines-show .list-1 .right .button a:first-child {
  margin-left: 0;
  color: #fff;
  border-color: #541b86;
  background: #541b86;
}
.inside-medicines-show .list-1 .right .button a:hover {
  opacity: 0.9;
  border-color: #541b86;
}
.inside-medicines-show .list-1 .right .button img {
  margin: 0.1rem 0.05rem 0 0;
}
.inside-medicines-show .list-2 {
  font-family: arial;
  margin-top: 0.5rem;
  line-height: 0.32rem;
  padding-top: 0.5rem;
  border-top: solid 0.03rem #f7eeff;
}
.inside-medicines-show .list-2 .f24 {
  color: #333;
  font-size: 0.24rem;
  font-family: "myfont2";
}
.inside-medicines-show .list-2 .t1 {
  padding-top: 0.3rem;
}
@media (max-width: 1024px) {
  .inside-medicines-show {
    padding: 40px 0 50px 0;
  }
  .inside-medicines-show .list-1 .left {
    width: 100%;
    float: none;
  }
  .inside-medicines-show .list-1 .left .slick-dots {
    height: 40px;
    line-height: 30px;
  }
  .inside-medicines-show .list-1 .left .slick-dots li button {
    width: 8px;
    height: 8px;
  }
  .inside-medicines-show .list-1 .right {
    padding-top: 30px;
    padding-left: 0px;
    width: 100%;
    float: none;
  }
  .inside-medicines-show .list-1 .right .box {
    min-height: auto;
  }
  .inside-medicines-show .list-1 .right h1 {
    font-size: 18px;
    padding: 10px 0;
  }
  .inside-medicines-show .list-1 .right .button {
    margin-top: 20px;
  }
  .inside-medicines-show .list-1 .right .button a {
    height: 40px;
    width: auto;
    padding: 0 10px;
    line-height: 38px;
    margin-left: 10px;
  }
  .inside-medicines-show .list-1 .right .button img {
    margin: 10px 5px 0 0;
  }
  .inside-medicines-show .list-2 {
    line-height: 24px;
    margin-top: 30px;
    padding-top: 30px;
  }
  .inside-medicines-show .list-2 .f24 {
    font-size: 18px;
  }
  .inside-medicines-show .list-2 .t1 {
    padding-top: 20px;
  }
}
.inside-quality {
  padding-bottom: 0.8rem;
  font-family: arial;
  line-height: 0.32rem;
}
.inside-quality .f35 {
  padding-bottom: 0.3rem;
}
.inside-quality .list-1 {
  padding-top: 0.6rem;
}
.inside-quality .list-1 ul {
  padding: 0 0.25rem;
  display: wrap;
  display: flex;
}
.inside-quality .list-1 li {
  float: left;
  width: 33.333%;
  display: flex;
  padding: 0 0.35rem;
}
.inside-quality .list-1 li:hover .box {
  color: #fff;
  background: #541b86;
}
.inside-quality .list-1 li:hover .tit {
  color: #fff;
}
.inside-quality .list-1 li:hover .ico:after {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.29);
}
.inside-quality .list-1 li:hover .ic1 {
  opacity: 0;
}
.inside-quality .list-1 li:hover .ic2 {
  opacity: 1;
}
.inside-quality .list-1 .box {
  padding: 0.15rem;
  border-radius: 0.05rem;
  border: solid 1px #d9c2ec;
  background: #f8f0ff;
  position: relative;
}
.inside-quality .list-1 .tu {
  left: 0;
  bottom: 0;
  width: 2.1rem;
  height: 1.96rem;
  position: absolute;
}
.inside-quality .list-1 .item {
  padding: 0.3rem;
  text-align: center;
  height: 100%;
  border-radius: 0.05rem;
  border: solid 1px #f8f0ff;
  transition: all 500ms ease;
}
.inside-quality .list-1 .tit {
  color: #3e3a39;
  padding-top: 0.3rem;
  font-size: 0.28rem;
  font-family: "myfont2";
  padding-bottom: 0.15rem;
}
.inside-quality .list-1 .ico {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 100%;
  margin: 0 auto;
  position: relative;
}
.inside-quality .list-1 .ico:after {
  content: "";
  top: 0.25rem;
  right: 0.05rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 100%;
  position: absolute;
  background: rgba(84, 27, 134, 0.29);
  transition: all 500ms ease;
}
.inside-quality .list-1 .ic2 {
  top: 0;
  left: 0;
  opacity: 0;
  position: absolute;
}
.inside-quality .list-2 {
  padding: 0 60px;
  margin-top: 0.6rem;
}
.inside-quality .list-2 li {
  padding: 0.2rem;
  border-radius: 0.05rem;
  border: solid 1px #d9c2ec;
  background: #f8f0ff;
  position: relative;
}
.inside-quality .list-2 li .item {
  padding: 0.3rem;
  border-radius: 0.05rem;
  border: solid 1px #f8f0ff;
}
.inside-quality .list-2 li .tu {
  left: 0;
  bottom: 0;
  position: absolute;
  width: 2.1rem;
  height: 1.96rem;
}
.inside-quality .list-2 li .txtbox {
  padding-left: 2rem;
}
.inside-quality .list-2 li:hover {
  background: #541b86;
}
.inside-quality .list-2 li:hover .icon:after {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.29);
}
.inside-quality .list-2 li:hover .ic1 {
  opacity: 0;
}
.inside-quality .list-2 li:hover .ic2 {
  opacity: 1;
}
.inside-quality .list-2 li:hover .tit {
  color: #fff;
}
.inside-quality .list-2 li:hover .txt {
  color: #fff;
}
.inside-quality .list-2 .icon {
  top: 0.35rem;
  left: 0.9rem;
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 100%;
}
.inside-quality .list-2 .icon:after {
  content: "";
  top: 0.25rem;
  right: 0.05rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 100%;
  position: absolute;
  background: rgba(84, 27, 134, 0.29);
  transition: all 500ms ease;
}
.inside-quality .list-2 .icon i {
  font-style: normal;
}
.inside-quality .list-2 .icon .ic2 {
  top: 0;
  left: 0;
  opacity: 0;
  position: absolute;
}
.inside-quality .list-2 .tit {
  color: #3e3a39;
  font-family: "myfont2";
}
.inside-quality .list-2 .txt {
  padding-top: 0.2rem;
}
@media (max-width: 1024px) {
  .inside-quality {
    line-height: 24px;
    padding: 40px 0 40px 0;
  }
  .inside-quality .list-1 {
    padding-top: 30px;
  }
  .inside-quality .list-1 ul {
    padding: 0;
    display: block;
  }
  .inside-quality .list-1 li {
    display: block;
    padding: 0;
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
  .inside-quality .list-1 .box {
    padding: 15px;
  }
  .inside-quality .list-1 .item {
    padding: 20px 15px!important;
  }
  .inside-quality .list-1 .ico {
    width: 60px;
    height: 60px;
  }
  .inside-quality .list-1 .tit {
    padding: 10px 0;
    font-size: 18px;
  }
  .inside-quality .list-1 .ico::after {
    width: 20px;
    height: 20px;
  }
  .inside-quality .list-2 {
    padding: 0;
    margin-top: 0;
  }
  .inside-quality .list-2 .icon {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 500px) {
  .inside-quality .list-2 li {
    text-align: center;
    padding: 30px 20px;
  }
  .inside-quality .list-2 .icon {
    top: auto;
    left: auto;
    display: block;
    margin: 0 auto;
    position: relative;
  }
  .inside-quality .list-2 .icon:after {
    width: 20px;
    height: 20px;
  }
  .inside-quality .list-2 li .txtbox {
    padding: 0 ;
  }
}
.inside-quality-2 {
  font-family: arial;
  line-height: 0.32rem;
  padding-bottom: 0.8rem;
}
.inside-quality-2 .t1 span {
  color: #541b86;
  font-weight: 700;
}
.inside-quality-2 .f35 {
  padding: 0.4rem 0;
  text-transform: uppercase;
}
.inside-quality-2 .f24 {
  font-weight: 700;
  color: #541b86;
  font-size: 0.24rem;
  font-family: "myfont2";
}
.inside-quality-2 .numlist {
  padding: 0.6rem 0 0 0;
}
.inside-quality-2 .numlist ul {
	margin-bottom:20px;
}
.inside-quality-2 .numlist li {
  width: 21%;
  float: left;
  font-family: arial;
}
.inside-quality-2 .numlist li p:first-child {
  color: #541b86;
}
.inside-quality-2 .numlist li .f30 {
  font-size: 0.4rem;
  color: #541b86;
  font-family: "myfont2";
}
.inside-quality-2 .numlist li:first-child {
  width: 35%;
}
.inside-quality-2 .numlist .counter {
  display: inline-block;
  color: #541b86;
  font-size: 0.4rem;
  line-height: 0.4rem;
  font-family: "myfont2";
}
.inside-quality-2 .numlist em,
.inside-quality-2 .numlist i {
  vertical-align: top;
  font-style: normal;
  display: inline-block;
}
.inside-quality-2 .numlist i {
  margin: 0 0.1rem;
  margin-top: 0.05rem;
}
.inside-quality-2 .numlist em {
  vertical-align: bottom;
  margin-bottom: 0.03rem;
}
@media (max-width: 1024px) {
  .inside-quality-2 {
    line-height: 24px;
    padding: 40px 0 50px 0;
  }
  .inside-quality-2 .f24 {
    font-size: 18px;
  }
  .inside-quality-2 .numlist {
    padding-top: 0;
  }
  .inside-quality-2 .numlist .counter {
    font-size: 20px;
    line-height: 30px;
  }
  .inside-quality-2 .numlist ul {
    width: 100%;
  }
  .inside-quality-2 .numlist li {
    float: none;
    padding-top: 20px;
    width: 100%!important;
  }
  .inside-quality-2 .numlist li .f30 {
    font-size: 20px;
  }
  .inside-quality-2 .numlist i {
    margin: 5px 5px 0 5px;
  }
  .inside-quality-2 .numlist em {
    margin-bottom: 0;
  }
}
.inside-quality-3 {
  font-family: arial;
  line-height: 0.32rem;
  padding-bottom: 0.8rem;
}
.inside-quality-3 .f35 {
  padding-bottom: 0.1rem;
}
.inside-quality-3 .t1 {
  padding-top: 0.2rem;
}
.inside-quality-3 .list {
  margin-top: 0.6rem;
}
.inside-quality-3 .list li {
  padding: 0 0.3rem;
  margin-top: 0.2rem;
  background: #eff9ff;
  vertical-align: top;
  line-height: 0.65rem;
  border-radius: 0.1rem;
  font-weight: 700;
}
.inside-quality-3 .list li a {
  color: #541b86;
}
.inside-quality-3 .list li a:hover {
  color: #1947ba;
}
.inside-quality-3 .list li img {
  width: 0.34rem;
  height: 0.34rem;
  vertical-align: middle;
  margin-right: 0.2rem;
}
.inside-quality-3 .list li:last-child {
  font-family: "myfont2";
}
@media (max-width: 1024px) {
  .inside-quality-3 {
    line-height: 24px;
    padding: 40px 0 50px 0;
  }
  .inside-quality-3 .list {
    margin-top: 30px;
  }
  .inside-quality-3 .list li {
    padding: 0 20px;
    margin-top: 20px;
    height: 65px;
    line-height: 65px;
    border-radius: 5px;
  }
  .inside-quality-3 .list li img {
    width: 34px;
    height: 34px;
    margin-right: 10px;
  }
  .inside-quality-3 .list li:last-child {
    font-family: arial;
  }
}
@media (max-width: 500px) {
  .inside-quality-3 .list li {
    font-size: 14px;
    padding: 0 10px;
    letter-spacing: -1px;
  }
  .inside-quality-3 .list li img {
    width: 24px;
    height: 24px;
  }
}
.inside-esg1 {
  font-family: arial;
  color: #fff;
  line-height: 0.32rem;
}
.inside-esg1 .f35 {
  color: #fff;
  padding: 1rem 0 0.2rem 0;
}
.inside-esg1 .t1 {
  padding-top: 0.1rem;
}
.inside-esg1 .txtbox {
  width: 62%;
}
@media (max-width: 1024px) {
  .inside-esg1 {
    line-height: 20px;
  }
  .inside-esg1 .f35 {
    padding: 20px 0;
  }
  .inside-esg1 .txtbox {
    width: 100%;
    padding: 30px 0;
  }
}
@media (max-width: 1024px) {
  .inside-esg2 {
    margin-top: 50px;
  }
}
.inside-join {
  font-family: arial;
  padding-bottom: 0.9rem;
}
.inside-join .f35 {
  padding-bottom: 0.2rem;
  text-transform:uppercase;
}
.inside-join .list {
  position: relative;
  padding-top: 0.25rem;
}
.inside-join .tu {
  position: relative;
  text-align: center;
}
.inside-join .tu img {
  max-height: 1.92rem;
}
.inside-join .tit {
  margin-top: 0.25rem;
  padding: 0.25rem;
  background: #f3f6fd;
  cursor: pointer;
}
.inside-join .date {
  width: 9%;
  float: left;
  color: #fff;
  text-align: center;
  font-family: arial;
  background: #541b86;
}
.inside-join .date span {
  display: block;
}
.inside-join .date .arrow {
  height: 19px;
  background: url(../images/job-arrow.png) no-repeat right center #d1d1d1;
}
.inside-join .date .riqi {
  font-size: 0.38rem;
  height: 0.46rem;
  line-height: 0.46rem;
  padding-top: 0.05rem;
}
.inside-join .date .nian {
  font-size: 12px;
  line-height: 14px;
  padding-bottom: 0.05rem;
}
.inside-join .wenzi {
  width: 60%;
  float: left;
  margin-top: 0.1rem;
  padding-left: 0.4rem;
  overflow: hidden;
}
.inside-join .wenzi .t1 {
  color: #292e33;
  font-size: 0.24rem;
  line-height: 0.7rem;
  height: 0.7rem;
  overflow: hidden;
  font-weight: 700;
}
.inside-join .add {
  float: right;
  width: 15%;
  height: 0.4rem;
  overflow: hidden;
  line-height: 0.4rem;
  position: relative;
  margin-top: 0.2rem;
}
.inside-join .add:after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  right: 0;
  top: 0;
  position: absolute;
  vertical-align: top;
  border-radius: 100%;
  background: url(../images/jia.png) no-repeat center center #541b86;
}
.inside-join .txt {
  display: none;
  position: relative;
  line-height: 0.32rem;
  padding: 0.5rem;
  background: #fbfbfd;
}
.inside-join .txt p {
  padding-bottom: 0.1rem;
}
.inside-join .active .add:after {
  background: url(../images/jian.png) no-repeat center center #541b86;
}
.inside-join .active .arrow {
  background: url(../images/job-arrow-2.png) no-repeat right center #d1d1d1;
}
.inside-join .btn {
  bottom: 0.6rem;
  right: 0.5rem;
  position: absolute;
  width: 1.6rem;
  height: 0.57rem;
  font-size: 0.16rem;
  line-height: 0.42rem;
  background: #541b86;
  text-align: center;
  border-top: solid 0.15rem #d1d1d1;
}
.inside-join .btn a {
  color: #fff;
  display: block;
}
.inside-join .btn i {
  font-family: "iconfont";
  font-style: normal;
  font-size: 0.3rem;
  vertical-align: top;
  display: inline-block;
  margin: 0.03rem 0.05rem 0 0;
}
.inside-join .btn img {
  max-height: 0.25rem;
  vertical-align: middle;
}
@media (max-width: 1024px) {
  .inside-join {
    padding: 40px 0 50px 0;
  }
  .inside-join .list {
    padding-top: 20px;
  }
  .inside-join .date {
    display: none;
  }
  .inside-join .tit {
    padding: 10px 15px;
  }
  .inside-join .wenzi {
    padding-left: 0;
    width: 100%;
    margin-top: 0;
  }
  .inside-join .wenzi .t1 {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    margin-top: 0!important;
  }
  .inside-join .wenzi .t2 {
    font-size: 12px;
  }
  .inside-join .add {
    display: none;
  }
  .inside-join .tit {
    margin-top: 15px;
  }
  .inside-join .txt {
    padding: 20px;
    font-size: 14px;
    line-height: 20px;
  }
  .inside-join .txt p {
    padding-bottom: 10px;
  }
  .inside-join .font18 {
    font-size: 16px;
    padding: 10px 0;
  }
  .inside-join .font20 {
    font-size: 17px;
    margin: 20px 0 10px 0;
  }
  .inside-join .youxiang {
    border-radius: 5px;
    width: 100%;
  }
  .inside-join .btn {
    top: auto;
    right: auto;
    position: relative;
    margin-top: 30px;
    width: 140px;
    height: 36px;
    border: 0;
    line-height: 36px;
    font-size: 14px;
  }
  .inside-join .btn img {
    max-height: 20px;
  }
}
.inside-rd {
  font-family: arial;
  padding-bottom: 2.2rem;
  background-image: url(../images/rd-bg.jpg);
  background-repeat: no-repeat;
  background-position: bottom center;
  line-height: 0.32rem;
}
.inside-rd .f35 {
  padding-bottom: 0.25rem;
}
.inside-rd .t1 {
  padding-top: 0.1rem;
}
.inside-rd .list {
  padding-bottom: 0.3rem;
  padding-top: 0.5rem;
}
.inside-rd .list ul {
  margin: 0 -0.11rem;
}
.inside-rd .list li {
  padding: 0 0.11rem;
}
.inside-rd .list li:hover .pic img {
  transform: scale(1.05);
}
.inside-rd .list .item {
  position: relative;
}
.inside-rd .list .pic {
  overflow: hidden;
  position: relative;
}
.inside-rd .list .pic:after {
  content: "";
  display: block;
  padding-bottom: 65%;
}
.inside-rd .list .pic:before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  background: rgba(0, 0, 0, 0.49);
}
.inside-rd .list .pic img {
  transition: all 700ms ease;
}
.inside-rd .list .txtbox {
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 100%;
  color: #fff;
  font-size: 0.16rem;
  padding: 0 0.2rem;
  text-align: center;
  position: absolute;
  font-family: "myfont";
  transform: translate(-50%, -50%);
}
.inside-rd .list .tit {
  font-size: 0.22rem;
}
.inside-rd .list .txt {
  margin-top: 0.1rem;
}
.inside-rd .list .slick-prev,
.inside-rd .list .slick-next {
  width: 0.2rem;
  height: 0.48rem;
  background: #f0e2fc;
  border: 0;
  transition: all 334ms ease;
  margin-top: -0.24rem;
}
.inside-rd .list .slick-prev:before,
.inside-rd .list .slick-next:before {
  content: "";
  color: #541b86;
  font-family: "宋体";
  font-size: 0.18rem;
}
.inside-rd .list .slick-prev:hover,
.inside-rd .list .slick-next:hover {
  background: #541b86;
}
.inside-rd .list .slick-prev:hover:before,
.inside-rd .list .slick-next:hover:before {
  color: #fff;
}
.inside-rd .list .slick-prev {
  left: -0.18rem;
  border-top-left-radius: 0.05rem;
  border-bottom-left-radius: 0.05rem;
}
.inside-rd .list .slick-prev:before {
  content: "<";
}
.inside-rd .list .slick-next {
  right: -0.18rem;
  border-top-right-radius: 0.05rem;
  border-bottom-right-radius: 0.05rem;
}
.inside-rd .list .slick-next:before {
  content: ">";
}
.inside-rd .list-2 {
  padding-top: 0.2rem;
}
.inside-rd .list-2 ul {
  display: flex;
  margin: 0 -0.2rem;
}
.inside-rd .list-2 li {
  float: left;
  width: 30%;
  margin-top: 0.3rem;
  font-family: "myfont2";
  padding: 0 0.2rem;
}
.inside-rd .list-2 li .item {
  display: flex;
  align-items: center;
  position: relative;
  height: 0.72rem;
  vertical-align: top;
  background: linear-gradient(to right, #5c1a8e, #6a21a7);
}
.inside-rd .list-2 li img {
  vertical-align: top;
  width: 0.88rem;
  height: 0.72rem;
}
.inside-rd .list-2 li i {
  right: 0;
  top: 0;
  font-style: normal;
  position: absolute;
}
.inside-rd .list-2 li i img {
  width: 0.26rem;
  height: 0.72rem;
}
.inside-rd .list-2 li span {
  display: block;
  color: #fff;
  line-height: 0.22rem;
  vertical-align: top;
}
@media (max-width: 1024px) {
  .inside-rd {
    line-height: 24px;
    padding: 40px 0 50px 0;
  }
  .inside-rd .t1 {
    padding-top: 10px;
  }
  .inside-rd .list .txtbox {
    font-size: 14px;
    line-height: 20px;
    padding: 0 30px;
  }
  .inside-rd .list .tit {
    font-size: 18px;
  }
  .inside-rd .list .txt {
    margin-top: 10px;
  }
  .inside-rd .list .slick-prev,
  .inside-rd .list .slick-next {
    width: 20px;
    height: 30px;
    line-height: 30px;
  }
  .inside-rd .list .slick-prev:before,
  .inside-rd .list .slick-next:before {
    font-size: 16px;
  }
  .inside-rd .list .slick-prev {
    left: 2px;
  }
  .inside-rd .list .slick-next {
    right: 1px;
  }
  .inside-rd .list-2 ul {
    display: block;
  }
  .inside-rd .list-2 li {
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 640px) {
  .inside-rd .list-2 li .item {
    height: auto;
    padding: 20px;
  }
  .inside-rd .list-2 li .item img {
    display: none;
  }
}
.inside-rd-2 {
  padding-bottom: 0.8rem;
  font-size: 0.18rem;
  font-family: arial;
  line-height: 0.32rem;
}
.inside-rd-2 .t1 {
  padding-bottom: 0.1rem;
}
.inside-rd-2 .t2,
.inside-rd-2 .t3 {
  font-weight: 600;
  line-height: 0.2rem;
  padding: 0 0.1rem 0 0.3rem;
}
.inside-rd-2 .t3 {
  text-align: center;
  padding: 0 0.15rem;
}
.inside-rd-2 .table {
  margin-top: 0.3rem;
}
.inside-rd-2 table {
  font-size: 0.16rem;
}
.inside-rd-2 th {
  color: #fff;
  line-height: 0.66rem;
  font-size: 0.18rem;
  font-family: "myfont";
  background: #541b86;
}
.inside-rd-2 th,
.inside-rd-2 td {
  border: solid 1px #d9c2ec;
}
.inside-rd-2 td {
  background: #f8efff;
  padding: 0.1rem 0;
}
.inside-rd-2 .line,
.inside-rd-2 .line2,
.inside-rd-2 .line3,
.inside-rd-2 .line4,
.inside-rd-2 .line5 {
  background: #5a0fb0;
  height: 0.19rem;
  margin-bottom: 0.03rem;
  vertical-align: middle;
  display: inline-block;
  position: relative;
}
.inside-rd-2 .line:after,
.inside-rd-2 .line2:after,
.inside-rd-2 .line3:after,
.inside-rd-2 .line4:after,
.inside-rd-2 .line5:after {
  content: "";
  width: 1px;
  height: 100%;
  right: -1px;
  position: absolute;
  background: #5a0fb0;
}
@media (max-width: 1024px) {
  .inside-rd-2 .line,
  .inside-rd-2 .line2,
  .inside-rd-2 .line3,
  .inside-rd-2 .line4,
  .inside-rd-2 .line5 {
    height: 9px;
  }
}
.inside-rd-2 .line2 {
  background: #ffc000;
}
.inside-rd-2 .line2:after {
  content: "";
  background: #ffc000;
}
.inside-rd-2 .line3 {
  background: #00aeaa;
}
.inside-rd-2 .line3:after {
  content: "";
  background: #00aeaa;
}
.inside-rd-2 .line4 {
  background: #9a4ff0;
}
.inside-rd-2 .line4:after {
  content: "";
  background: #9a4ff0;
}
.inside-rd-2 .line5 {
  background: #ff008a;
}
.inside-rd-2 .line5:after {
  content: "";
  background: #ff008a;
}
.inside-rd-2 .bg {
  color: #fff;
  line-height: 0.2rem;
  padding: 0rem 0.05rem;
  text-align: center;
  background: #6d3e97;
  font-family: "myfont";
}
.inside-rd-2 .arrow img {
  height: 0.19rem;
  width: 0.15rem;
  vertical-align: middle;
  margin-bottom: 0.03rem;
}
@media (max-width: 1024px) {
  .inside-rd-2 .arrow img {
    height: 9px;
    width: 5px;
    margin-bottom: 0px;
  }
}
.inside-rd-2 .f35 {
  padding-bottom: 0.2rem;
}
.inside-rd-2 .none {
  display: none;
}
.inside-rd-2 .w1 {
  width: 10%;
}
.inside-rd-2 .w2 {
  width: 20%;
}
.inside-rd-2 .w3 {
  width: 30%;
}
.inside-rd-2 .w4 {
  width: 40%;
}
.inside-rd-2 .w5 {
  width: 50%;
}
.inside-rd-2 .w6 {
  width: 60%;
}
.inside-rd-2 .w7 {
  width: 70%;
}
.inside-rd-2 .w8 {
  width: 80%;
}
.inside-rd-2 .w9 {
  width: 90%;
}
.inside-rd-2 .w10 {
  width: 100%;
}
.inside-rd-2 .pos {
  position: relative;
}
.inside-rd-2 .list-3 {
  padding-top: 0.4rem;
  padding-bottom: 0.8rem;
}
.inside-rd-2 .list-3 li {
  position: relative;
}
.inside-rd-2 .list-3 li:after {
  content: "";
  display: block;
  padding-bottom: 37.7%;
}
.inside-rd-2 .list-3 .slick-dots {
  bottom: 0;
  line-height: 0.4rem;
  height: 0.5rem;
  background: rgba(84, 27, 134, 0.43);
}
.inside-rd-2 .list-3 .slick-dots li button {
  width: 0.1rem;
  height: 0.1rem;
  margin: 0 0.05rem;
}
.inside-rd-2 .list-3 .slick-dots li.slick-active button {
  background: #00b6bf;
}
@media (max-width: 1024px) {
  .inside-rd-2 {
    font-size: 16px;
    line-height: 24px;
    padding: 40px 0 50px 0;
  }
  .inside-rd-2 .f35 {
    padding-bottom: 0px;
  }
  .inside-rd-2 .table {
    overflow-x: scroll;
    margin-top: 30px;
  }
  .inside-rd-2 .table table {
    width: 1000px;
    font-size: 14px;
  }
  .inside-rd-2 th {
    font-size: 14px;
    line-height: 40px;
  }
  .inside-rd-2 .bg {
    line-height: 20px;
    padding: 0 5px;
  }
  .inside-rd-2 .t2,
  .inside-rd-2 .t3 {
    line-height: 20px;
    padding: 10px 20px;
  }
  .inside-rd-2 .list-3 .slick-dots {
    height: 30px;
    line-height: 20px;
  }
  .inside-rd-2 .list-3 .slick-dots li button {
    width: 8px;
    height: 8px;
  }
}
.inside-rd-4 {
  font-family: arial;
  line-height: 0.32rem;
  padding-bottom: 0.8rem;
}
.inside-rd-4 .list {
  padding-bottom: 0.5rem;
}
.inside-rd-4 .list .left {
  width: 55%;
  float: left;
  padding-top: 0.4rem;
}
.inside-rd-4 .list .right {
  width: 38.3%;
  float: right;
}
.inside-rd-4 .list .right li {
  position: relative;
}
.inside-rd-4 .list .right li:after {
  content: "";
  display: block;
  padding-bottom: 56.5%;
}
.inside-rd-4 .list .right .slick-dots {
  bottom: 0;
  padding-right: 0.2rem;
  text-align: right;
  line-height: 0.4rem;
  height: 0.5rem;
}
.inside-rd-4 .list .right .slick-dots li button {
  width: 0.08rem;
  height: 0.08rem;
  margin: 0 0.05rem;
}
.inside-rd-4 .list .right .slick-dots li.slick-active button {
  background: #00b6bf;
}
.inside-rd-4 .inside-medicines {
  padding-top: 0.1rem;
}
.inside-rd-4 .inside-medicines ul {
  margin: 0 -0.14rem;
}
.inside-rd-4 .inside-medicines li {
  margin-top: 0;
  padding: 0 0.14rem;
}
.inside-rd-4 .inside-medicines li .text {
  padding: 0rem 0.2rem;
}
.inside-rd-4 .inside-medicines li .tit {
  font-size: 0.16rem;
  font-family: "myfont2";
}
.inside-rd-4 .inside-medicines li .tit img {
  margin-top: 0.08rem;
  max-height: 0.24rem;
}
.inside-rd-4 .inside-medicines .slick-prev,
.inside-rd-4 .inside-medicines .slick-next {
  border: 0;
  line-height: 0.44rem;
  width: 0.44rem;
  height: 0.44rem;
  background: #9572b4;
  transition: all 400ms ease;
  margin-top: -0.22rem;
}
.inside-rd-4 .inside-medicines .slick-prev:before,
.inside-rd-4 .inside-medicines .slick-next:before {
  content: "";
  color: #fff;
  font-weight: 600;
  font-family: "宋体";
  font-size: 0.24rem;
}
.inside-rd-4 .inside-medicines .slick-prev:hover,
.inside-rd-4 .inside-medicines .slick-next:hover {
  background: #541b86;
}
.inside-rd-4 .inside-medicines .slick-prev {
  left: -0.6rem;
}
.inside-rd-4 .inside-medicines .slick-prev:before {
  content: "<";
}
.inside-rd-4 .inside-medicines .slick-next {
  right: -0.6rem;
}
.inside-rd-4 .inside-medicines .slick-next:before {
  content: ">";
}
@media (max-width: 1024px) {
  .inside-rd-4 {
    font-size: 16px;
    line-height: 24px;
    padding: 40px 0 50px 0;
  }
  .inside-rd-4 .list .left {
    width: 100%;
    float: none;
    padding-top: 0;
  }
  .inside-rd-4 .list .right {
    width: 100%;
    float: none;
    margin-top: 30px;
  }
  .inside-rd-4 .list .right img {
    width: 100%;
  }
  .inside-rd-4 .list .right .slick-dots {
    text-align: center;
    padding-right: 0;
    bottom: 15px;
  }
  .inside-rd-4 .list .right .slick-dots li button {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
  .inside-rd-4 .inside-medicines {
    padding-top: 20px;
  }
  .inside-rd-4 .inside-medicines li .tit {
    font-size: 14px;
  }
  .inside-rd-4 .inside-medicines li .tit img {
    max-height: 24px;
    margin-top: 8px;
  }
  .inside-rd-4 .inside-medicines .slick-prev,
  .inside-rd-4 .inside-medicines .slick-next {
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-top: -15px;
  }
  .inside-rd-4 .inside-medicines .slick-prev:before,
  .inside-rd-4 .inside-medicines .slick-next:before {
    font-size: 18px;
  }
  .inside-rd-4 .inside-medicines .slick-prev {
    left: 3px;
  }
  .inside-rd-4 .inside-medicines .slick-next {
    right: 3px;
  }
}
.inside-rd-6 {
  background: none;
  padding-bottom: 0.4rem;
}
.inside-rd-5 {
  background: none;
  padding-bottom: 0.8rem;
}
.inside-rd-5 .table-2 th {
  text-align: left;
}
.inside-rd-5 .table-2 th:first-child {
  text-align: center;
  padding: 0 0.15rem;
}
.inside-rd-5 .table-2 th,
.inside-rd-5 .table-2 td {
  padding: 0 0.6rem;
}
.inside-rd-5 .table-2 td {
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
  font-weight: 700;
  background: #fff;
}
.inside-rd-5 .table-2 .bg {
  padding-left: 0.15rem;
  padding-right: 0.15rem;
  background: #6d3e97;
}
.inside-rd-5 .table-2 .bg2 {
  background: #edddfb;
}
@media (max-width: 1024px) {
  .inside-rd-5 {
    padding-bottom: 50px;
  }
  .inside-rd-5 .table-2 td {
    padding: 10px;
  }
}
.inisde-hezuo {
  padding: 0.8rem 0;
  background: #f7fbfe;
}
.inisde-hezuo .form-control {
  background: #f8f4fb;
  border: solid 1px #541b86;
  border-bottom-width: 0.06rem;
}
.inisde-hezuo .f40 {
  color: #333;
  padding-bottom: 0.6rem;
  line-height: 0.4rem;
  font-size: 0.4rem;
  font-family: "myfont2";
}
.inisde-hezuo .left {
  width: 48.5%;
  float: left;
}
.inisde-hezuo .mess {
  width: 51.5%;
  float: right;
  font-family: arial;
  padding: 0.4rem 0.45rem;
}
.inisde-hezuo .mess .tag {
  color: #333;
  position: relative;
  vertical-align: top;
}
.inisde-hezuo .mess .tag span {
  color: #541b86;
}
.inisde-hezuo .mess li {
  padding-top: 0.2rem;
  margin: 0 -0.1rem;
}
.inisde-hezuo .mess li p {
  width: 50%;
  float: left;
  padding: 0 0.1rem;
  position: relative;
}
.inisde-hezuo .mess li label {
  top: 50%;
  left: 0.25rem;
  color: #080f15;
  position: absolute;
  transform: translateY(-35%);
}
.inisde-hezuo .mess li em {
  color: #f17071;
  font-style: normal;
  display: inline-block;
}
.inisde-hezuo .mess li input[type="text"],
.inisde-hezuo .mess li textarea {
  width: 100%;
  height: 0.5rem;
  line-height: 0.48rem;
  padding: 0 0.1rem;
  padding-left: 0.2rem;
  font-size: 0.14rem;
  color: #333;
  background: #f8f4fb;
  font-family: arial;
  border: solid 1px #666;
  transition: all 334ms ease;
}
.inisde-hezuo .mess li input[type="text"]:focus,
.inisde-hezuo .mess li textarea:focus {
  border-color: #541b86;
}
.inisde-hezuo .mess li input[type="submit"] {
  color: #fff;
  border: 0;
  width: 1.7rem;
  height: 0.56rem;
  line-height: 0.56rem;
  text-align: center;
  font-size: 0.18rem;
  background: #541b86;
  transition: all 334ms ease;
}
.inisde-hezuo .mess li input[type="submit"]:focus,
.inisde-hezuo .mess li input[type="submit"]:hover {
  background: #1947ba;
}
.inisde-hezuo .mess li input[type="text"]:focus,
.inisde-hezuo .mess li textarea:focus {
  border-color: #541b86;
}
.inisde-hezuo .mess li:last-child {
  padding-top: 0.4rem;
}
.inisde-hezuo .mess .textarea p {
  width: 100%;
  float: none;
}
.inisde-hezuo .mess .textarea textarea {
  height: 0.95rem;
  padding-left: 0.12rem;
}
@media (max-width: 1024px) {
  .inisde-hezuo {
    padding: 40px 0;
  }
  .inisde-hezuo .f40 {
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 20px;
  }
  .inisde-hezuo .mess {
    padding: 0;
  }
  .inisde-hezuo .mess li label {
    left: 10px;
  }
  .inisde-hezuo .mess li input[type="text"],
  .inisde-hezuo .mess .textarea textarea {
    line-height: 24px;
    font-size: 14px;
    padding-left: 20px;
  }
  .inisde-hezuo .index-title {
    font-size: 20px;
  }
  .inisde-hezuo .left {
    width: 100%;
    display: none;
  }
  .inisde-hezuo .item {
    border: 0;
  }
  .inisde-hezuo .form-control {
    padding: 30px;
    border-width: 2px;
  }
  .inisde-hezuo .mess {
    width: 100%;
    float: none;
  }
  .inisde-hezuo .mess .tag {
    font-size: 16px;
  }
  .inisde-hezuo .mess .tag img {
    max-height: 15px;
    margin-bottom: 0;
    margin-top: 5px;
  }
  .inisde-hezuo .mess .list {
    margin-top: 20px;
  }
  .inisde-hezuo .mess li {
    padding-top: 0;
  }
  .inisde-hezuo .mess li p {
    width: 100%;
    float: none;
    margin-top: 10px;
  }
  .inisde-hezuo .mess li input[type="text"] {
    height: 40px;
    line-height: 38px;
    font-size: 14px;
  }
  .inisde-hezuo .mess li input[type="submit"] {
    width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
  .inisde-hezuo .mess .textarea textarea {
    height: 80px;
    padding: 10px;
  }
}
.inside-contact {
  font-family: arial;
  line-height: 0.32rem;
}
.inside-contact .f35 {
  padding-bottom: 0.3rem;
}
.inside-contact .nr {
  margin-top: 0.5rem;
  padding-bottom: 80px;
}
.inside-contact .shaixuan {
  top: 0;
  left: 0;
  color: #fff;
  width: 100%;
  padding-left: 0.2rem;
  height: 0.5rem;
  position: absolute;
  padding-top: 0.08rem;
  background: #541b86;
}
.inside-contact .shaixuan span {
  margin: 0 0.04rem;
  display: inline-block;
  vertical-align: top;
}
.inside-contact .shaixuan .tig {
  font-size: 0.16rem;
  line-height: 0.34rem;
}
.inside-contact .shaixuan .select {
  width: 0.9rem;
}
.inside-contact .shaixuan .select select {
  width: 100%;
  font-size: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  height: 0.3rem;
  line-height: 0.28em;
  border-radius: 0.05rem;
  border: solid 1px #fff;
  background-color: transparent;
}
.inside-contact .menuTabs {
  width: 27%;
  float: right;
  padding-top: 0.4rem;
  position: relative;
  height: 5.9rem;
  background: #fafafa;
}
.inside-contact .menuTabs .list {
  padding: 0.4rem 0 0.2rem 0;
  height: 5.6rem;
  overflow: auto;
  font-size: 0.16rem;
  -webkit-overflow-scrolling: touch;
  text-align: left;
}
.inside-contact .menuTabs .list li {
  padding: 0 0.2rem 0.2rem 0.2rem;
  margin-bottom: 20px;
  border-bottom: 1px #ececec solid;
}
.inside-contact .menuTabs .list li:last-child {
  margin-bottom: 0;
}
.inside-contact .menuTabs .list .box {
  cursor: pointer;
}
.inside-contact .menuTabs .list .box:hover .title {
  color: #541b86;
}
.inside-contact .menuTabs .list .cur .box .title {
  color: #541b86;
  text-decoration: underline;
}
.inside-contact .menuTabs .list::-webkit-scrollbar {
  width: 0.04rem;
  height: 0.04rem;
  background-color: #000;
}
.inside-contact .menuTabs .list::-webkit-scrollbar-thumb {
  background-color: #000;
}
.inside-contact .menuTabs .list::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
.inside-contact .menuTabs .title {
  color: #333333;
  font-size: 0.2rem;
  font-family: "myfont";
}
.inside-contact .menuTabs .p-1 {
  margin-top: 0.05rem;
  line-height: 0.3rem;
  padding-left: 0.25rem;
  position: relative;
}
.inside-contact .menuTabs .p-1 .icon {
  width: 0.2rem;
  height: 0.2rem;
  float: left;
  position: absolute;
  top: 0.04rem;
  left: 0;
}
.inside-contact .menuTabs .p-1 span {
  padding-left: 0.41rem;
}
.inside-contact .menuTabs .p-1 strong {
  color: #541b86;
}
.inside-contact .conTabs {
  width: 73%;
  float: left;
  height: 5.9rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .inside-contact {
    line-height: 24px;
    padding: 40px 0 20px 0;
  }
  .inside-contact .f35 {
    padding-bottom: 10px;
  }
  .inside-contact .shaixuan {
    top: auto;
    left: auto;
    position: relative;
    height: auto;
    padding: 15px;
  }
  .inside-contact .shaixuan .tig {
    font-size: 14px;
    line-height: 24px;
  }
  .inside-contact .shaixuan .select {
    width:90px;
  }
  .inside-contact .shaixuan .select select {
    height: 28px;
    line-height: 26px;
    font-size: 12px;
  }
  .inside-contact .shaixuan span {
    margin: 0 4px;
  }
  .inside-contact .nr {
    margin-top: 20px;
    padding-bottom: 30px;
  }
  .inside-contact .conTabs {
    display: none;
  }
  .inside-contact .menuTabs .title {
    font-size: 16px;
  }
  .inside-contact .menuTabs {
    width: 100%;
    float: none;
    height: auto;
  }
  .inside-contact .menuTabs .list {
    height: auto;
    padding: 30px;
    font-size: 14px;
  }
  .inside-contact .menuTabs .list li {
    padding: 0;
    padding-bottom: 20px;
  }
  .inside-contact .menuTabs .list li:last-child {
    border: 0;
  }
  .inside-contact .menuTabs .p-1 {
    line-height: 24px;
    margin-top: 5px;
    padding-left: 30px;
  }
  .inside-contact .menuTabs .p-1 .icon {
    width: 20px;
    height: 20px;
    top: 2px;
  }
}
#allmap,
#allmap2 {
  width: 100%;
  height: 5.9rem;
}
#allmap img,
#allmap2 img {
  max-width: initial;
  max-height: inherit;
}
#allmap .anchorBL,
#allmap2 .anchorBL {
  display: none;
}
#allmap .BMap_bubble_content h4,
#allmap2 .BMap_bubble_content h4 {
  color: #333;
  line-height: 0.6rem;
  vertical-align: top;
  font-size: 0.18rem !important;
  font-weight: normal;
  font-family: "myfont2" !important;
  position: relative;
}
#allmap .BMap_bubble_content h4:before,
#allmap2 .BMap_bubble_content h4:before {
  content: "";
  width: 0.5rem;
  height: 0.4rem;
  margin-right: 0.1rem;
  vertical-align: middle;
  display: inline-block;
  background-size: cover;
  background-position: center center;
  background-image: url(../images/logo.png);
}
.message {
  padding-bottom: 0.8rem;
  position: relative;
}
.message #messageA {
  width: 1px;
  height: 1px;
  position: absolute;
  top: -2rem;
  left: 0;
}
.message .f16 {
  font-family: arial;
  padding-top: 10px;
}
.message .nr {
  margin-top: 40px;
}
.message .list {
  position: relative;
}
.message li {
  width: 33.33333333%;
  float: left;
  padding: 0 5px 10px 5px;
  position: relative;
}
.message .box {
  position: relative;
}
.message .red {
  position: absolute;
  z-index: 9;
  left: 20px;
  top: 14px;
  color: #FF0000;
}
.message .error {
  background: #ff0000;
  color: #fff;
  padding: 0 6px;
  border-bottom-left-radius: 6px;
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 0;
}
.message .input-form,
.message .textarea-form {
  border: none;
  border-radius: 3px;
  color: #666;
  font-family: arial;
  vertical-align: middle;
  border: #d1d1d1 solid 1px;
  padding: 0 30px;
  height: 50px;
  line-height: 48px;
  font-size: 14px;
  width: 100%;
}
.message .input-form:focus,
.message .textarea-form:focus {
  border: #541b86 solid 1px;
}
.message .textarea-form {
  line-height: 30px;
  padding: 10px 90px 10px 30px;
  width: 100%;
  padding-right: 90px;
  min-height: 140px;
}
.message .textarea-form:focus {
  border: #541b86 solid 1px;
}
.message .btn {
  width: 100%;
  text-align: right;
}
.message .btn .col-2 {
  width: 50%;
}
.message .submit {
  font-size: 16px;
  width: 33.3333333%;
  display: inline-block;
  max-width: 200px;
  text-align: center;
  line-height: 50px;
  height: 50px;
  color: #666666;
  margin-right: 20px;
  background: #541b86;
  color: #fff;
  border: none;
}
.message .submit:hover {
  color: #fff;
  background: #4c197a;
}
.message .verify {
  font-family: arial;
  height: 50px;
  background-color: #e5e5e5;
  position: relative;
}
.message .verify .drag-btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border: 1px #e5e5e5 solid;
  background: #ffffff url(../images/drag-arrow.svg) no-repeat center center;
  background-size: 20px 20px;
  z-index: 2;
  cursor: move;
}
.message .verify .suc-drag-btn {
  background: #ffffff url(../images/drag-success.svg) no-repeat center center;
  background-size: 20px 20px;
}
.message .verify .drag-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  line-height: 48px;
  width: 0;
  background-color: #7ac23c;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
.message .verify .fix-tips,
.message .verify .verify-msg {
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  height: 100%;
  color: #666;
  z-index: 1;
  line-height: 50px;
  padding-left: 50px;
  text-align: center;
}
.message .verify .verify-msg {
  padding-left: 0;
  padding-right: 50px;
}
.message .verify .verify-msg {
  background-color: #7ac23c;
  color: #fff;
  display: none;
}
.message .verifyDiv {
  width: 40%;
  vertical-align: middle;
  float: left;
  margin-right: 20px;
  position: relative;
}
.message .col-2 {
  width: 50%;
  float: left;
  position: relative;
  text-align: left;
}
@media (max-width: 1026px) {
  .message .nr {
    margin-top: 30px;
  }
  .message .verifyDiv {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 640px) {
  .message li {
    width: 100%!important;
  }
  .message .btn .col-2 {
    width: 100%;
  }
  .message .submit {
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }
}
.inside-map-2 {
  font-family: arial;
  line-height: 24px;
  padding: 40px 0;
}
.inside-map-2 li {
  padding: 15px;
  border-top: solid 1px #eee;
}
.inside-map-2 li h3 {
  padding-bottom: 10px;
}
.inside-map-2 li h3 a {
  font-size: 16px;
}
.inside-map-2 li a {
  font-size: 14px;
  padding-right: 15px;
  display: inline-block;
}
.inside-quality-2 .numlist {
  overflow: hidden;
}
.inside-join .txt {
  word-wrap: break-word;
  word-break: break-all;
  padding-right: 2.5rem;
}
@media (max-width: 1024px) {
  .inside-join .txt {
    padding: 20px!important;
  }
  .inside-about .numlist .counter {
    letter-spacing: -1px;
    font-size: 19px;
    line-height: 34px;
  }
  .inside-rd .list-2 li span {
    line-height: 24px;
  }
}


.index-product {
  overflow: hidden;
}
.index-product ul {
  margin: 0 -0.08rem;
}
.index-product li {
  float: left;
  width: 12.5%;
  height: 6.35rem;
  overflow: hidden;
  padding: 0 0.08rem;
  transition: all 500ms ease;
}
.index-product .active {
  width: 50%;
}
.index-product .active .txtbox {
  left: 0;
  width: 100%;
  padding-top: 0.05rem;
}
.index-product .active .txtbox .txt {
  display: block;
}
.index-product .active .pic:before {
  opacity: 0.5;
  width: 100%;
}
@media (max-width: 1400px) {
  .index-prolist .bigimg .f30 {
    padding-top: 0.2rem;
  }
  .index-prolist .bigimg .index-more {
    padding-top: 0.5rem;
  }
}
@media (max-width: 500px) {
  .index-product ul {
    margin: 0;
    margin-left: 30px;
  }
  .index-product .list li {
    padding: 0;
  }
}


.index-product .swiper-button-prev{
	background-image:url(../images/indexprev.png);
	background-size: 30px;
	width: 50px;
	height: 50px;
}

.index-product .swiper-button-next{
	background-image:url(../images/indexnext.png);
	background-size: 30px;
	width: 50px;
	height: 50px;	
}

.index-product .swiper-button-prev:hover{
	background-image:url(../images/indexprev-h.png);
	border:1px solid #30266d;
	border-radius:50%;
}

.index-product .swiper-button-next:hover{
	background-image:url(../images/indexnext-h.png);
	border:1px solid #30266d;
	border-radius:50%;
}

#fp-nav{
	display:none;
}

.fixed-bar {
    position: fixed;
    right: 0px;
    bottom: 150px;
    width: 40px;
    z-index: 9999;
}

.fixed-bar li {
    width: 40px;
    height: 40px;
    background-color: #541b86;
    margin-bottom: 3px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
	text-align:center;
}

.fixed-bar li a{
    padding-top: 10px;
    overflow: hidden;
    display: block;
}

.header .language .language-btn{
	cursor:pointer;
}
.header .language .language-list{
	position: absolute;
    line-height: 1.2;
    color: #000;
    background-color: #fff;
	text-align: center;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	margin-top: -20px;
	display:none;
}
.header .language .language-list a{
	display: inline-block;
	padding:5px 10px;
}
.header .language .language-list a:hover{
	text-decoration: underline;
}



.inside-about-4 li .item{
	  padding-left:0.2rem;
	  padding-right:0.2rem;
}

.inside-medicines-show .list-1 .right .button img {
  max-height: 0.2rem;
}


.inside-page .prev, 
.inside-page .next{
	width:auto;
	padding:0 0.1rem;
	min-width:1.5rem;
}

.inside-menu ul{
	display:flex;
	justify-content:center;
}
.inside-menu li a{
	min-width:1.85rem;
	width:auto;
}
.inside-menu-2 li:first-child a,
.inside-menu-3 li:first-child a{
	line-height:0.4rem;
}

.inside-menu-2 li:last-child a,
.inside-menu-3 li:last-child a{
	line-height:0.4rem;
}

.footer .menulist .last{
	width:5%;
}

.footer .menulist li:nth-child(7){
	width:10%;
}


.inside-join .btn{
	width:auto;
	min-width: 1.6rem;
	padding:0 0.1rem;
}

@media (max-width: 1024px){
	.inside-join .btn{
		width:100%;
		min-width:100%;
	}
  .inside-medicines-show .list-1 .right .button a{
  	  display:block;
  	  width:100%!important;
  	  margin-left: 0px;
      margin-bottom: 10px;
  }
  .inside-medicines-show .list-1 .right .button img{
  	 max-height:20px;
  }
  
   .inside-contact .shaixuan .select select{
	    height: 28px!important;
	    line-height: 26px!important;
	}  
	.table-2 .hd{
		 font-size: 14px;
	   line-height: 20px;
	   display: flex;
	   align-items: center;
	}
  
 }
/* /*
.footer .top{
		padding:8px 10px;
		color:#c39ce6;
		font-size:12px!important;
		line-height:14px;
    border:solid 2px #c39ce6;
    position:relative;
}

.footer .top:before{
	content:"";
	width:10px;
	height:10px;
	display:block;
	margin:0 auto;
	transform:rotate(45deg);
	border-top:solid 1px #c39ce6;
	border-left:solid 1px #c39ce6;
}*/


@media(max-width:1024px) {
	.index-map .numleft li{
	  padding-top:20px;
	}
	.index-map .numleft i{
		line-height:30px;
	}
	
	.index-map .numleft li{
		 width:60%;
	}
	.index-map .numleft li:nth-child(2n){
		width:40%;
	}
	
	.index-news .tablist .slick-prev, .index-news .tablist .slick-next{
		 line-height:36px;
	}
	.index-news .tablist .slick-prev::before, 
	.index-news .tablist .slick-next::before{
		font-size:18px;
	}
}

@media(max-width:1024px){
	.table-2{
		font-size:14px!important;
	}
	
	.table-2 .hd {
	  overflow: hidden;
	  color: #fff;
	  line-height:40px!important;
	  font-size:14px!important;
	  font-family: "myfont";
	  background: #541b86;
	  text-align: center;
	  font-weight: 700;
	}
}