
    body {
        font-family: @font-family;
        /* overflow-x: hidden; 加了这个就要去掉动画效果*/
        
        @media (max-width: 768px) {
            overflow-x: hidden;  
        }
    }
    p {
        text-align: left;
        text-indent: 2em;
        font-size: 16px;
        line-height: 1.8;
    }


    /* bulma样式重构 */
    .section {
        padding: 3rem 1.5rem 0 1.5rem;
        @media (max-width: 768px) {
            padding: 2rem 0.5rem 0 0.5rem;    
        }
    }
    .input:active, .input:focus, .is-active.input, .is-active.textarea, .is-focused.input, .is-focused.textarea, .select select.is-active, .select select.is-focused, .select select:active, .select select:focus, .textarea:active, .textarea:focus {
        border-color: @primary-color;
    }
    .button.is-primary {
        background-color: @primary-color;
        .is-hovered, &:hover {
            background-color: @hover-color
        }
    }
    .pagination-link.is-current {
        background-color: @primary-color;
        border-color: @primary-color;
    }

    /* font重构 */
    .title {
        font-size: @font-size-base + 4px;
        margin-bottom: @gap-size * 2;
        @media (max-width: 768px) {
            font-size: @font-size-base + 2px;
        }
    }
    .subtitle {
        font-size: @font-size-base + 2px;
        margin-bottom: @gap-size * 2;
        @media (max-width: 768px) {
            font-size: @font-size-base;
        }
    }
    .intro {
        font-size: @font-size-base;
        line-height: 2;
        margin-bottom: @gap-size * 2;
        @media (max-width: 768px) {
            font-size: @font-size-base - 2px;
        }
    }

    /* swiper */
    .swiper-pagination-bullet-active {
        background: @primary-color;
    }
.cut { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }
    /* 自定义样式 */ 
    .title-block-1 {
        margin: 0 0 3rem 0;
        @media (max-width: 768px) {
            margin: 0 0 2rem 0;
        }
        .title {
            font-size: 28px;
            text-align: center;
            line-height: 1.5;
            margin: 0 auto;
            @media (max-width: 768px) {
                font-size: 18px;
            }
        }
        .subtitle {
            line-height: 1.5;
            margin: 0 auto;
            text-align: center;
            color: @text-color-secondary;
            font-family: Arial;
            font-size: 16px;
            @media (max-width: 768px) {
                font-size: 12px;
            }
        }
    }
	
    #header {
        position: absolute;
        top: 2rem;
        width: 100%;

        @media (max-width:768px) {
            top: .5rem;
        }

        .navbar {
            background-color: transparent;
        }

        .navbar-item img {
            max-height: 2.75rem;

            @media (max-width:768px) {
                max-height: 1.8rem;
            }
        }

        .navbar-brand {
            .navbar-item {
                padding-right: 0;
                padding-left: 0;
                &:hover {
                    background: transparent;
                }
            }
        }

        .navbar-menu {
            @media (max-width: 1024px) {
                background: @primary-color;
                padding: 0;
                .navbar-item{
                    color: @white;
                }
            }

        }

        .navbar-burger{
            color: @white;
            &:hover {
                color: @white;
            }
        }

        .navbar-item, .navbar-link {
            color: #ffffff;
            
        }

        .navbar-item span {
            @media (min-width:1024px) {
                padding: 0.5rem 2rem;
            }
        }

        .navbar-link.is-active, .navbar-link:focus, .navbar-link:focus-within, .navbar-link:hover, a.navbar-item.is-active, a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover {
            background-color: transparent;
            color: @white;

            span.is-active {
                border-bottom: 2px solid #ffffff;
            }
        }

        .navbar-link.is-active:not(:focus):not(:hover), span.is-active:not(:focus):not(:hover) {
            color: #ffffff;
            border-bottom: 2px solid #ffffff;
        }

        .navbar-start {
            margin-left: auto;
            margin-right: unset;
            hr {
                height: 25px;
                width: 2px;
                color: #333;
            }
        }

        .is-primary-color {
            color: @primary-color;
        }

        .is-primary-bg {
            background: @primary-color;
        }

        .padding-ud-3 {
            padding: 30px 0;
        }

        .font-size-16 {
            font-size: 16px;
        }

        .i-mobile-style {
            font-size: 49px;
            padding: 0 8px;
        }
    }	
