/*
    ------------------------
    -------- 全局配置 --------
    ------------------------
*/
/*
    ------------------------
    -------- 全局样式 --------
    ------------------------
*/
* {
  margin: 0;
  padding: 0;
}
.ovfHiden {
  overflow: hidden;
  height: 100%;
}
html {
  width: 100%;
  text-align: justify;
  /*min-width: 1200px;*/
}
html ul li {
  list-style-type: none;
}

body {
  width: 100%;
  font-family: Microsoft YaHei;
  font-size: 16px;
}
header {
  user-select: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1420px;
  /*padding-top: 46px;*/
  padding: 12px 1px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  margin: 0 auto;
  background-color: #fff;
  width: 100%;
  /*border-bottom: 1px solid #ccc;*/
}
header .menu {
  cursor: pointer;
}

nav {
  position: fixed;
  visibility: hidden;
  left: 100vw;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  background: #FFDA37;
  transition: all 1s;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav > div {
  max-width: 1424px;
  display: flex;
  align-items: center;
  width: 100%;

}
nav .nav-top {
  position: absolute;
  left: 0;
  right: 0;
  justify-content: flex-end;
  top: 52px;
  margin: 0 auto;
}
nav .nav-top #nav-close {
  display: block;
  cursor: pointer;
  transition: all 0.4s;
  transform: rotate(0deg);
}
nav .nav-top #nav-close:hover {
  transform: rotate(90deg);
}
nav .nav-content {
  /*margin: 0 auto;*/
  display: flex;
  align-items: center;
  width: 100%;
}
nav .nav-content .nav-item {
  position: relative;
}
nav .nav-content .nav-item a {
  display: block;
  width: 104px;
  height: 50px;
  line-height: 50px;
  color: #451F0F;
}
nav .nav-content .nav-item a:hover,
nav .nav-content .nav-item a:link {
  text-decoration: none;
}
nav .nav-content .nav-item > a {
  font-size: 26px;
  transition: box-shadow 0.4s;
}
nav .nav-content .nav-item:hover > a {
  box-shadow: 0 -4px #451F0F inset;
}
nav .nav-content .nav-item:hover > ul {
  max-height: 250px;
}
nav .nav-content .nav-item > ul {
  position: absolute;
  top: 50px;
  left: 0;
  overflow: hidden;
  max-height: 0;
  background: #fff;
  margin: 0;
  padding: 0;
  transition: max-height 0.4s;
}
nav .nav-content .nav-item > ul a {
  text-align: center;
  font-size: 20px;
  transition: background 0.3s;
  box-shadow: 0 -1px #451F0F inset;
}
nav .nav-content .nav-item > ul a:hover {
  background: #eee;
}
nav .nav-content .nav-item > ul li:last-of-type a {
  box-shadow: none;
}
nav .nav-content .nav-line {
  width: 80px;
  height: 3px;
  background: #451F0F;
  margin: 0 40px;
}

