@charset "UTF-8";
html {
  color: #333;
  /*规定主色调,依据业务场景(非必须)*/
  background: #fff;
  /*规定主背景,依据业务场景(非必须)*/
  overflow-y: auto;
  /*如果有溢出自动形成滚动条*/
  -webkit-text-size-adjust: 100%;
  /*不想让iPhone横坚屏切换的时候调节文字*/
  -ms-text-size-adjust: 100%;
}

html * {
  /*所有元素*/
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /*去除移动端开发点击事件灰色背景如a标签*/
}

body,
html {
  font-size: 0.16rem;
  max-width: 750px;
  margin: 0 auto;
  overflow: auto;
}

article,
aside,
blockquote,
body,
button,
code,
dd,
details,
div,
dl,
dt,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
hr,
input,
legend,
li,
menu,
nav,
ol,
p,
pre,
section,
td,
textarea,
th,
ul {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: none;
  max-width: 100%;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: 500;
}

ol,
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 500;
}

q:after,
q:before {
  /*在<q></q>标签之间的文字两头加上引号*/
  content: "";
}

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

/*input*/
button {
  border: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /*渲染成button的风格*/
  text-transform: none;
  outline: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
  /*输入框提示语的字体样式*/
}

input::-webkit-inner-spin-button {
  /*解决input的type="number"在部分手机端会出现一个小按钮*/
  -webkit-appearance: none;
  /*去除系统默认appearance的样式,常用于IOS下移除原生样式*/
}

input::-webkit-outer-spin-button {
  /*解决input的type="number"在部分手机端会出现一个小按钮*/
  -webkit-appearance: none;
}

textarea {
  vertical-align: top;
}

button,
input {
  line-height: normal;
}

select {
  margin: 0;
  outline: 0;
}

input.fixAKeyboard:focus,
textarea.fixAndroidKeyboard:focus {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-user-modify: read-write-plaintext-only;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
}