.ellipsis {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
/* 浏览器标签样式 */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  /* overflow-x: hidden; 加了这个就要去掉动画效果*/
}
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}
p {
  text-align: left;
  text-indent: 2em;
  font-size: 16px;
  line-height: 1.8;
}
/* bulma样式重构 */
.section {
  padding: 3rem 1.5rem 0 1.5rem;
}
@media (max-width: 768px) {
  .section {
    padding: 2rem 0.5rem 0 0.5rem;
  }
}
.input:active,
.input:focus,
.is-active.input,
.is-active.textarea,
.is-focused.input,
.is-focused.textarea,
.select select.is-active,
.select select.is-focused,
.select select:active,
.select select:focus,
.textarea:active,
.textarea:focus {
  border-color: #e60039;
}
.button.is-primary {
  background-color: #e60039;
}
.button.is-primary .is-hovered,
.button.is-primary:hover {
  background-color: #f22753;
}
.pagination-link.is-current {
  background-color: #e60039;
  border-color: #e60039;
}
/* font重构 */
.title {
  font-size: 18px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .title {
    font-size: 16px;
  }
}
.subtitle {
  font-size: 16px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .subtitle {
    font-size: 14px;
  }
}
.intro {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .intro {
    font-size: 12px;
  }
}
/* swiper */
.swiper-pagination-bullet-active {
  background: #e60039;
}
/* 自定义样式 */
.title-block-1 {
  margin: 0 0 3rem 0;
}
@media (max-width: 768px) {
  .title-block-1 {
    margin: 0 0 2rem 0;
  }
}
.title-block-1 .title {
  font-size: 28px;
  text-align: center;
  line-height: 1.5;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .title-block-1 .title {
    font-size: 18px;
  }
}
.title-block-1 .subtitle {
  line-height: 1.5;
  margin: 0 auto;
  text-align: center;
  color: rgba(0, 0, 0, 0.45);
  font-family: Arial;
  font-size: 16px;
}
@media (max-width: 768px) {
  .title-block-1 .subtitle {
    font-size: 12px;
  }
}
#header {
  position: absolute;
  top: 2rem;
  width: 100%;
}
@media (max-width: 768px) {
  #header {
    top: 0.5rem;
  }
}
#header .navbar {
  background-color: transparent;
}
#header .navbar-item img {
  max-height: 2.75rem;
}
@media (max-width: 768px) {
  #header .navbar-item img {
    max-height: 1.8rem;
  }
}
#header .navbar-brand .navbar-item {
  padding-right: 0;
  padding-left: 0;
}
#header .navbar-brand .navbar-item:hover {
  background: transparent;
}
@media (max-width: 1024px) {
  #header .navbar-menu {
    background: #e60039;
    padding: 0;
  }
  #header .navbar-menu .navbar-item {
    color: #fff;
  }
}
#header .navbar-burger {
  color: #fff;
}
#header .navbar-burger:hover {
  color: #fff;
}
#header .navbar-item,
#header .navbar-link {
  color: #ffffff;
}
@media (min-width: 1024px) {
  #header .navbar-item span {
    padding: 0.5rem 2rem;
  }
}
#header .navbar-link.is-active,
#header .navbar-link:focus,
#header .navbar-link:focus-within,
#header .navbar-link:hover,
#header a.navbar-item.is-active,
#header a.navbar-item:focus,
#header a.navbar-item:focus-within,
#header a.navbar-item:hover {
  background-color: transparent;
  color: #fff;
}
#header .navbar-link.is-active span.is-active,
#header .navbar-link:focus span.is-active,
#header .navbar-link:focus-within span.is-active,
#header .navbar-link:hover span.is-active,
#header a.navbar-item.is-active span.is-active,
#header a.navbar-item:focus span.is-active,
#header a.navbar-item:focus-within span.is-active,
#header a.navbar-item:hover span.is-active {
  border-bottom: 2px solid #ffffff;
}
#header .navbar-link.is-active:not(:focus):not(:hover),
#header span.is-active:not(:focus):not(:hover) {
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
}
#header .navbar-start {
  margin-left: auto;
  margin-right: unset;
}
#header .navbar-start hr {
  height: 25px;
  width: 2px;
  color: #333;
}
#header .is-primary-color {
  color: #e60039;
}
#header .is-primary-bg {
  background: #e60039;
}
#header .padding-ud-3 {
  padding: 30px 0;
}
#header .font-size-16 {
  font-size: 16px;
}
#header .i-mobile-style {
  font-size: 49px;
  padding: 0 8px;
}
#zhanshiquyu .swiper-slide {
  width: 100%;
  height: 56.25vw;
  background-size: cover;
  background-repeat: no-repeat;
}
#zhanshiquyu .swiper-pagination-bullet-active {
  background-color: #e60039;
}
#zhanshiquyu .swiper-button-prev,
#zhanshiquyu .swiper-button-next {
  font-size: 44px;
  color: #e60039;
  background-image: none;
}
#shipingzhanshiquyu {
  background: url(../images/index_02.png?x-oss-process=style/small);
  width: 100%;
  height: 56.25vw;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