footer {
  background-color: #FDD118;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  bottom: 0;
  left: 0;
  position:relative;
}
footer > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #451F0F;
}
footer .footer_up {
  height: 520px;
}
footer .footer_up .logo img {
  vertical-align: middle;
}
footer .footer_up .qr_code {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer_up .qr_code .qr_code_item {
  margin: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .footer_up .qr_code .qr_code_item span {
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 2px;
}
footer .footer_up .contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
footer .footer_up .contact .contact_item {
  margin: 16px 0;
  display: flex;
  align-items: center;
}
footer .footer_up .contact .contact_item img {
  vertical-align: middle;
}
footer .footer_up .contact .contact_item span {
  font-size: 20px;
  margin-left: 16px;
}
footer .footer_down {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  line-height: 80px;
  font-size: 20px;
}
footer .footer_down:before {
  content: "";
  position: absolute;
  top: 0;
  left: -248px;
  /*width: 1920px;*/
  height: 1px;
  background: #431F15;
}
footer .footer_down .beian {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0.7;
}
footer .footer_down .beian .AQ {
  display: flex;
  align-items: center;
}
footer .footer_down .beian .AQ img {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
footer .footer_down .link {
  opacity: 0.7;
}
footer .footer_down .link a {
  color: #451F0F;
  position: relative;
  margin-right: 20px;
}
footer .footer_down .link a::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 5px;
  width: 1px;
  height: 19px;
  background: #451F0F;
  opacity: 0.7;
}
footer .footer_down .link a:last-of-type {
  margin: 0;
}
footer .footer_down .link a:last-of-type::after {
  content: none;
}

main {
  width: 100%;
  background: #FFF;
  /*margin-top: 48px;*/
  margin-top: 6px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
main .content {
  width: 100%;
}
main .content .breadcrumb {
  margin: 90px 0 48px;
  padding: 0;
  background: inherit;
  font-size: 14px;
  color: #110702;
}
main .content .breadcrumb .active {
  opacity: 0.5;
}
main .content .breadcrumb a {
  color: #110702;
  opacity: 0.5;
}
main .content .breadcrumb a:hover {
  opacity: 0.7;
}
main .content .breadcrumb > li + li:before {
  color: #CCCCCC;
  content: ">";
  padding: 3px;
}
main .content .main {
  width: 100%;
  color: #666;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main .content .main .sidebar {
  width: 344px;
  overflow: hidden;
}
main .content .main .sidebar .sidebar-headline {
  margin-top: 104px;
  font-size: 26px;
  letter-spacing: auto;
  width: 100%;
  height: 64px;
  box-shadow: 0 1px 0 0 #999999;
}
main .content .main .sidebar .catalogue {
  width: 369px;
  overflow-y: scroll;
  padding-bottom: 5px;
}
main .content .main .sidebar .catalogue .catalogue-item {
  text-decoration: none;
  margin-top: 48px;
  display: block;
  width: 100%;
  overflow: hidden;
  color: #666;
  border-radius: 10px;
  transition: all 0.3s;
}
main .content .main .sidebar .catalogue .catalogue-item:hover {
  transform: translateY(5px);
  color: #141414;
  background: #F2F2F2;
}
main .content .main .sidebar .catalogue .catalogue-item span {
  font-size: 20px;
  letter-spacing: 1.1px;
}
main .content .main .sidebar .catalogue .catalogue-item .catalogue-detail {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
main .content .main .sidebar .catalogue .catalogue-item .catalogue-detail p {
  font-size: 16px;
  letter-spacing: auto;
  margin: 0;
  width: 234px;
}
main .content .main .sidebar .catalogue .catalogue-item .catalogue-detail img {
  border-radius: 5px;
  height: 70px;
  width: 104px;
  margin-left: 16px;
}
main .content .main .article {
  width: 100%;
}
main .content .main .article .article-headline {
  width: 100%;
  height: 168px;
  box-shadow: 0 1px 0 0 #999999;
}
main .content .main .article .article-headline > span {
  font-size: 28px;
  letter-spacing: 1px;
  color: #282828;
}
main .content .main .article .article-headline .time-place {
  margin-top: 24px;
}
main .content .main .article .article-headline .time-place span {
  font-size: 14px;
  letter-spacing: auto;
}
main .content .main .article .article-headline .time-place span:nth-child(1) {
  margin-right: 10px;
}
main .content .main .article .article-headline .share {
  margin-top: 24px;
  display: flex;
  align-items: center;
}
main .content .main .article .article-headline .share a {
  display: inline-block;
  margin-right: 20px;
}
main .content .main .article .article-headline .share a img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
main .content .main .article .mainbody {
  width: 100%;
  padding-top: 46px;
}
main .content .main .article .mainbody > :nth-child(1) {
  margin-top: 0;
}
main .content .main .article .mainbody > :nth-last-child(1) {
  margin-bottom: 0;
}
main .content .main .article .mainbody img {
  border-radius: 10px;
  width: 100%;
}
main .content .main .article .mainbody p {
  margin: 24px 0;
  font-size: 24px;
  letter-spacing: 2px;
}
main .content .main .article .mainbody p.title {
  color: #333;
  margin-bottom: 10px;
}
main .content .main .article .mainbody p.title + p {
  margin-top: 10px;
}
main .content .main .video {
  width: 100%;
}
main .content .main .video .video-area {
  background: #000;
  box-shadow: 0 0 18px 0 rgba(204, 204, 204, 0.49);
  overflow: hidden;
}
main .content .main .video .video-area .video-player {
  width: 1384px;
  height: 746px;
  margin: 20px;
}
main .content .main .video .video-area .video-info {
  width: 100%;
  height: 72px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #282828;
  letter-spacing: 1px;
  font-size: 18px;
}
main .content .main .video .video-area .video-info .vi-views {
  margin-left: 34px;
}
main .content .main .video .video-area .video-info .vi-rating {
  margin-right: 34px;
  display: flex;
  align-items: center;
}
main .content .main .video .video-area .video-info .vi-rating img {
  margin-left: 8px;
  width: 18px;
  height: 18px;
}
main .content .main .video .video-operation {
  box-shadow: inset 0 -1px 0 0 #CCCCCC;
  height: 80px;
  display: flex;
  align-items: center;
  font-size: 28px;
  color: #BFBFBF;
  letter-spacing: 0;
  position: relative;
}
main .content .main .video .video-operation a {
  display: block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
}
main .content .main .video .video-operation a + span {
  margin-left: 16px;
}
main .content .main .video .video-operation a:hover + span {
  color: #FDD118;
}
main .content .main .video .video-operation > div {
  display: flex;
  align-items: center;
  margin: 0 34px;
}
main .content .main .video .video-operation .vo-like.liked {
  color: #FDD118;
}
main .content .main .video .video-operation .vo-like.liked a {
  background-image: url("../images/service/page04_icon_zan_click.png");
}
main .content .main .video .video-operation .vo-like a {
  background-image: url("../images/service/page04_icon_zan_nor.png");
}
main .content .main .video .video-operation .vo-like a:hover {
  background-image: url("../images/service/page04_icon_zan_click.png");
}
main .content .main .video .video-operation .vo-collect a {
  background-image: url("../images/service/page04_icon_star1_nor.png");
}
main .content .main .video .video-operation .vo-collect a:hover {
  background-image: url("../images/service/page04_icon_star1_click.png");
}
main .content .main .video .video-operation .vo-share a {
  background-image: url("../images/service/page04_icon_share1_nor.png");
}
main .content .main .video .video-operation .vo-share a:hover {
  background-image: url("../images/service/page04_icon_share1_click.png");
}
main .content .main .video .video-operation .vo-phone {
  position: absolute;
  right: 0;
  top: 20px;
}
main .content .main .video .video-operation .vo-phone a {
  background-image: url("../images/service/page04_icon_phone_nor.png");
}
main .content .main .video .video-operation .vo-phone a:hover {
  background-image: url("../images/service/page04_icon_phone_click.png");
}
main .content .main .video .video-introduce {
  margin-top: 32px;
  font-size: 24px;
  color: #666666;
  letter-spacing: 2px;
  text-align: justify;
  line-height: 36px;
}
main .content .main .video .video-introduce .vi-content {
  width: 100%;
  max-height: 128px;
  overflow: hidden;
  transition: max-height 0.3s;
}
main .content .main .video .video-introduce .vi-stretch {
  margin-top: 20px;
}
main .content .main .video .video-introduce .vi-stretch a {
  text-decoration: none;
  color: #666666;
}
main .content .main .video .video-introduce .vi-stretch a:hover {
  color: #999999;
}

.social-share .social-share-icon {
  margin-right: 25px !important;
  border: none;
  font-size: 25px;
  color: #BFBFBF !important;
  background: transparent !important;
}
.social-share .social-share-icon:hover {
  background: transparent !important;
}
.wechat-qrcode {
  width: 200px !important;
  height: 200px !important;
}
.wechat-qrcode img {
  width: 100px !important;
  height: 100px !important;
}
.nav-item a{
  white-space:nowrap;
}

/* 适配各种屏幕开始 */

@media only screen and (max-width: 1920px) {
  main .content {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 768px) {
  header > a {
    visibility: hidden;
  }
}

@media only screen and (max-width: 1424px) {
  footer {
    height: auto;
  }
  footer .footer_up {
    justify-content: space-around;
  }
  footer .footer_down {
    line-height: 40px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  footer .footer_up {
    flex-direction: column;
  }
  footer .footer_down {
    height: auto;
    flex-wrap: wrap;
  }
}

@media screen and (max-width:321px){
  #website .website-map {
    width: 240px;
  }
  .breadcrumb{
    margin-left: 24px!important;
  }
  footer .footer_down .link {
    display: none;
  }
  .footer_down .AQ, .beian-company{
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  /*文章详情*/
  .contain_main, .content{
    width: 210px!important;
  }
}
@media screen and (min-width:322px) and (max-width: 362px){
  #website .website-map {
    width: 320px;
  }
  .breadcrumb{
    margin-left: 12px!important;
  }
  footer .footer_down .link {
    display: none;
  }
  .footer_down .AQ, .beian-company{
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  /*文章详情*/
  .contain_main, .content{
    width: 300px!important;
  }
}
@media screen and (min-width:363px) and (max-width: 376px){
  #website .website-map {
    width: 340px;
  }
  .breadcrumb{
    margin-left: 12px!important;
  }
  footer .footer_down .link {
    display: none;
  }
  .footer_down .AQ, .beian-company{
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  /*文章详情*/
  .contain_main, .content{
    width: 320px!important;
  }
}
@media screen and (min-width:377px) and (max-width: 414px){
  #website .website-map {
    width: 360px;
  }
  .breadcrumb{
    margin-left: 12px!important;
  }
  .container, .content{
    width: 360px!important;
  }
  footer .footer_down .link {
    display: none;
  }
  .footer_down .AQ, .beian-company{
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  /*文章详情*/
  .contain_main, .content{
    width: 340px!important;
  }
}
@media screen and (min-width:415px) and (max-width: 479px){
  #website .website-map {
    width: 400px;
  }
  .breadcrumb{
    margin-left: 30px!important;
  }
  .container, .content{
    width: 400px!important;
  }
  footer .footer_down .link {
    display: none;
  }
  .footer_down .AQ, .beian-company{
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  /*文章详情*/
  .contain_main, .content{
    width: 360px!important;
  }
}
@media screen and (min-width:480px) and (max-width: 601px){
  #website .website-map {
    width: 470px;
  }
  .breadcrumb{
    margin-left: 30px!important;
  }
  .container, .content{
    width: 470px!important;
  }
  footer .footer_down .link {
    display: none;
  }
  .footer_down .AQ, .beian-company{
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  /*文章详情*/
  .contain_main, .content{
    width: 460px!important;
  }
}
@media screen and (min-width:602px) and (max-width: 641px){
  #website .website-map {
    width: 590px;
  }
  .breadcrumb{
    margin-left: 30px!important;
  }
  .container, .content{
    width: 590px!important;
  }
  footer .footer_down .link {
    display: none;
  }
  /*文章详情*/
  .contain_main, .content{
    width: 590px!important;
  }
}
@media screen and (min-width:642px) and (max-width: 769px){
  #website .website-map {
    width: 620px;
  }
  .breadcrumb{
    margin-left: 24px!important;
  }
  .container, .content{
    width: 620px!important;
  }
  footer .footer_up {
    flex-direction: column;
  }
  footer .footer_down {
    height: auto;
    flex-wrap: wrap;
  }
  footer .footer_down .link {
    display: none;
  }
  /*文章详情*/
  .contain_main, .content{
    width: 620px!important;
  }
}
@media screen and (min-width:770px) and (max-width: 800px){
  #website .website-map {
    width: 730px;
  }
  .breadcrumb{
    margin-left: 0px!important;
  }
  footer .footer_up {
    flex-direction: column;
  }
  footer .footer_down {
    height: auto;
    flex-wrap: wrap;
  }
  footer > div {
    width: 730px!important;
  }
  .footer_up .qr_code span {
    font-size: 12px!important;
  }
  /*文章详情*/
  .contain_main, .content{
    width: 750px!important;
  }
}

@media screen and (min-width:801px) and (max-width: 850px){
  #website .website-map {
    width: 750px;
  }
  .container, .content{
    width: 750px!important;
  }
  footer > div {
    width: 750px!important;
  }
  footer .footer_up {
    flex-direction: column;
  }
  footer .footer_down {
    height: auto;
    flex-wrap: wrap;
  }
  /*文章详情*/
  .contain_main, .content{
    width: 720px!important;
  }
}

@media screen and (min-width:851px) and (max-width: 900px){
  #website .website-map {
    width: 840px;
  }
  .container, .content{
    width: 840px!important;
  }
  footer > div {
    width: 840px!important;
  }
  footer .footer_up {
    flex-direction: column;
  }
  footer .footer_down {
    height: auto;
    flex-wrap: wrap;
  }
  /*文章详情*/
  .contain_main, .content{
    width: 810px!important;
  }
}

@media screen and (min-width:901px) and (max-width: 950px){
  #website .website-map {
    width: 880px;
  }
  footer > div {
    width: 880px!important;
  }
  /*文章详情*/
  .contain_main, .content{
    width: 850px!important;
  }
}