button,
input[type=button],
input[type=checkbox],
input[type=reset],
input[type=submit],
label {
  cursor: pointer;
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

input[type=submit] {
  -webkit-user-modify: read-plaintext-only;
  -moz-user-modify: read-plaintext-only;
  -ms-user-modify: read-plaintext-only;
  -o-user-modify: read-plaintext-only;
  user-modify: read-plaintext-only;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type=search] {
  box-sizing: content-box;
  -webkit-appearance: textfield;
}

@font-face {
  font-family: ssregular;
  src: url("https://dy.grenia.cn/zt/pingfang-regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: ssbold;
  src: url("https://dy.grenia.cn/zt/pingfang-medium.woff") format("woff");
}
body {
  font-family: ssregular, Arial, sans-serif;
}

input,
select,
textarea {
  font-family: SourceHanSansCN;
  font-size: 100%;
  border: unset;
  background: unset;
}

.red {
  color: #FF0000;
}

/*flex box*/
.flex {
  display: box;
  /* OLD - Android 4.4- */
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  -webkit-box-lines: multiple;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.g-fb {
  justify-content: space-between;
  align-items: center;
}

.g-fe {
  justify-content: space-evenly;
  align-items: center;
}

.g-fa {
  justify-content: space-around;
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.vertical {
  flex-direction: column;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  /*所有元素以border开始计算盒子大小*/
}

.clearfix:after,
.clearfix:before {
  /*清除浮动*/
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.t {
  height: 0.54rem;
  font-size: 0.36rem;
  font-family: ssbold;
  font-weight: bold;
  color: #333333;
  line-height: 0.54rem;
  text-align: center;
}

.et {
  height: 0.36rem;
  font-size: 0.24rem;
  color: #BBBBBB;
  line-height: 0.36rem;
  text-align: center;
}

body::before{
    content: '';
    display: block;
    margin-bottom: 1.2rem;
}

.header {
  width: 7.5rem;
  height: 1.2rem;
  padding: 0.2rem 0.3rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #fff;
  z-index: 999;
}

.header .nav {
  width: 0.4rem;
  height: 0.4rem;
}
.header .nav img {
  width: 0.4rem;
  height: 0.4rem;
}
.header .logo {
  width: 2.14rem;
  height: 0.8rem;
}
.header .logo img {
  width: 2.14rem;
  height: 0.8rem;
}
.header .search {
  width: 0.4rem;
  height: 0.4rem;
}
.header .search img {
  width: 0.4rem;
  height: 0.4rem;
}

.header-nav {
  display: none;
  position: fixed;
  top: 1.2rem;
  left: 0.32rem;
  width: 4.78rem;
  background: #fff;
  box-shadow: 0 1px 0.4rem 0 rgba(0, 0, 0, 0.1);
  border-radius: 0 0 0.2rem 0.2rem;
  padding: 0.3rem 0.3rem 0.5rem;
  z-index: 3000;
}
.header-nav li {
  margin-bottom: 0.3rem;
}
.header-nav li:last-child {
  margin-bottom: unset;
}
.header-nav a {
  height: 0.48rem;
  font-size: 0.32rem;
  color: #666666;
  line-height: 0.48rem;
  display: inline-block;
}
.header-nav a:last-child {
  margin-bottom: unset;
}
.header-nav .sub_nav {
  display: none;
  position: absolute;
  top: 1.01rem;
  left: 2.6rem;
  width: 2.1rem;
}
.header-nav .current {
  height: 0.68rem;
  line-height: 0.68rem;
  text-align: center;
  background: #179F74;
  border-radius: 0.57rem;
  color: #fff;
  padding: 0 0.3rem;
  position: relative;
  left: -0.2rem;
}
.header-nav .current + .sub_nav {
  display: block;
}

.mask {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2999;
  background-color: black;
  opacity: 0.5;
}

.banner {
  height: 7rem;
  position: relative;
}
.banner .swiper-pagination {
  border-radius: 0.16rem;
  width: 1.6rem;
  height: 0.06rem;
  overflow: hidden;
  font-size: 0;
  margin: 0 auto;
  right: 0;
  bottom: 0.24rem;
  background: #CCCCCC;
}
.banner .banner-bullet {
  width: 0.8rem;
  height: 0.06rem;
  display: inline-block;
}
.banner .swiper-pagination-bullet-active {
  background-color: #179F74;
}

.footer {
  height: 11.85rem;
  background: #333333;
  padding: 0.4rem 0.3rem 1.04rem;
}
.footer .logo {
  text-align: center;
}
.footer .logo img {
  width: 1.5rem;
  height: 0.96rem;
}
.footer .nav {
  align-items: baseline;
  margin-top: 0.55rem;
  padding-bottom: 0.3rem;
  background: url(/common/static/mob/b-footer-fg.png) center bottom no-repeat;
  background-size: 6rem 1px;
}
.footer .nav .item {
  width: 2rem;
  text-align: center;
}
.footer .nav .item a {
  display: inline-block;
}
.footer .nav .item .nav-t {
  height: 0.67rem;
  font-size: 0.32rem;
  font-weight: bold;
  color: #DDDDDD;
  font-family: ssbold;
  line-height: 0.48rem;
  background: url(/common/static/mob/b-footer.png) center bottom no-repeat;
  background-size: 1rem 1px;
}
.footer .nav .item .st {
  height: 0.39rem;
  font-size: 0.26rem;
  color: #BBBBBB;
  line-height: 0.39rem;
  margin-top: 0.18rem;
}
.footer .code {
  margin-top: 0.3rem;
  padding-bottom: 0.3rem;
  background: url(/common/static/mob/b-footer-fg.png) center bottom no-repeat;
  background-size: 6rem 1px;
}
.footer .code .item {
  width: 2.7rem;
  text-align: center;
}
.footer .code .item img {
  width: 1.5rem;
  height: 1.5rem;
}
.footer .code .item span {
  display: block;
  margin-top: 0.1rem;
  height: 0.3rem;
  font-size: 0.24rem;
  color: #AAAAAA;
  line-height: 0.3rem;
}
.footer .text {
  text-align: center;
  font-size: 0.22rem;
  color: #BBBBBB;
  line-height: 0.36rem;
  margin-top: 0.15rem;
}
.footer .text a {
  color: #BBBBBB;
}
.footer .img {
  margin-top: 0.37rem;
  text-align: center;
}
.footer .img img {
  width: 0.4rem;
  height: 0.4rem;
  margin: 0 0.1rem;
}

.form-common .input {
  height: 0.8rem;
  border-radius: 0.2rem;
  border: 1px solid #179F74;
  padding: 0 0.2rem;
  margin-top: 0.2rem;
  font-size: 0.26rem;
  position: relative;
}
.form-common .input .group_area {
  width: 80%;
}
.form-common .input .group_area .group_select {
  width: 32%;
}
.form-common .input .fnature {
  width: 70%;
}
.form-common .input .farea {
  width: 70%;
}
.form-common .input .farea-m {
  position: absolute;
  top: 0.14rem;
  right: 0.2rem;
  font-size: 0.28rem;
}
.form-common .textarea {
  padding: 0.2rem;
  height: 1.6rem;
}
.form-common .textarea textarea {
  width: 100%;
  height: 1.2rem;
}
.form-common label {
  display: block;
  width: 20%;
  color: #333333;
}
.form-common input {
  display: block;
  width: 80%;
}
.form-common .submit {
  display: block;
  width: 3rem;
  height: 0.8rem;
  line-height: 0.8rem;
  background: #179F74;
  border-radius: 0.1rem;
  margin: 0.3rem auto 0;
  font-size: 0.28rem;
  color: #fff;
}

.contact {
  width: 6.9rem;
  height: 11.77rem;
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.25);
  border-radius: 0.2rem;
  margin: 0.5rem auto;
  padding: 0.5rem 0.2rem;
  background-color: #fff;
}
.contact .desc {
  text-align: center;
  color: #666666;
  line-height: 0.42rem;
  margin-top: 0.3rem;
  margin-bottom: 0.4rem;
  font-size: 0.28rem;
}

.index_container {
  overflow: hidden;
}
.index_container .product {
  background: #EEEEEE;
  border-radius: 0;
  padding: 0.5rem 0;
}
.index_container .product .productSwiper {
  margin-top: 0.77rem;
}
.index_container .product .swiper-slide {
  width: 4rem;
  background-color: #fff;
  background: #FFFFFF;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 0.2rem;
  overflow: hidden;
  position: relative;
}
.index_container .product .swiper-slide-active {
  top: -0.37rem;
}
.index_container .product .pro-img {
  width: 4.89rem;
  height: 4rem;
}
.index_container .product .text {
  padding: 0.1rem 0.2rem 0.3rem;
}
.index_container .product .text .et1 {
  height: 0.48rem;
  font-size: 0.3rem;
  font-family: ssbold;
  font-weight: bold;
  color: #333333;
  line-height: 0.48rem;
  margin-left: 0.46rem;
}
.index_container .product .text .et1 span {
  color: #179F74;
}
.index_container .product .text .et2 {
  height: 0.42rem;
  font-size: 0.2rem;
  color: #333333;
  line-height: 0.42rem;
  margin-left: 0.46rem;
}
.index_container .product .text .et {
  height: 0.54rem;
  font-size: 0.36rem;
  font-family: ssbold;
  font-weight: bold;
  color: #333333;
  line-height: 0.54rem;
  margin-top: 0.16rem;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.index_container .course {
  margin: 0.5rem 0.3rem;
  position: relative;
  overflow: hidden;
}
.index_container .course .img {
  margin-top: 0.4rem;
  text-align: right;
  position: relative;
}
.index_container .course .img::before {
  content: "";
  display: block;
  width: 5.77rem;
  height: 3.84rem;
  background: #FFFFFF;
  box-shadow: 0 0.04rem 0.04rem 0 rgba(0, 0, 0, 0.25);
  border-radius: 0.2rem;
  position: absolute;
  left: 0;
  bottom: -0.1rem;
}
.index_container .course .img img {
  width: 6.7rem;
  height: 3.84rem;
  position: relative;
  border-radius: 0.1rem;
  z-index: 1;
}
.index_container .course .year {
  margin-top: 0.46rem;
  height: 0.66rem;
  font-size: 0.44rem;
  font-family: ssbold;
  font-weight: bold;
  color: #333333;
  line-height: 0.66rem;
}
.index_container .course .desc {
  margin-top: 0.1rem;
  height: 2rem;
  font-size: 0.24rem;
  color: #666666;
  line-height: 0.5rem;
}
.index_container .course .desc span {
  color: #015534;
}
.index_container .course .course-swiper-pagination {
  position: relative;
  margin-top: 0.4rem;
  border-top: 1px solid #999999;
}
.index_container .course .course-swiper-pagination .point {
  font-size: 0.2rem;
  color: #666666;
  position: relative;
  display: inline-block;
  padding-top: 0.2rem;
  margin: 0 0.02rem;
}
.index_container .course .course-swiper-pagination .point::before {
  content: "";
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 100%;
  position: absolute;
  top: -0.05rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #999999;
}
.index_container .course .course-swiper-pagination .active {
  color: #179F74;
}
.index_container .course .course-swiper-pagination .active::before {
  content: "";
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 100%;
  position: absolute;
  top: -0.05rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #179F74;
}
.index_container .work {
  padding: 0.5rem 0.3rem;
  background: #EEEEEE;
}
.index_container .work .img {
  margin-top: 0.4rem;
  text-align: center;
}
.index_container .work .img img {
  width: 6.5rem;
  height: 3.14rem;
}
.index_container .work .desc {
  height: 2rem;
  font-size: 0.24rem;
  color: #666666;
  line-height: 0.5rem;
  margin-top: 0.4rem;
}
.index_container .work .num {
  margin-top: 0.2rem;
  text-align: center;
}
.index_container .work .num p {
  display: inline-block;
  font-size: 0.28rem;
  color: #666666;
  text-align: left;
}
.index_container .work .num p:first-child {
  margin-right: 1.6rem;
}
.index_container .work .num p span {
  font-size: 0.6rem;
}
.index_container .work .desc-last {
  height: 1rem;
  font-size: 0.24rem;
  color: #999999;
  line-height: 0.5rem;
  margin-top: 0.2rem;
}

.list_article {
  background: #EEEEEE;
  overflow: hidden;
  padding: 0.5rem 0.3rem;
}
.list_article .list {
  margin-top: 0.4rem;
}
.list_article .list li {
  padding-bottom: 0.4rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(90deg, rgba(153, 153, 153, 0), rgb(153, 153, 153), rgba(153, 153, 153, 0)) 1 1;
     border-image: linear-gradient(90deg, rgba(153, 153, 153, 0), rgb(153, 153, 153), rgba(153, 153, 153, 0)) 1 1;
}
.list_article .list .thumb {
  width: 6.9rem;
  height: 4.88rem;
  border-radius: 0.1rem;
}
.list_article .list .title {
  display: block;
  height: 0.42rem;
  font-size: 0.28rem;
  font-family: ssbold;
  font-weight: bold;
  color: #666666;
  line-height: 0.42rem;
  margin-top: 0.2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.list_article .list .desc {
  height: 1rem;
  font-size: 0.24rem;
  color: #999999;
  line-height: 0.5rem;
  margin-top: 0.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.list_article .list .time {
  height: 0.4rem;
  font-size: 0.24rem;
  color: #999999;
  line-height: 0.4rem;
}

#page {
  margin-top: 0.4rem;
  text-align: center;
}

#page a {
  width: 0.6rem;
  height: 0.6rem;
  line-height: 0.6rem;
  text-align: center;
  color: #666;
  background: #fff;
  border-radius: 0.1rem;
  display: inline-block;
  margin: 0 0.07rem;
}
#page .prepage {
  display: none;
}
#page .curpage {
  background: #179F74;
  color: #fff;
}

.show_article {
  padding: 0.6rem 0.3rem 0.5rem;
}
.show_article .title {
  font-size: 0.4rem;
  color: #333333;
  line-height: 0.6rem;
}
.show_article .text {
  margin-top: 0.2rem;
  height: 0.4rem;
  font-size: 0.24rem;
  color: #999999;
  line-height: 0.4rem;
}
.show_article .content {
  margin-top: 0.2rem;
  padding-bottom: 0.4rem;
  font-size: 0.28rem;
  color: #666666;
  line-height: 0.5rem;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(90deg, rgb(153, 153, 153), rgb(153, 153, 153), rgba(153, 153, 153, 0)) 1 1;
     border-image: linear-gradient(90deg, rgb(153, 153, 153), rgb(153, 153, 153), rgba(153, 153, 153, 0)) 1 1;
}
.show_article .content p {
  margin-top: 0.2rem;
}
.show_article .content p:first-child {
  margin-top: unset;
}
.show_article .content a {
  color: #666666;
}
.show_article .page {
  margin-top: 0.4rem;
}
.show_article .page p {
  height: 0.36rem;
  font-size: 0.24rem;
  color: #666666;
  line-height: 0.36rem;
  margin-top: 0.2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.show_article .page p a {
  color: #999999;
}

.list_banner {
  font-size: 0;
}

.list_product {
  overflow: hidden;
  padding: 0.53rem 0.3rem 1.02rem;
  background-color: #EEEEEE;
}
.list_product .nav {
  padding-bottom: 0.14rem;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(270deg, rgba(102, 102, 102, 0), rgb(102, 102, 102), rgba(102, 102, 102, 0)) 1 1;
     border-image: linear-gradient(270deg, rgba(102, 102, 102, 0), rgb(102, 102, 102), rgba(102, 102, 102, 0)) 1 1;
  margin-bottom: 0.3rem;
}
.list_product .nav .item {
  display: inline-block;
  height: 0.54rem;
  line-height: 0.54rem;
  font-size: 0.28rem;
  color: #666666;
}
.list_product .nav .active {
  font-size: 0.36rem;
  font-family: ssbold;
  font-weight: bold;
  color: #179F74;
}
.list_product .list {
  overflow: hidden;
}
.list_product .list li {
  float: left;
  width: 3.4rem;
  height: 5.19rem;
  background: #FAFAFA;
  box-shadow: 0 0.04rem 0.06rem 0 rgba(0, 0, 0, 0.05);
  border-radius: 0.1rem;
  font-size: 0;
  overflow: hidden;
  margin-bottom: 0.2rem;
}
.list_product .list li:nth-child(even) {
  float: right;
}
.list_product .list li .img {
  width: 3.4rem;
  height: 3.48rem;
  font-size: 0;
}
.list_product .list li .title {
  display: block;
  height: 0.48rem;
  font-size: 0.32rem;
  color: #333333;
  line-height: 0.48rem;
  text-align: center;
  padding: 0 0.2rem;
  margin-top: 0.2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.list_product .list li .en-title {
  display: block;
  height: 0.27rem;
  font-size: 0.18rem;
  color: #999999;
  line-height: 0.27rem;
  margin-top: 0.1rem;
  text-align: center;
  padding: 0 0.2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.list_product .list li .desc {
  display: block;
  height: 0.36rem;
  font-size: 0.24rem;
  color: #999999;
  line-height: 0.36rem;
  text-align: center;
  margin-top: 0.1rem;
  padding: 0 0.2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.show_product {
  padding: 0.5rem 0.3rem 1.02rem;
}
.show_product .img {
  font-size: 0;
  border-radius: 0.1rem;
  overflow: hidden;
}
.show_product h3 {
  height: 0.42rem;
  font-size: 0.28rem;
  color: #999999;
  line-height: 0.42rem;
  display: block;
  margin-top: 0.4rem;
}
.show_product h2 {
  height: 0.9rem;
  font-size: 0.6rem;
  font-family: ssbold;
  font-weight: bold;
  color: #333333;
  line-height: 0.9rem;
  display: block;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(90deg, rgb(153, 153, 153), rgb(153, 153, 153), rgba(153, 153, 153, 0)) 1 1;
     border-image: linear-gradient(90deg, rgb(153, 153, 153), rgb(153, 153, 153), rgba(153, 153, 153, 0)) 1 1;
}
.show_product .desc {
  font-size: 0.36rem;
  color: #666666;
  line-height: 0.54rem;
  margin-bottom: 0.44rem;
}
.show_product .group {
  margin-top: 0.24rem;
  overflow: hidden;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(90deg, rgb(153, 153, 153), rgb(153, 153, 153), rgba(153, 153, 153, 0)) 1 1;
     border-image: linear-gradient(90deg, rgb(153, 153, 153), rgb(153, 153, 153), rgba(153, 153, 153, 0)) 1 1;
}
.show_product .group .label {
  float: left;
  width: 1.42rem;
  height: 0.5rem;
  line-height: 0.5rem;
  background: #179F74;
  border-radius: 0.27rem;
  text-align: center;
  font-size: 0.28rem;
  font-family: ssbold;
  font-weight: bold;
  color: #FFFFFF;
}
.show_product .group .detail {
  float: right;
  width: 5.29rem;
  font-size: 0.28rem;
  color: #999999;
  line-height: 0.5rem;
}
.show_product .warn {
  text-align: center;
  height: 0.39rem;
  font-size: 0.26rem;
  color: #999999;
  line-height: 0.39rem;
  margin-top: 0.2rem;
}

.show_shuming {
  background: #EEEEEE;
  padding: 0.5rem 0 0;
}
.show_shuming .title {
  text-align: center;
  font-size: 0.32rem;
  font-family: ssbold;
  font-weight: bold;
  color: #FFFFFF;
}
.show_shuming .title span {
  display: inline-block;
  height: 0.8rem;
  line-height: 0.8rem;
  background: #179F74;
  border-radius: 1.38rem;
  color: #fff;
  padding: 0 0.54rem;
}
.show_shuming .en-title {
  height: 0.27rem;
  font-size: 0.18rem;
  text-align: center;
  color: #666666;
  line-height: 0.27rem;
  margin-top: 0.1rem;
}
.show_shuming .desc {
  padding: 0 0.3rem;
  font-size: 0.28rem;
  color: #999999;
  line-height: 0.5rem;
}
.show_shuming .desc p {
  margin-top: 0.2rem;
}
.show_shuming .desc p:first-child {
  text-align: center;
  font-size: 0.28rem;
  color: #666666;
}
.show_shuming .info {
  background: #fff;
  padding: 0.5rem 0.3rem;
  margin-top: 0.5rem;
}
.show_shuming .info .label {
  height: 0.54rem;
  font-size: 0.36rem;
  font-family: ssbold;
  font-weight: bold;
  color: #666666;
  line-height: 0.54rem;
}
.show_shuming .info .skulist {
  overflow: hidden;
}
.show_shuming .info .skulist li {
    float: left;
    width: 2.1rem;
    margin-right: 0.3rem;
    margin-top: 0.3rem;
    position: relative;
    height: 3.5rem;
    padding-top: 0.5rem;
}
.show_shuming .info .skulist li .num{
    width: 0.3rem;
    height: 0.3rem;
    display: block;
    line-height: 0.3rem;
    text-align: center;
    position: absolute;
    top: -0.15rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #179F74;
    border-radius: 50%;
    color: #fff;
}
.show_shuming .info .skulist li:nth-child(3n) {
  margin-right: unset;
  float: right;
}
.show_shuming .info .skulist li .skuname {
  height: 0.3rem;
  font-size: 0.2rem;
  color: #666666;
  line-height: 0.3rem;
  text-align: center;
}
.show_shuming .info .sku_img{
    overflow: scroll;
}
.show_shuming .info .sku_img img{
    max-width: unset;
    height: 10rem;
}
.show_shuming .flow {
  padding: 0.5rem 0.3rem;
}
.show_shuming .flow .text {
  font-size: 0.28rem;
  color: #666666;
  line-height: 0.5rem;
}
.show_shuming .flow .text p {
  margin-bottom: 0.1rem;
}
.show_shuming .flow .img {
  margin-top: 0.5rem;
  overflow: hidden;
  padding: 0 1rem;
}
.show_shuming .flow .img .item {
  width: 1.54rem;
  font-size: 0;
  text-align: center;
}
.show_shuming .flow .img .item img {
  width: 1.54rem;
  height: 1.82rem;
}
.show_shuming .flow .img .item span {
  height: 0.42rem;
  font-size: 0.28rem;
  color: #666666;
  line-height: 0.42rem;
}
.show_shuming .flow .img .btn {
  width: 0.3rem;
  height: 0.3rem;
}
.show_shuming .form_ask {
  background: #fff;
  padding: 0.5rem 0.3rem 1.02rem;
}
.show_shuming .form_ask .block {
  height: 8.98rem;
  background: #FFFFFF;
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.25);
  border-radius: 0.2rem;
  padding: 0.5rem 0.2rem;
}
.show_shuming .form_ask .block .form_t {
  height: 1.02rem;
  font-size: 0.34rem;
  font-family: ssbold;
  font-weight: bold;
  color: #666666;
  line-height: 0.51rem;
}
.show_shuming .form_ask .block .form_desc {
  height: 0.7rem;
  line-height: 0.7rem;
  font-size: 0.28rem;
  color: #666666;
  margin-top: 0.2rem;
}
.show_shuming .form_ask .block .form_desc a {
  display: inline-block;
  height: 0.7rem;
  background: #179F74;
  border-radius: 0.1rem;
  text-align: center;
  font-family: ssbold;
  color: #fff;
  padding: 0 0.44rem;
  margin-left: 0.2rem;
}

.show_hxdbm .desc {
  background: #fff;
  padding: 0.5rem 0.3rem 0.2rem;
}
.show_hxdbm .show-header {
  /*background: #EEEEEE;*/
  padding: 0.5rem 0;
}
.show_hxdbm .title {
  text-align: center;
  font-size: 0.32rem;
  font-family: ssbold;
  font-weight: bold;
  color: #FFFFFF;
}
.show_hxdbm .title span {
  display: inline-block;
  height: 0.8rem;
  line-height: 0.8rem;
  background: #179F74;
  border-radius: 1.38rem;
  color: #fff;
  padding: 0 0.54rem;
}
.show_hxdbm .en-title {
  height: 0.27rem;
  font-size: 0.18rem;
  text-align: center;
  color: #666666;
  line-height: 0.27rem;
  margin-top: 0.1rem;
}
.show_hxdbm .specification {
  background-color: #fff;
  padding: 0.5rem 0.3rem 0;
}
.show_hxdbm .specification ul {
  text-align: center;
  margin-top: 0.1rem;
}
.show_hxdbm .specification ul li .li-t {
  font-size: 0.28rem;
  font-family: ssbold;
  font-weight: bold;
  color: #666666;
  line-height: 0.42rem;
  margin-top: 0.2rem;
}
.show_hxdbm .specification ul li .li-desc {
  line-height: 0.36rem;
  font-size: 0.24rem;
  color: #999999;
}
.show_hxdbm .htit {
  text-align: center;
}
.show_hxdbm .htit span {
  background: #179F74;
  border-radius: 0.1rem;
  height: 0.6rem;
  line-height: 0.6rem;
  display: inline-block;
  font-size: 0.32rem;
  font-family: ssbold;
  font-weight: bold;
  color: #FFFFFF;
  padding: 0 0.2rem;
}
.show_hxdbm .ingredient {
  padding: 0.5rem 0.3rem 0;
}
.show_hxdbm .ingredient ul {
  font-size: 0;
  text-align: center;
}
.show_hxdbm .ingredient ul li {
  width: 50%;
  display: inline-block;
  margin-top: 0.3rem;
}
.show_hxdbm .ingredient ul li img {
  width: 1.4rem;
  height: 1.4rem;
}
.show_hxdbm .ingredient ul li span {
  display: block;
  height: 0.48rem;
  font-size: 0.32rem;
  font-family: ssbold;
  font-weight: bold;
  color: #333333;
  line-height: 0.48rem;
  margin-top: 0.1rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.show_hxdbm .flow {
  background-color: #fff;
  padding-top: 0.5rem;
}
.show_hxdbm .flow .img {
  margin-top: 0.2rem;
}
.show_hxdbm .notice {
  padding: 0.4rem 0.3rem 0;
}
.show_hxdbm .notice .notice_title {
  height: 0.48rem;
  font-size: 0.32rem;
  font-family: ssbold;
  font-weight: bold;
  color: #666666;
  line-height: 0.48rem;
}
.show_hxdbm .notice .notice_text p {
  font-size: 0.28rem;
  color: #999999;
  line-height: 0.42rem;
  margin-top: 0.1rem;
}
.show_hxdbm .form_ask {
  background: #fff;
  padding: 0.5rem 0.3rem 1.02rem;
}
.show_hxdbm .form_ask .block {
  height: 8.98rem;
  background: #FFFFFF;
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.25);
  border-radius: 0.2rem;
  padding: 0.5rem 0.2rem;
}
.show_hxdbm .form_ask .block .form_t {
  height: 1.02rem;
  font-size: 0.34rem;
  font-family: ssbold;
  font-weight: bold;
  color: #666666;
  line-height: 0.51rem;
}
.show_hxdbm .form_ask .block .form_desc {
  height: 0.7rem;
  line-height: 0.7rem;
  font-size: 0.28rem;
  color: #666666;
  margin-top: 0.2rem;
}
.show_hxdbm .form_ask .block .form_desc a {
  display: inline-block;
  height: 0.7rem;
  background: #179F74;
  border-radius: 0.1rem;
  text-align: center;
  font-family: ssbold;
  color: #fff;
  padding: 0 0.44rem;
  margin-left: 0.2rem;
}

.category_contactus {
  background: #EEEEEE;
  padding: 0.5rem 0 1.02rem;
}
.category_contactus .cat_t {
  height: 0.54rem;
  font-size: 0.36rem;
  font-family: ssbold;
  font-weight: bold;
  color: #333333;
  line-height: 0.54rem;
}
.category_contactus .tel {
  width: 6.9rem;
  height: 4.59rem;
  background: #FFFFFF;
  border-radius: 0.2rem;
  margin: 0.4rem auto 0;
  text-align: center;
  padding: 0.5rem 0.5rem 0;
}
.category_contactus .tel .cat_st {
  height: 0.51rem;
  font-size: 0.34rem;
  font-family: ssbold;
  font-weight: bold;
  color: #666666;
  line-height: 0.51rem;
  margin-top: 0.2rem;
}
.category_contactus .tel .cat_xt {
  height: 1.2rem;
  font-size: 0.5rem;
  font-family: ssbold;
  font-weight: bold;
  color: #179F74;
  line-height: 1.2rem;
}
.category_contactus .tel .cat_xt a {
  color: #179F74;
}
.category_contactus .tel .desc {
  height: 0.42rem;
  font-size: 0.28rem;
  color: #666666;
  line-height: 0.42rem;
  margin-top: 0.1rem;
}
.category_contactus .web {
  width: 6.9rem;
  height: 3.42rem;
  background: #FFFFFF;
  border-radius: 0.2rem;
  padding: 0.3rem 0.3rem 0;
  margin: 0.5rem auto 0;
  text-align: center;
}
.category_contactus .web .web-btn {
  margin-top: 0.5rem;
}
.category_contactus .web .web-btn a {
  display: inline-block;
  height: 0.86rem;
  line-height: 0.86rem;
  background: #179F74;
  border-radius: 0.1rem;
  font-size: 0.28rem;
  font-family: ssbold;
  font-weight: bold;
  color: #FFFFFF;
  padding: 0 0.7rem;
}
.category_contactus .web .desc {
  height: 0.42rem;
  font-size: 0.28rem;
  color: #666666;
  line-height: 0.42rem;
  margin-top: 0.5rem;
}
.category_contactus .form {
  width: 6.9rem;
  height: 6.24rem;
  background: #FFFFFF;
  border-radius: 0.2rem;
  padding: 0.3rem 0.2rem 0;
  margin: 0.5rem auto 0;
}
.category_contactus .form .form_t {
  height: 0.54rem;
  font-size: 0.36rem;
  font-family: ssbold;
  font-weight: bold;
  color: #333333;
  line-height: 0.54rem;
  text-align: center;
}
.category_contactus .company {
  padding: 0.5rem 0 0;
}
.category_contactus .company .swiper-wrapper {
  padding: 0.2rem 0;
  margin-top: 0.2rem;
}
.category_contactus .company .swiper-slide {
  width: 4.2rem;
  height: 3.5rem;
  background: #FFFFFF;
  box-shadow: 0 0.04rem 0.04rem 0 rgba(0, 0, 0, 0.25);
  border-radius: 0.1rem;
  padding: 0.3rem 0.3rem 0;
}
.category_contactus .company .swiper-slide .title {
  height: 0.45rem;
  font-size: 0.3rem;
  font-family: ssbold;
  font-weight: bold;
  color: #333333;
  line-height: 0.45rem;
}
.category_contactus .company .swiper-slide .desc {
  margin-top: 0.2rem;
  height: 0.84rem;
  font-size: 0.28rem;
  color: #666666;
  line-height: 0.42rem;
}
.category_contactus .company .swiper-slide p {
  height: 0.36rem;
  font-size: 0.24rem;
  color: #999999;
  line-height: 0.28rem;
  margin-top: 0.1rem;
}

.category_brand {
  background-color: #EEEEEE;
  padding: 0.5rem 0 1.02rem;
}
.category_brand .block {
  width: 6.9rem;
  background: #FFFFFF;
  box-shadow: 0 0.04rem 0.04rem 0 rgba(0, 0, 0, 0.25);
  border-radius: 0.2rem;
  padding: 0.5rem 0.3rem 0.5rem;
  margin: 0.5rem auto 0;
}
.category_brand .block .title {
  font-size: 0.36rem;
  font-family: ssbold;
  font-weight: bold;
  color: #179F74;
  line-height: 0.54rem;
  text-indent: 0.2rem;
  position: relative;
  margin-bottom: 0.2rem;
}
.category_brand .block .title::before {
  content: "";
  width: 0.06rem;
  height: 0.3rem;
  background: #179F74;
  border-radius: 0.17rem;
  position: absolute;
  left: 0;
  top: 0.12rem;
}
.category_brand .block .en {
  color: #179F74;
}
.category_brand .block p {
  font-size: 0.28rem;
  color: #999999;
  line-height: 0.42rem;
  margin-top: 0.1rem;
}
.category_brand .block .bold {
  color: #666666;
}
.category_brand .block .center {
  text-align: center;
}
.category_brand .setup .date {
  margin-top: 0.2rem;
}
.category_brand .setup .date .item {
  width: 1.1rem;
  text-align: center;
}
.category_brand .setup .date .item .year {
  height: 0.45rem;
  font-size: 0.3rem;
  font-family: ssbold;
  font-weight: bold;
  color: #666666;
  line-height: 0.45rem;
}
.category_brand .setup .date .item .desc {
  font-size: 0.2rem;
  color: #999999;
  line-height: 0.3rem;
}
.category_brand .setup .date .img {
  width: 0.4rem;
}
.category_brand .authentication .au01 img {
  width: 3.31rem;
}
.category_brand .center .center-t {
  height: 0.54rem;
  font-size: 0.36rem;
  font-family: ssbold;
  font-weight: bold;
  color: #666666;
  line-height: 0.54rem;
  text-align: center;
  margin-top: 0.3rem;
}
.category_brand .center .centerSwiper {
  margin-top: 0.1rem;
}
.category_brand .list {
  overflow: hidden;
  margin-top: 0.5rem;
}
.category_brand .list .item {
  display: inline-block;
  width: 2.94rem;
  float: left;
  margin-top: 0.2rem;
}
.category_brand .list .item:nth-child(even) {
  margin-right: unset;
  float: right;
}
.category_brand .list .item .num {
  height: 0.6rem;
  font-size: 0.4rem;
  font-family: ssbold;
  font-weight: bold;
  color: #CCCCCC;
  line-height: 0.6rem;
  width: 20%;
}
.category_brand .list .item .num .move {
  position: relative;
  top: 0.08rem;
  left: -0.04rem;
}
.category_brand .list .item .t-t {
  height: 0.72rem;
  font-size: 0.24rem;
  font-family: ssbold;
  font-weight: bold;
  color: #666666;
  line-height: 0.28rem;
  width: 80%;
}
.category_brand .list .item img {
  width: 2.94rem;
  height: 2.22rem;
  margin-top: 0.1rem;
}
.category_brand .patent .patent-img {
  width: 3.88rem;
}
.category_brand .patent .pa-t {
  font-size: 0.3rem;
}
.category_brand .map .map-img {
  margin-top: 0.2rem;
}

.category_college {
  padding: 0.5rem 0 1.02rem;
  background: #EEEEEE;
}
.category_college .block {
  padding: 0 0.3rem 1rem;
}
.category_college .block p {
  font-size: 0.28rem;
  color: #666666;
  line-height: 0.5rem;
  margin-top: 0.4rem;
}
.category_college .block .desc {
  margin-top: 0.5rem;
}
.category_college .block .desc img {
  width: 4.5rem;
  height: 3rem;
}
.category_college .block .desc span {
  display: inline-block;
  width: 2.3rem;
  text-align: center;
  font-size: 0.3rem;
  color: #666666;
  line-height: 0.35rem;
}
.category_college .aptitude {
  padding: 0.5rem 0;
  background-color: #fff;
}
.category_college .aptitude .aptitudeSwiper {
  margin-top: 0.3rem;
}
.category_college .franchise {
  padding: 0 0 0.5rem 0;
}
.category_college .yechnology {
  padding: 0.5rem 0.3rem;
  font-size: 0.28rem;
}
.category_college .yechnology .st {
  margin-top: 0.3rem;
  color: #666666;
  line-height: 0.3rem;
  text-align: center;
  margin-bottom: 0.2rem;
}
.category_college .yechnology p {
  color: #666666;
  line-height: 0.33rem;
  margin-top: 0.1rem;
  text-align: center;
}
.category_college .yechnology .img {
  height: 6.92rem;
  font-size: 0;
  position: relative;
  margin-top: 0.4rem;
}
.category_college .yechnology .img .img01 {
  width: 3.44rem;
  height: 4.76rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.category_college .yechnology .img .img02 {
  width: 5rem;
  height: 6.92rem;
  position: absolute;
  right: 0;
  bottom: 0;
}

.category_college .support {
    padding: 0.5rem 0.5rem 0;
  }
  .category_college .support .list {
    overflow: hidden;
  }
  .category_college .support .list li {
    margin-top: 0.3rem;
    width: 2.7rem;
    height: 4.4rem;
    float: left;
  }
  .category_college .support .list li:nth-child(even) {
    float: right;
  }
  .category_college .support .list li .img img {
    width: 2.7rem;
    height: 2rem;
    border-radius: 0.1rem;
    overflow: hidden;
  }
  .category_college .support .list li .text {
    margin-top: 0.1rem;
  }
  .category_college .support .list li .text .st {
    text-align: center;
    height: 0.42rem;
    font-size: 0.28rem;
    color: #666666;
    line-height: 0.42rem;
    margin-top: 0.06rem;
  }

.category_college .collection {
  width: 6.9rem;
  background: #FFFFFF;
  border-radius: 0.2rem;
  margin: 0 auto;
  padding: 0.5rem 0.3rem;
}
.category_college .collection .list {
  font-size: 0;
  margin-top: 0.2rem;
}
.category_college .collection .list img {
  width: 3rem;
  height: 2.36rem;
  margin-top: 0.2rem;
  margin-right: 0.3rem;
}
.category_college .collection .list img:nth-child(even) {
  margin-right: unset;
}
.category_college .map {
  padding: 1rem 0.3rem;
}
.category_college .map .item {
  width: 3.3rem;
}
.category_college .map .item .item-t {
  height: 0.36rem;
  line-height: 0.36rem;
  font-size: 0.24rem;
  font-family: ssbold;
  font-weight: bold;
  color: #333333;
}
.category_college .map .item .item-et {
  height: 0.24rem;
  font-size: 0.16rem;
  color: #666666;
  line-height: 0.24rem;
}
.category_college .map .item .img {
  margin-top: 0.1rem;
}
.category_college .map .item .img img {
  width: 3.3rem;
  height: 2.5rem;
}
.category_college .map .map-bk2 {
  margin-top: 0.23rem;
}
.category_college .map .map-bk2 img {
  width: 0.51rem;
  height: 1.74rem;
}
.category_college .map .map-bk3 {
  width: 6rem;
  margin: 0 auto;
}
.category_college .map .map-bk4 img {
  width: 0.51rem;
  height: 1.74rem;
}
.category_college .classes {
  width: 6.9rem;
  background: #FFFFFF;
  box-shadow: 0 0.04rem 0.04rem 0 rgba(0, 0, 0, 0.25);
  border-radius: 0.2rem;
  margin: 0 auto;
  padding: 0.5rem 0.2rem;
}
.category_college .classes .st {
  margin-top: 0.2rem;
  height: 0.48rem;
  font-size: 0.32rem;
  text-align: center;
  color: #666666;
  line-height: 0.48rem;
  margin-bottom: 0.2rem;
}
.category_college .classes .c-item {
  width: 5rem;
  height: 0.6rem;
  line-height: 0.6rem;
  border-radius: 0.25rem;
  border: 1px solid hsl(161, 75%, 36%);
  font-size: 0;
  margin: 0.1rem auto 0;
}
.category_college .classes .c-item img {
  width: 0.32rem;
  height: 0.32rem;
  vertical-align: middle;
  margin: 0 0.1rem;
}
.category_college .classes .c-item span {
  font-size: 0.28rem;
  color: #333333;
  vertical-align: middle;
}
.category_college .classes .signup {
  height: 0.54rem;
  font-size: 0.36rem;
  color: #666666;
  line-height: 0.54rem;
  text-align: center;
  margin-top: 0.5rem;
}

.category_cooperation {
  background: #EEEEEE;
}
.category_cooperation .cat-t {
  text-align: center;
  font-size: 0.4rem;
  color: #333333;
  line-height: 0.6rem;
}
.category_cooperation .why {
  padding-top: 0.5rem;
}
.category_cooperation .why .block {
  width: 6.9rem;
  background: #FFFFFF;
  box-shadow: 0 0.04rem 0.04rem 0 rgba(0, 0, 0, 0.25);
  border-radius: 0.2rem;
  margin: 0.3rem auto 0;
  padding: 0.26rem 0.3rem;
}
.category_cooperation .why .row {
  margin-top: 0.24rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(270deg, rgba(153, 153, 153, 0), rgb(155, 153, 153), rgb(155, 153, 153), rgb(155, 153, 153), rgba(155, 153, 153, 0)) 1 1;
     border-image: linear-gradient(270deg, rgba(153, 153, 153, 0), rgb(155, 153, 153), rgb(155, 153, 153), rgb(155, 153, 153), rgba(155, 153, 153, 0)) 1 1;
}
.category_cooperation .why .row:last-child {
  border: unset;
  padding-bottom: 0;
}
.category_cooperation .why .row .item {
  width: 50%;
  display: flex;
  justify-content: space-between;
}
.category_cooperation .why .row .item img {
  display: block;
  width: 0.82rem;
  height: 0.82rem;
}
.category_cooperation .why .row .item .item-r {
  width: 2.2rem;
}
.category_cooperation .why .row .item .item-r .item-t {
  height: 0.42rem;
  font-size: 0.28rem;
  color: #333333;
  line-height: 0.42rem;
  display: block;
}
.category_cooperation .why .row .item .item-r .item-desc {
  height: 0.66rem;
  font-size: 0.22rem;
  color: #666666;
  line-height: 0.26rem;
  display: block;
}
.category_cooperation .advantage {
  padding: 1rem 0.4rem;
}
.category_cooperation .advantage .text .item-r {
  position: relative;
  left: 1.9rem;
}
.category_cooperation .advantage .text .item {
  margin-top: 0.4rem;
  width: 4.8rem;
  height: 1.2rem;
  background: linear-gradient(180deg, #E3F2FB 0%, #FFFFFF 100%);
  box-shadow: 0 0 0.4rem 0 rgba(185, 228, 253, 0.5);
  border-radius: 0.2rem;
  opacity: 1;
  border: 0.08rem solid #FFFFFF;
  padding: 0 0.2rem;
}
.category_cooperation .advantage .text .item .gl {
  width: 0.6rem;
  height: 0.6rem;
  line-height: 0.6rem;
  text-align: center;
  color: #fff;
  background: #179F74;
  font-size: 0.4rem;
  font-family: ssbold;
  font-weight: bold;
  color: #FFFFFF;
  border-radius: 100%;
}
.category_cooperation .advantage .text .item .gr {
  width: 3.38rem;
  text-align: left;
}
.category_cooperation .advantage .text .item .gr .gr-t {
  height: 0.54rem;
  font-size: 0.36rem;
  font-family: ssbold;
  font-weight: bold;
  color: #666666;
  line-height: 0.54rem;
}
.category_cooperation .advantage .text .item .gr .st {
  height: 0.42rem;
  font-size: 0.28rem;
  color: #999999;
  line-height: 0.42rem;
}
.category_cooperation .advantage .text .active {
  background: #179F74;
}
.category_cooperation .advantage .text .active .gl {
  background: #fff;
  color: #179F74;
}
.category_cooperation .advantage .text .active .gr .gr-t {
  color: #fff;
}
.category_cooperation .advantage .text .active .gr .st {
  color: #fff;
}

.category_cooperation .support {
  background-color: #fff;
  padding: 0.5rem;
}
.category_cooperation .support .list {
  overflow: hidden;
}
.category_cooperation .support .list li {
  margin-top: 0.3rem;
  width: 2.7rem;
  height: 4.4rem;
  float: left;
}
.category_cooperation .support .list li:nth-child(even) {
  float: right;
}
.category_cooperation .support .list li .img img {
  width: 2.7rem;
  height: 2rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.category_cooperation .support .list li .text {
  margin-top: 0.1rem;
}
.category_cooperation .support .list li .text .st {
  text-align: center;
  height: 0.42rem;
  font-size: 0.28rem;
  color: #666666;
  line-height: 0.42rem;
  margin-top: 0.06rem;
}
.category_cooperation .join {
  width: 6.9rem;
  background: #333333;
  border-radius: 0.1rem;
  margin: 1rem auto 0;
  padding: 0.5rem 0.2rem;
}
.category_cooperation .join .cat-t {
  color: #fff;
}
.category_cooperation .join .list {
  overflow: hidden;
}
.category_cooperation .join .list li {
  width: 3.1rem;
  float: left;
  text-align: center;
  margin-top: 0.58rem;
}
.category_cooperation .join .list li:nth-child(even) {
  float: right;
}
.category_cooperation .join .list li img {
  width: 1rem;
  height: 1rem;
}
.category_cooperation .join .list li .li-t {
  height: 0.42rem;
  font-size: 0.28rem;
  font-family: ssbold;
  font-weight: bold;
  color: #B4F2DE;
  line-height: 0.42rem;
  margin-top: 0.1rem;
}
.category_cooperation .join .list li .li-desc {
  height: 0.72rem;
  font-size: 0.24rem;
  color: #FFFFFF;
  line-height: 0.28rem;
}
.category_cooperation .teamwork {
  padding: 1rem 0.2rem;
}
.category_cooperation .teamwork .text {
  background-color: #fff;
  width: 6.9rem;
  border-radius: 0.2rem;
  margin: 0.2rem auto 0;
}
.category_cooperation .teamwork .text .item {
  height: 1.68rem;
  padding: 0 0.3rem;
}
.category_cooperation .teamwork .text .item img {
  width: 0.8rem;
  height: 0.8rem;
  margin-right: 0.2rem;
}
.category_cooperation .teamwork .text .item span {
  font-size: 0.32rem;
  color: #333333;
  line-height: 0.48rem;
  display: inline-block;
  width: 5.2rem;
}
.category_cooperation .data {
  background-color: #fff;
  padding: 0.5rem 0.4rem;
  text-align: center;
}
.category_cooperation .data .list {
  margin-top: 0.28rem;
  overflow: hidden;
}
.category_cooperation .data .list li {
  width: 50%;
  margin-bottom: 0.7rem;
  float: left;
}
.category_cooperation .data .list li:nth-child(even) {
  float: right;
}
.category_cooperation .data .list li .num {
  height: 0.75rem;
  font-size: 0.5rem;
  font-family: ssbold;
  font-weight: bold;
  color: #333333;
  line-height: 0.75rem;
}
.category_cooperation .data .list li .num span {
  font-size: 0.2rem;
  color: #333333;
  line-height: 0.3rem;
}
.category_cooperation .data .list li .desc {
  height: 0.6rem;
  font-size: 0.2rem;
  color: #333333;
  line-height: 0.3rem;
  margin-top: 0.1rem;
}
.category_cooperation .data .bdesc {
  height: 0.18rem;
  font-size: 0.12rem;
  color: #999999;
  line-height: 0.18rem;
}
.category_cooperation .flow {
  padding: 1rem 0;
}
.category_cooperation .flow .list {
  margin-top: 0.33rem;
  padding: 0 0.56rem;
}
.category_cooperation .flow .list li {
  width: 3rem;
  position: relative;
}
.category_cooperation .flow .list li:nth-child(odd)::after {
  content: "";
  width: 2.74rem;
  height: 0.96rem;
  background: url(/common/static/mob/flow-r.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: -2.1rem;
  bottom: 0.5rem;
}
.category_cooperation .flow .list li:nth-child(even)::after {
  content: "";
  width: 2.74rem;
  height: 0.96rem;
  background: url(/common/static/mob/flow-l.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: -2.1rem;
  bottom: 0.5rem;
}
.category_cooperation .flow .list li:last-child::after {
  display: none;
}
.category_cooperation .flow .list li:nth-child(2n) {
  margin-left: 3.38rem;
}
.category_cooperation .flow .list li .img {
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
}
.category_cooperation .flow .list li .img img {
  width: 2rem;
  height: 2rem;
}
.category_cooperation .flow .list li p {
  height: 0.48rem;
  font-size: 0.32rem;
  color: #333333;
  line-height: 0.48rem;
  text-align: center;
}

.category_course {
  background-color: #EEEEEE;
  padding: 0.5rem 1rem 1.02rem 1.9rem;
}
.category_course .history-list li {
  text-align: center;
  margin-bottom: 0.5rem;
}
.category_course .history-list li:last-child {
  margin-bottom: unset;
}
.category_course .history-list li .img {
  position: relative;
}
.category_course .history-list li .img::before {
  content: "";
  width: 4.5rem;
  height: 2.44rem;
  background: #FFFFFF;
  box-shadow: 0 0.04rem 0.06rem 0 rgba(0, 0, 0, 0.1);
  border-radius: 0.1rem;
  position: absolute;
  left: -0.1rem;
  bottom: -0.05rem;
}
.category_course .history-list li .img img {
  width: 4.5rem;
  height: 2.44rem;
  border-radius: 0.1rem;
  position: relative;
}
.category_course .history-list li .year {
  height: 0.54rem;
  font-size: 0.36rem;
  font-family: ssbold;
  font-weight: bold;
  color: #000000;
  line-height: 0.54rem;
  margin-top: 0.1rem;
}
.category_course .history-list li p {
  margin-top: 0.1rem;
  font-size: 0.24rem;
  color: #666666;
  line-height: 0.36rem;
}
.category_course .index-nav {
  position: fixed;
  top: 6rem;
  left: 0.5rem;
  border-left: 0.02rem solid #999999;
  padding: 0.25rem 0;
}
.category_course .index-nav li {
  width: 0.82rem;
  height: 0.3rem;
  font-size: 0.24rem;
  line-height: 0.3rem;
  color: #999999;
  margin-bottom: 0.24rem;
  padding-left: 0.16rem;
  position: relative;
  margin-left: 0.1rem;
}
.category_course .index-nav li:last-child {
  margin-bottom: unset;
}
.category_course .index-nav li::before {
  content: "";
  width: 0.16rem;
  height: 0.16rem;
  background-color: #999999;
  border-radius: 50%;
  position: absolute;
  left: -0.19rem;
  top: 0.08rem;
}
.category_course .index-nav .active {
  font-family: ssbold;
  font-weight: bold;
  color: #FFFFFF;
  background: url(/common/static/mob/course-btn.png) no-repeat;
  background-size: contain;
}
.category_course .index-nav .active::before {
  content: "";
  background-color: #179F74;
}

@media screen and (min-width: 750px) {
  .category_course .index-nav {
    position: fixed;
    top: 25%;
    left: 19%;
  }
}

.float-tel{
    position: fixed;
    top: 9rem;
    right: 0;
    z-index: 9999;
    width: 1rem;
    height: 1rem;
    font-size: 0;
}
.float-tel img{
     width: 1rem;
    height: 1rem;
}