#shipingzhanshiquyu .top_banner {
  height: 10.67708333vw;
  background-size: cover;
  position: absolute;
  width: 100%;
  top: -269px;
  z-index: 1;
  /* opacity: 0; */
  /*top:206px*/
}
@media (max-width: 768px) {
  #shipingzhanshiquyu .top_banner {
    top: -36px;
  }
}
#shipingzhanshiquyu .video {
  position: absolute;
  width: 39.1vw;
  height: 18.75vw;
  left: 45.2vw;
  top: 12.8vw;
}
@media (min-width: 1800px) {
  #shipingzhanshiquyu .video {
    right: 285px;
  }
}
@media (max-width: 768px) {
  #shipingzhanshiquyu .video {
    width: 38.4vw;
    height: 22.93vw;
    left: 44.27vw;
    top: 8.67vw;
  }
}
#shipingzhanshiquyu .bottom_banner {
  height: 10.67708333vw;
  background-size: cover;
  position: absolute;
  width: 100%;
  bottom: 0;
  /* display: none; */
}
#pinpairongyu {
  background: url(../images/pinpairongyu_02.png?x-oss-process=style/small);
}
#pinpairongyu .title-block-1 {
  padding-top: 2rem;
  margin: 0;
}
#pinpairongyu .title-block-1 .title {
  color: #ffffff;
  font-size: 32px;
}
#pinpairongyu .swiper-father {
  width: 100%;
  height: 400px;
  position: relative;
}
@media (max-width: 1024px) {
  #pinpairongyu .swiper-father {
    height: 300px;
  }
}
#pinpairongyu .swiper-father .swiper-container {
  width: 90%;
  height: 400px;
}
@media (max-width: 1024px) {
  #pinpairongyu .swiper-father .swiper-container {
    width: 80%;
    height: 300px;
  }
}
#pinpairongyu .swiper-father .swiper-container .swiper-slide {
  text-align: center;
  font-size: 18px;
  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;
}
#pinpairongyu .swiper-father .swiper-button-prev,
#pinpairongyu .swiper-father .swiper-button-next {
  border: none;
  outline: none;
}
#pinpairongyu .swiper-father .swiper-button-prev,
#pinpairongyu .swiper-father .swiper-container-rtl .swiper-button-next {
  background-image: url(../images/rongyu_12.png?x-oss-process=style/small);
}
#pinpairongyu .swiper-father .swiper-button-next,
#pinpairongyu .swiper-father .swiper-container-rtl .swiper-button-prev {
  background-image: url(../images/rongyu_14.png?x-oss-process=style/small);
}
#pinpairongyu .swiper-father .fa-angle-left:before {
  content: '';
}
#pinpairongyu .swiper-father .fa-angle-right:before {
  content: '';
}
#pinpairongyu .swiper-father .product-content {
  padding: 0;
}
@media (max-width: 1024px) {
  #pinpairongyu .swiper-father .product-content {
    padding: 0;
  }
}
#pinpairongyu .swiper-father .product-content .product-item {
  padding: 1rem;
  background: #e60039;
  color: #fff;
  text-align: left;
  flex: 1;
}
@media (max-width: 1024px) {
  #pinpairongyu .swiper-father .product-content .product-item {
    flex: 0.9;
  }
}
#pinpairongyu .timeline {
  background: #2F2C7B;
  position: relative;
}
#pinpairongyu .timeline .left-btn,
#pinpairongyu .timeline .right-btn {
  width: 30px;
  height: 30px;
  background: url(../images/arrow.png?x-oss-process=style/small) no-repeat;
  position: absolute;
  margin-top: -15px;
  cursor: pointer;
  z-index: 999;
}
#pinpairongyu .timeline .left-btn {
  left: 0px;
  top: 50%;
}
#pinpairongyu .timeline .left-btn:hover {
  background: url(../images/arrow-hover.png?x-oss-process=style/small) no-repeat;
}
#pinpairongyu .timeline .right-btn {
  right: 0px;
  top: 50%;
  transform: rotate(180deg);
}
#pinpairongyu .timeline .right-btn:hover {
  background: url(../images/arrow-hover.png?x-oss-process=style/small) no-repeat;
  transform: rotate(180deg);
}
#pinpairongyu .timeline .time-box {
  overflow: hidden;
}
#pinpairongyu .timeline .time-box .ul {
  overflow: hidden;
  position: relative;
  height: 335px;
  padding: 0 1.5rem;
}
#pinpairongyu .timeline .time-box .ul::after {
  display: block;
  content: "";
  background: #ffffff;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
}
#pinpairongyu .timeline .time-box .ul li {
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
}
#pinpairongyu .timeline .time-box .ul li .title {
  font-size: 24px;
  color: #fff;
}
#pinpairongyu .timeline .time-box .ul li .subtitle {
  color: #fff;
  font-size: 14px;
}
#pinpairongyu .timeline .time-box .ul li p {
  text-indent: 0;
}
#pinpairongyu .timeline .time-box .ul li:nth-child(1n) {
  margin-top: 25px;
}
#pinpairongyu .timeline .time-box .ul li:nth-child(2n) {
  margin-top: 160px;
}
#pinpairongyu .timeline .time-box .ul li::after {
  content: "";

  position: absolute;
  left: 50%;
  margin-left: -7px;
  bottom: 0;
  bottom: 137px;
  z-index: 1;
}
#xuanzewomen {
  background: url(../images/index-b_07.png?x-oss-process=style/small);
}
#xuanzewomen .columns {
  padding-bottom: 2rem;
}
#xuanzewomen .columns .column .service-card {
  background-color: #ffffff;
  padding: 3rem 2rem;
  display: block;
}
@media (max-width: 768px) {
  #xuanzewomen .columns .column .service-card {
    padding: 0.5rem 0.5rem;
  }
  #xuanzewomen .columns .column .service-card img {
    width: 50%;
  }
}
#xuanzewomen .columns .column .service-card h2 {
  margin-top: 1rem;
  font-size: 22px;
  color: #000000;
}
#xuanzewomen .columns .column .service-card h3 {
  margin-bottom: 1rem;
  color: #7e7e7e;
  font-size: 12px;
}
#xuanzewomen .columns .column .service-card p {
  font-size: 14px;
  color: #7e7e7e;
  text-align: center;
  text-indent: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (max-width: 768px) {
  #xuanzewomen .columns .column .service-card p {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
#guanyuwomen .show_img {
  height: 400px;
  background: url(../images/index-b_07.png?x-oss-process=style/small)
}
#guanyuwomen .button-intro .column {
  text-align: center;
  position: relative;
  top: 19rem;
}
#guanyuwomen .items {
  margin-top: 6rem;
}
@media (max-width: 768px) {
  #guanyuwomen .items {
    margin-top: 2rem;
  }
}
#guanyuwomen .text {
  font-size: 27px;
  color: #9194a2;
  font-weight: normal;
}
@media (max-width: 768px) {
  #guanyuwomen .item {
    padding: 0.75rem 1.5rem;
  }
}
#guanyuwomen .item .title {
  color: #e60039;
  font-size: 35px;
  font-weight: bold;
}
@media (max-width: 768px) {
  #guanyuwomen .item .title {
    font-size: 20px;
  }
}
#guanyuwomen .item .title span {
  font-size: 27px;
  color: #9194a2;
  font-weight: normal;
}
@media (max-width: 768px) {
  #guanyuwomen .item .title span {
    font-size: 18px;
  }
}
#guanyuwomen .item .subtitle {

}
@media (max-width: 768px) {
  #guanyuwomen .item .subtitle {
    font-size: 15px;
  }
}
#guanyuwomen .intro {
  text-align: center;
  margin-bottom: 35px;
}
#guanyuwomen .intro .title {
  font-size: 51px;
  color: #10193a;
}
@media (max-width: 768px) {
  #guanyuwomen .intro .title {
    font-size: 27px;
  }
}
#guanyuwomen .intro p {
  text-indent: 0;
  color: #10193a;
  font-size: 27px; line-height:50px;
  text-align: center;
}
@media (max-width: 768px) {
  #guanyuwomen .intro p {
    font-size: 15px;
  }
}
#guanyuwomen hr {
  background-color: #626262;
  margin: 0 0 2.5rem 0;
}
#mendianjianjie {
  background: url(../images/index-b_07.png?x-oss-process=style/small);
}
#mendianjianjie .top_banner {
  height: 10.67708333vw;
  background-size: cover;
  position: relative;
  top: -4.7rem;
}
@media (max-width: 768px) {
  #mendianjianjie .top_banner {
    top: -2.3rem;
  }
}
#mendianjianjie .columns {
  margin: 0;
}
#mendianjianjie .title-block-1 {
  margin: 0rem 0 3rem 0;
}
@media (max-width: 768px) {
  #mendianjianjie .title-block-1 {
    margin: 1rem 0 1.5rem 0;
  }
}
#mendianjianjie .title-block-1 .title {
  font-size: 50px;
  color: #ffffff;
}
@media (max-width: 768px) {
  #mendianjianjie .title-block-1 .title {
    font-size: 25px;
    padding-top: 1.5rem;
  }
}
#mendianjianjie .bottom_banner {
  height: 10.67708333vw;
  background-size: cover;
}
#mendianjianjie .swiper-container {
  width: 100%;
  height: 455.48051948px;
}
#mendianjianjie .swiper-pagination-bullet-active {
  background-color: #fff;
}
#mendianjianjie .swiper-button-prev,
#mendianjianjie .swiper-button-next {
  font-size: 44px;
  color: #fff;
  background-image: none;
}
@media (max-width: 768px) {
  #mendianjianjie .swiper-button-prev,
  #mendianjianjie .swiper-button-next {
    font-size: 35px;
  }
}
#mendianfenbu {
  background: url(../images/index-b_07.png?x-oss-process=style/small);
}
#mendianfenbu .title-block-1 {
  padding-top: 3rem;
}
#mendianfenbu .title-block-1 .title {
  font-size: 50px;
  color: #ffffff;
}
#mendianfenbu .columns {
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  #mendianfenbu .columns .column {
    padding: 0.15rem;
  }
}
#mendianfenbu .columns .column p {
  font-size: 20px; line-height:40px;
  color: #ffffff;
  text-indent: 0;
  text-align: center;
}
@media (max-width: 768px) {
  #mendianfenbu .columns .column p {
    font-size: 20px;
  }
}
#mendianfenbu .bottom_banner {
  height: 10.67708333vw;
  background-size: cover;
}
#liuyan {
  background: url(../images/index-b_02.png?x-oss-process=style/small);
  height: 28.125vw;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  #liuyan {
    height: 885px;
  }
}
#liuyan .zixun {
  background-color: #e60039;
  border-radius: 10px;
  height: 250px;
  padding: 0.8rem;
}
#liuyan .zixun .content {
  border: 1px dashed #ffffff;
  height: 100%;
}
#liuyan .zixun .content .title {
  font-size: 35px;
  color: #ffffff;
  line-height: 1.8;
  margin-left: 1.3rem;
  margin-top: 2.5rem;
}
#liuyan .zixun .content .subtitle {
  font-size: 35px;
  color: #ffffff;
  margin-left: 1.3rem;
}
#liuyan font {
  color: #ffffff;
}
#liuyan input,
#liuyan textarea {
  border-radius: 13px;
  padding-left: 1em;
  outline: none;
  border: none;
}
#liuyan .field {
  padding: 0.2rem 0;
}
#liuyan .textarea:not([rows]) {
  min-height: 160px;
}
#liuyan .button {
  width: 195px;
  font-size: 20px;
  font-weight: bold;
  outline: none;
}
#gongyongdibu {
  background: #3d2d31;
  /* .footer_banner {
            height: 100vw / (1920 / 205);
            background-size: cover;
        } */
}
@media (max-width: 768px) {
  #gongyongdibu {
    margin-bottom: 0;
  }
}
#gongyongdibu .footer-intro {
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  #gongyongdibu .footer-intro {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
#gongyongdibu .section {
  padding: 3rem 0 0 0;
}
#gongyongdibu .title {
  color: #fff;
  font-size: 20px;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  #gongyongdibu .title img {
    width: 140px;
  }
}
#gongyongdibu .subtitle {
  color: #fff;
  font-size: 14px;
}
#gongyongdibu .subtitle i {
  padding-right: 8px;
}
#gongyongdibu .hezuorexian p {
  font-size: 32px;
  color: #ffffff;
  text-indent: 0;
  margin-top: 0rem;
  text-align: right;
}
@media (max-width: 768px) {
  #gongyongdibu .hezuorexian p {
    margin-top: 0;
    font-size: 19px;
  }
}
#gongyongdibu .hezuorexian h1 {
  color: #ffffff;
  font-size: 78px;
  text-align: right;
}
@media (min-width: 102px) and (max-width: 1366px) {
  #gongyongdibu .hezuorexian h1 {
    font-size: 20px;
  }
}
#gongyongdibu .copyright {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #gongyongdibu .copyright {
    justify-content: center;
  }
}
#gongyongdibu .copyright h4 {
  font-size: 16px;
  font-weight: normal;
  color: #9e9698;
}
@media (max-width: 768px) {
  #gongyongdibu .copyright h4 {
    font-size: 12px;
  }
}
#gongyongdibu .copyright h4 a {
  color: #9e9698;
}
#fanhuidingbu {
  position: fixed;
  right: 0;
  bottom: 300px;
}
#fanhuidingbu .btn {
  position: fixed;
  right: 0;
  bottom: 260px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}