@media screen and (min-width:951px) and (max-width: 1000px){
  #website .website-map {
    width: 920px;
  }
  footer > div {
    width: 920px!important;
  }
  /*文章详情*/
  .contain_main, .content{
    width: 890px!important;
  }
}

@media screen and (min-width:1001px) and (max-width: 1100px){
  #website .website-map {
    width: 940px;
  }
  footer > div {
    width: 940px!important;
  }
  /*文章详情*/
  .contain_main, .content{
    width: 910px!important;
  }
}
@media screen and (min-width:1101px) and (max-width: 1200px){
  #website .website-map {
    width: 1040px;
  }
  footer > div {
    width: 1040px!important;
  }
  /*文章详情*/
  .contain_main, .content{
    width: 960px!important;
  }
}
@media screen and (min-width:1201px) and (max-width: 1300px){
  #website .website-map {
    width: 1140px;
  }
  footer > div {
    width: 1140px!important;
  }
  /*文章详情*/
  .contain_main, .content{
    width: 960px!important;
  }
}
@media screen and (min-width:1301px) and (max-width: 1400px){
  .container {
    width: 1240px;
  }
  footer > div {
    width: 1240px!important;
  }
  /*文章详情*/
  .contain_main, .content{
    width: 1100px!important;
  }
}
@media screen and (min-width:1401px) and (max-width: 1500px){
  .container {
    width: 1340px;
  }
  footer > div {
    width: 1340px!important;
  }
  /*文章详情*/
  .contain_main, .content{
    width: 1200px!important;
  }
}
@media screen and (min-width:1501px) and (max-width: 1500px){
  .container {
    width: 1400px;
  }
  footer > div {
    width: 1400px!important;
  }
  /*文章详情*/
  .contain_main, .content{
    width: 1300px!important;
  }
}
@media (min-width: 1500px){
  .container {
    width: 1420px;
  }
  footer > div {
    width: 1420px!important;
  }
}

