* {
  padding: 0;
  font-family: Microsoft YaHei;
  margin: 0;
}
p{
  margin-bottom: 0;
}
body {
  font-family: Microsoft YaHei;
}

a {
  color: #000 !important;
}

/*去除未被访问的a标签的下划线*/
a:link {
  text-decoration: none !important;
}

/*去除已经被访问过的a标签的下划线*/
a:visited {
  text-decoration: none !important;
  color: #000 !important;
}

/*去除正在点击的a标签的下划线（鼠标按下，尚未松开）*/
a:active {
  text-decoration: none !important;
  color: #000 !important;
}

/*去除获得焦点的a标签的下划线（被鼠标点击过）*/
a:focus {
  text-decoration: none !important;
  color: #000 !important;
}

.container-fluid {
  margin: 0;
  padding: 0;
}

.center {
  width: 100%;
  min-height: 500px;
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  justify-content: space-between;
  padding-left: 3%;
  padding-right: 3%;
  margin: 0;
}

.body-content {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.body-content>div {
  width: 90.5%;
}


.body-content-text {
  margin-top: 5.8%;
  overflow: hidden;
}

.body-content-text>.text>ul {
  padding-left: 1rem;
  margin-left: -16px;
  margin-bottom: 0px;
}

.body-content-text-button>.button {
  width: 118px;
  height: 40px;
  border: 1px #3c3c3c solid;
  background-color: #fff;
  color: black;
  text-align: center;
  line-height: 38px;
  margin-right: 10px;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  animation-name: mybutton;
  animation-duration: 1.5s;
  font-size: 14px;
}

.body-content-text-button>.button:last-child {
  margin-right: 0px;
}

.body-content-text-button {
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  margin-top: 35px;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  margin-bottom: 5%;
}

.body-content-text>.text {
  position: relative;
  animation-name: mytext;
  animation-duration: 1.5s;
  margin-top: 40px;
  display: flex;
  padding-left: 15px;
}
.text>p{
  font-weight: 900;
}
.text>ul>li {
  list-style-type: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 10px;
  word-break: keep-all;
  white-space: nowrap;
}

.text>ul>li>img {
  width: 18px;
  margin-right: 5px;
}

.body-content-text #p {
  position: relative;
  animation-name: mytext;
  animation-duration: 1s;
  text-align: center;
}

.body-content-text #p>span {
  font-size: 14px;
  float: right;
}

.body-content-text #p>span>b {
  font-size: 16px;
  color: red;
}

.b_c_t {
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  margin-bottom: 20px;
}

.b_c_t>.r {
  display: flex;
  align-items: end;
  padding-right: 18px;
}
.b_c_t>.r>span{
  position: relative;
}
.b_c_t>.r .line{
  position: absolute;
  width: 110%;
  border-bottom: 2px solid #000;
  top: 0%;
  left: 0;
  transform: rotate(15deg) translate(-5%);
  transform-origin: -55% 0%;
  
}
.b_c_t>.r>img {
  margin-bottom: 18px;
}

.body-content-text>#pp {
  font-size: 14px;
  line-height: 25px;
  position: relative;
  animation-name: mytext;
  animation-duration: 1.2s;
  margin-bottom: 0%;
  text-indent: 2em;
  text-align: justify; 
}

#pp>span {
  text-indent: 2em;
}

.body-content-button {
  width: 95% !important;
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  margin-top: 10px;
}

.body-content-button>div {
  width: 110px;
  height: 35px;
  border: 1px solid #5c5c5d;
  border-top: none;
  text-align: center;
  line-height: 35px;
  margin-right: 3px;
  cursor: pointer;
  position: relative;
  font-size: 14px;
  font-weight: 700;

}

@keyframes body-content-button {
  from {
    top: -200px;
  }

  to {
    top: 0px;
  }
}

.body-content-button-ac {
  background-color: #19191a;
  color: #fff;
}

.body-content-button>div:hover {
  background-color: #5c5c5d;
  color: #fff;
}


cc {
  color: #c41324;
}

.switch-img {
  width: 100%;
  display: flex;
  justify-content: center;
  float: right;
  margin-top: 2%;
}

.switch-img>.button {
  width: auto;
  height: 32px;
  border: 1px solid #5c5c5d;
  text-align: center;
  line-height: 32px;
  margin-right: 5px;
  cursor: pointer;
  position: relative;
  padding: 0 20px;
  font-size: 14px;
}

.body-content-img {
  overflow: hidden;
  margin-top: 3%;
  width: 92.4% !important;
  text-align: right;
  float: right;
}

.body-content-img img:hover {
  transform: scale(1.1);
}

.body-content-img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.6s;
  animation-name: myimg;
  animation-duration: 1.5s;
  position: relative;
}

@keyframes mybutton {
  from {
    bottom: -200px;
  }

  to {
    bottom: 0px;
  }
}

@keyframes myimg {
  from {
    bottom: -500px;
  }

  to {
    bottom: 0px;
  }
}

@keyframes mytext {
  from {
    bottom: -300px;
  }

  to {
    bottom: 0px;
  }
}

@media screen and (max-width:991px) {
  #product2 .center {
    flex-direction: column-reverse;
  }

  .body-content-button {
    float: none !important;
  }

  .body-content-img {
    float: none !important;
    margin: auto;
    margin-top: 2%;
  }

  .body-content-text {
    float: none !important;
    margin: auto !important;
  }

  .body-content-text-button {
    margin-top: 3%;
    margin-bottom: 3%;
  }

  .body-content-text>#pp {
    margin-bottom: 3%;
  }

  #body-content-right {
    margin-bottom: 5%;
  }


  .Rotation-left p:nth-child(odd) {
    font-size: 20px;
  }

  .Rotation-left p:nth-child(2) {
    font-size: 28px !important;
  }

  .Rotation-text {
    margin-top: 2%;
    margin-bottom: 2%;
  }

  .Rotation-right p {
    font-size: 14px;
  }
}

@media screen and (max-width:842px) {
  .Rotation-left p:nth-child(odd) {
    font-size: 16px;
  }

  .Rotation-left p:nth-child(2) {
    font-size: 22px !important;
  }

  .Rotation-right {
    padding-top: 0;
  }

  .Rotation-right p {
    font-size: 12px;

  }

  .Navigation-right span {
    font-size: 12PX;
  }
}