#dibuguanggao {
  position: fixed;
  bottom: 0;
  z-index: 999;
  background-image: url('../images/footer_ad.png?x-oss-process=style/small');
  height: 10.67708333vw;
  background-size: cover;
  width: 100%;
  cursor: pointer;
}
#dibuguanggaom {
  position: fixed;
  bottom: 0;
  z-index: 999;
  background-image: url(../images/3.png?x-oss-process=style/small);
  height: 10.41666667vw;
  background-size: cover;
  width: 100%;
  cursor: pointer;
}
.channel_list li { }
.channel_list li a { display: block; line-height: 160px; background: #ddd; padding: 20px;border-radius: 15px; }
.channel_list li a:hover { background: #e60039; color: #FFF;border-radius: 15px; }
.channel_list li a.current { background: #e60039; color: #FFF;border-radius: 15px; }
.channel_wlist {  }
.channel_wlist li { display: inline-block;  }
.channel_wlist li a { background: #EEE; height: 45px; line-height: 45px; display: block; text-align: center; font-size: 16px;}
.channel_wlist li a:hover { background: #e60039; color: #FFF; }
.channel_wlist li a.current { background: #e60039; color: #FFF; }
.channel_wlist p { text-align:left; padding-right:25px;}



.page_show { margin: 20px 0; }
.page_show a { display: inline-block; height: 40px; color:#e60039; line-height: 40px; min-width: 40px; text-align: center; background: #F2F2F2; border-radius: 5px; margin-right:10px; }
.page_show a:hover, .page_show a.page_current { background: #e60039; color: #FFF; }
/*当前位置*/
#current_location { background: #EEE; width:100%;  padding: 10px; margin-bottom: 20px; border-radius: 5px; }
#current_location a.current{ color: red; }

#detail_name { text-align:center; line-height:50px;width: 100%; font-weight:bold; font-size:25px;}
#detail_intro { font-size: 14px; color: #999;width: 100%;}
#detail_content { padding: 20px 0;width: 100%; }
#detail_content p { line-height: 32px; }
#detail_picture { margin: 20px 0; text-align: center;}
#detail_video { margin: 20px 0; text-align: center; }
#detail_video embed  { width: 100%; height: 535px; }
#detail_attachment { margin: 20px 0; }
.banner {
  height: 37.125vw;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .banner {
    height: 106px;
  }
}
.banner .title {
  color: #fff;
  font-size: 40px;
}
@media (max-width: 768px) {
  .banner .title {
    font-size: 20px;
  }
}
.banner .subtitle {
  color: #fff;
  font-size: 25px;
}
@media (max-width: 768px) {
  .banner .subtitle {
    font-size: 16px;
  }
}

#gongyingxitong .title-block .title {
  text-align: center;
  font-size: 25px;
  color: #e60039;
  margin-bottom: 10px;
}
#gongyingxitong .title-block .subtitle {
  font-size: 12.5px;
  color: #e60039;
  text-align: center;
}
#gongyingxitong .columns {
  display: flex;
  padding: 1rem 0;
  flex-wrap: wrap;
}
#gongyingxitong .columns .column {
  padding: 32px 0px;
}

#gongyingxitong .columns .team-flex .team-bg { height:389.58px;
  flex: 1;
  background-color: #eeeeee;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 3rem;
}
@media (max-width: 768px) {
  #gongyingxitong .columns .team-flex .team-bg {
    padding: 1rem 2rem;
  }
}
#gongyingxitong .columns .team-flex .team-bg .title {
  font-size: 21px;
  color: #e60039;
  font-weight: normal;
}
@media (max-width: 768px) {
  #gongyingxitong .columns .team-flex .team-bg .title {
    font-size: 15px;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
#gongyingxitong .columns .team-flex .team-bg p {
  font-size: 13.75px;
  line-height: 1.8;
  color: #3d3d3d;
}
@media (max-width: 768px) {
  #gongyingxitong .columns .team-flex .team-bg p {
    line-height: 2.5;
  }
}
#lianxiwomen .title {
  font-size: 36px;
  font-weight: normal;
  color: #e60039;
}
@media (max-width: 768px) {
  #lianxiwomen .title {
    font-size: 25px;
  }
}
#lianxiwomen p {
  font-size: 19px;
  color: #e60039;
  font-weight: bold;
  text-indent: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
#lianxiwomen p img {
  vertical-align: middle;
}
@media (max-width: 768px) {
  #lianxiwomen p {
    font-size: 14px;
  }
}

#lingqu .zixun {
  background-color: #e60039;
  border-radius: 10px;
  height: 250px;
  padding: 0.8rem;
}
#lingqu .zixun .content {
  border: 1px dashed #ffffff;
  height: 100%;
}
#lingqu .zixun .content .title {
  font-size: 35px;
  color: #ffffff;
  line-height: 1.8;
  margin-left: 1.3rem;
  margin-top: 2.5rem;
}
#lingqu .zixun .content .subtitle {
  font-size: 35px;
  color: #ffffff;
  margin-left: 1.3rem;
}
#lingqu font {
  color: #ffffff;
}
#lingqu input,
#lingqu textarea {
  border-radius: 13px;
  padding-left: 1em;
  outline: none;
  border: none;
}
#lingqu .field {
  padding: 0.2rem 0;
}
#lingqu .textarea:not([rows]) {
  min-height: 160px;
}
#lingqu .button {
  width: 195px;
  font-size: 20px;
  font-weight: bold;
  outline: none;
}