/* 适配各种屏幕结束 */

.navbar-inverse{
  background-color: #fff;
  border-color: #fff;
}
.container{padding: 0;}

/*服务特色 左边*/
main .main {
  /*width: 344px;*/
  overflow: hidden;
}
main .main .sidebar-headline {
  margin-top: 104px;
  font-size: 26px;
  letter-spacing: auto;
  width: 100%;
  height: 64px;
  box-shadow: 0 1px 0 0 #999999;
}
main .content .main .catalogue {
  width: 100%;
  overflow-y: scroll;
  padding-bottom: 5px;
}
main .main .catalogue .catalogue-item {
  text-decoration: none;
  margin-top: 48px;
  display: block;
  width: 100%;
  overflow: hidden;
  color: #666!important;
  border-radius: 10px;
  transition: all 0.3s;
}
main .main .catalogue .catalogue-item:hover {
  transform: translateY(5px);
  color: #141414;
  background: #F2F2F2;
}
main .main .catalogue .catalogue-item span {
  font-size: 20px;
  letter-spacing: 1.1px;
}
main .main .catalogue .catalogue-item .catalogue-detail {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
main .main .catalogue .catalogue-item .catalogue-detail p {
  font-size: 16px;
  letter-spacing: auto;
  margin: 0;
  width: 234px;
}
main .main .catalogue .catalogue-item .catalogue-detail img {
  border-radius: 5px;
  height: 70px;
  width: 104px;
  margin-left: 16px;
}
/*右边*/
main .main .article {
  width: 100%;
}
main .main .article .article-headline {
  width: 100%;
  height: 168px;
  box-shadow: 0 1px 0 0 #999999;
}
main .main .article .article-headline > span {
  font-size: 28px;
  letter-spacing: 1px;
  color: #282828;
}
main .main .article .article-headline .time-place {
  margin-top: 24px;
}
main .main .article .article-headline .time-place span {
  font-size: 14px;
  letter-spacing: auto;
}
main .main .article .article-headline .time-place span:nth-child(1) {
  margin-right: 10px;
}
main .main .article .article-headline .share {
  margin-top: 24px;
  display: flex;
  align-items: center;
}
main .main .article .article-headline .share a {
  display: inline-block;
  margin-right: 20px;
}
main .main .article .article-headline .share a img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
main .main .article .mainbody {
  width: 100%;
  padding-top: 46px;
  color: #666;
}
main .main .article .mainbody > :nth-child(1) {
  margin-top: 0;
}
main .main .article .mainbody > :nth-last-child(1) {
  margin-bottom: 0;
}
main .main .article .mainbody img {
  border-radius: 10px;
  width: 100%;
}
main .main .article .mainbody p {
  margin: 24px 0;
  font-size: 24px;
  letter-spacing: 2px;
}
main .main .article .mainbody p.title {
  color: #333;
  margin-bottom: 10px;
}
main .main .article .mainbody p.title + p {
  margin-top: 10px;
}

/*视频*/
main .main .video {
  width: 100%;
}
main .main .video .video-area {
  background: #000;
  box-shadow: 0 0 18px 0 rgba(204, 204, 204, 0.49);
  overflow: hidden;
}
main .main .video .video-area .video-player {
  width: 100%;
  height: 746px;
  margin: 20px;
}
main .main .video .video-area .video-info {
  width: 100%;
  height: 72px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #282828;
  letter-spacing: 1px;
  font-size: 18px;
}
main .main .video .video-area .video-info .vi-views {
  margin-left: 34px;
}
main .main .video .video-area .video-info .vi-rating {
  margin-right: 34px;
  display: flex;
  align-items: center;
}
main .main .video .video-area .video-info .vi-rating img {
  margin-left: 8px;
  width: 18px;
  height: 18px;
}
main .main .video .video-operation {
  box-shadow: inset 0 -1px 0 0 #CCCCCC;
  height: 80px;
  display: flex;
  align-items: center;
  font-size: 28px;
  color: #BFBFBF;
  letter-spacing: 0;
  position: relative;
}
main .main .video .video-operation a {
  display: block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
}
main .main .video .video-operation a + span {
  margin-left: 16px;
}
main .main .video .video-operation a:hover + span {
  color: #FDD118;
}
main .main .video .video-operation > div {
  display: flex;
  align-items: center;
  margin: 0 34px;
}
main .main .video .video-operation .vo-like.liked {
  color: #FDD118;
}
main .main .video .video-operation .vo-like.liked a {
  background-image: url("../images/service/page04_icon_zan_click.png");
}
main .main .video .video-operation .vo-like a {
  background-image: url("../images/service/page04_icon_zan_nor.png");
}
main .main .video .video-operation .vo-like a:hover {
  background-image: url("../images/service/page04_icon_zan_click.png");
}
main .main .video .video-operation .vo-collect a {
  background-image: url("../images/service/page04_icon_star1_nor.png");
}
main .main .video .video-operation .vo-collect a:hover {
  background-image: url("../images/service/page04_icon_star1_click.png");
}
main .main .video .video-operation .vo-share a {
  background-image: url("../images/service/page04_icon_share1_nor.png");
}
main .main .video .video-operation .vo-share a:hover {
  background-image: url("../images/service/page04_icon_share1_click.png");
}
main .main .video .video-operation .vo-phone {
  position: absolute;
  right: 0;
  top: 20px;
}
main .main .video .video-operation .vo-phone a {
  background-image: url("../images/service/page04_icon_phone_nor.png");
}
main .main .video .video-operation .vo-phone a:hover {
  background-image: url("../images/service/page04_icon_phone_click.png");
}
main .main .video .video-introduce {
  margin-top: 32px;
  font-size: 24px;
  color: #666666;
  letter-spacing: 2px;
  text-align: justify;
  line-height: 36px;
}
main .main .video .video-introduce .vi-content {
  width: 100%;
  max-height: 128px;
  overflow: hidden;
  transition: max-height 0.3s;
}
main .main .video .video-introduce .vi-stretch {
  margin-top: 20px;
}
main .main .video .video-introduce .vi-stretch a {
  text-decoration: none;
  color: #666666;
}
main .main .video .video-introduce .vi-stretch a:hover {
  color: #999999;
}
.container #header_logo{
  margin-top: -9px;
}

.catalogue-detail > p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
