html,
body {
  height: auto;
  position: relative;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "微软雅黑";
}
a {
  text-decoration: none !important;
  -webkit-tap-highlight-color: transparent;
  color: inherit;
}
ul, 
li {
  list-style: none;
}
.comm_cont {
  width: 100%;
  height: auto;
  min-height: 100vh;
  background-color: #FFFFFF;
}
#head_box {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 3;
  background-color: #FFFFFF;
  transition: 0.5s;
}
.head_boxA {
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
.comm_left {
  width: 230px;
  height: auto;
}
.comm_left .comm_btn {
  display: none;
}
.comm_left .comm_head {
  width: 100%;
  height: 112px;
 
  background-repeat: no-repeat;
  background-size: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 24px;
  color: #104358;
  background-color: #eeeeee;
}
.comm_left .comm_head span {
  margin-left: 12px;
}
.comm_left .comm_ul {
  width: 100%;
  height: auto;
}
.comm_left .comm_ul .comm_li {
  width: 100%;
  height: 70px;
  cursor: pointer;
  font-size: 16px;
  color: #666666;
  position: relative;
  text-indent: 23px;
  transition: 0.5s;
}
.comm_left .comm_ul .comm_li a {
  width: 100%;
  height: 100%;
  display: block;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.comm_left .comm_ul .comm_li .triangle_btn {
  width: 0px;
  height: 0px;
  border-bottom: 11px solid #104358;
  border-top: 0px solid transparent;
  border-right: 0px solid transparent;
  border-left: 14px solid transparent;
  position: absolute;
  top: 0px;
  left: -14px;
  opacity: 0;
  transition: 0.5;
}
.comm_left .comm_ul .comm_li::after {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #c9c9c9;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  left: 0px;
}
.comm_left .comm_ul .comm_liActive {
  background: #104358;
  color: #FFFFFF;
  font-size: 18px;
}
.comm_left .comm_ul .comm_liActive .triangle_btn {
  opacity: 1;
}
.comm_left .comm_ul .comm_liActive a {
  color: #FFFFFF;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.comm_left .comm_ul .comm_liActive::after {
  width: 10px;
  height: 10px;
  color: #FFFFFF;
  margin-top: -5px;
  left: 7px;
  border-radius: 0px;
  background-color: #FFFFFF;
}
.comm_right {
  width: 1130px;
  height: auto;
  margin-top: 20px;
}
.comm_right .right_head {
  width: 100%;
  height: 90px;
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.comm_right .right_head .rHead_title {
  font-size: 22px;
  color: #666666;
  position: relative;
}
.comm_right .right_head .rHead_title::after {
  content: "";
  width: 42px;
  height: 2px;
  background-color: #104358;
  position: absolute;
  bottom: -31px;
  left: 0px;
}
.comm_right .right_head .rHead_ul {
  width: auto;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
}
.comm_right .right_head .rHead_ul .rHead_li {
  font-size: 14px;
  color: #999999;
}
.comm_right .right_head .rHead_ul .rHead_li span:first-child {
  cursor: pointer;
}
.comm_right .right_head .rHead_ul .rHead_li span:last-child {
  margin: 0px 5px;
}
.comm_right .right_head .rHead_ul .rHead_liActive {

}
.comm_right .right_head .rHead_ul .rHead_liActive span:first-child {
  cursor: initial;
}
.comm_right .right_head .rHead_ul .rHead_liActive span:last-child {
  display: none;
}
.comm_right .right_cont {
  width: 100%;
  height: auto;
  padding-top: 1px;
  line-height: 35px;
  
}
.comm_right .right_cont .page_div {
  text-align: center;
}
@media only screen and (max-width: 1460px) {
  .comm_left {
    width: 210px;
  }
  .comm_left .comm_head {
    height: 100px;
  }
  .comm_left .comm_ul .comm_li {
    height: 66px;
  }
  .comm_right {
    width: 950px;
  }
}
@media only screen and (max-width: 1250px) {
  .comm_left {
    width: 175px;
  }
  .comm_left .comm_head {
    height: 85px;
    font-size: 22px;
  }
  .comm_left .comm_ul .comm_li {
    height: 60px;
    font-size: 15px;
  }
  .comm_left .comm_ul .comm_li .triangle_btn {
    border-bottom: 9px solid #104358;
    border-left: 12px solid transparent;
    left: -12px;
  }
  .comm_left .comm_ul .comm_liActive {
    font-size: 17px;
  }
  .comm_left .comm_ul .comm_liActive::after {
    width: 8px;
    height: 8px;
    margin-top: -3px;
    left: 6px;
  }
  .comm_right {
    width: 735px;
  }
  .comm_right .right_head {
    height: 68px;
    margin-bottom: 50px;
  }
  .comm_right .right_head .rHead_title {
    font-size: 20px;
  }
  .comm_right .right_head .rHead_title::after {
    bottom: -20px;
  }
  .comm_right .right_head .rHead_ul .rHead_li {
    font-size: 13px;
  }
}
@media only screen and (max-width: 970px) {
  .comm_left {
    width: 140px;
  }
  .comm_left .comm_head {
    height: 68px;
    font-size: 18px;
  }
  .comm_left .comm_ul .comm_li {
    height: 55px;
    font-size: 14px;
  }
  .comm_left .comm_ul .comm_li .triangle_btn {
    border-bottom: 9px solid #104358;
    border-left: 12px solid transparent;
    left: -12px;
  }
  .comm_left .comm_ul .comm_liActive {
    font-size: 16px;
  }
  .comm_left .comm_ul .comm_liActive::after {
    width: 8px;
    height: 8px;
    margin-top: -3px;
    left: 6px;
  }
  .comm_right {
    width: 585px;
    margin-top: 10px;
  }
  .comm_right .right_head {
    height: 60px;
    margin-bottom: 30px;
  }
  .comm_right .right_head .rHead_title {
    font-size: 18px;
  }
  .comm_right .right_head .rHead_title::after {
    bottom: -20px;
  }
  .comm_right .right_head .rHead_ul .rHead_li {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .comm_left {
    width: 3.421052rem;
    height: auto;
    background: #FFFFFF;
    position: fixed;
    left: -3.421052rem;
    top: 32%;
    z-index: 3;
    box-shadow: 0px 0px 0rem rgba(0, 0, 0, 0.2);
  }
  .comm_left .comm_btn {
    display: block;
    width: 0.7rem;
    height: 1rem;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -0.7rem;
    top: 0px;
    box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
  }
  .comm_left .comm_head {
    height: 50px;
    font-size: 0.421052rem;
    width: 3.421052rem;
  }
  .comm_left .comm_ul {
    width: 3.421052rem;
  }
  .comm_left .comm_ul .comm_li {
    height: 1.315789rem;
    font-size: 0.368421rem;
  }
  .comm_left .comm_ul .comm_li .triangle_btn {
    border-bottom: 9px solid #104358;
    border-left: 12px solid transparent;
    left: -12px;
  }
  .comm_left .comm_ul .comm_liActive {
    font-size: 0.394736rem;
  }
  .comm_left .comm_ul .comm_liActive::after {
    width: 8px;
    height: 8px;
    margin-top: -3px;
    left: 6px;
  }
  .comm_right {
    width: 100%;
    margin-top: 0.263157rem;
  }
  .comm_right .right_head {
    height: 1.578947rem;
    margin-bottom: 0.789473rem;
  }
  .comm_right .right_head .rHead_title {
    font-size: 0.473684rem;
    white-space: nowrap;
  }
  .comm_right .right_head .rHead_title::after {
    bottom: -0.526315rem;
  }
  .comm_right .right_head .rHead_ul .rHead_li {
    font-size: 0.315789rem;
  }
}
.ebi_rich{
    padding-bottom: 40px;
}
.ebi_rich p{
    text-indent: 0em;
}
.ebi_rich img{
    max-width: 100%;
}
.cont_ul {
    width: 100%;
    height: auto;
}
.cont_ul .cont_li {
    width: 100%;
    height: 210px;
    background-image: linear-gradient(to right, #e5e5e5 0%, #e5e5e5 50%, transparent 50%);
    background-size: 8px 1px;
    background-repeat: repeat-x;
    background-position: bottom;
}
.cont_ul .cont_li .li_a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cont_ul .cont_li .li_a .li_img {
    width: 140px;
    height: 180px;
    border: 1px solid #F6F6F6;
    overflow: hidden;
}
.cont_ul .cont_li .li_a .li_img img {
    width: 100%;
    display: block;
    cursor: pointer;
}
.cont_ul .cont_li .li_a .li_cont {
    width: 950px;
    height: 138px;
}
.cont_ul .cont_li .li_a .li_cont .li_title {
    width: 100%;
    font-size: 20px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-weight: 600;
    margin-bottom: 15px;
}
.cont_ul .cont_li .li_a .li_cont span {
    font-size: 16px;
    color: #333;
}
.cont_ul .cont_li .li_a .li_cont .li_text {
    width: 100%;
    font-size: 16px;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
}
@media only screen and (max-width: 1460px) {
    .cont_ul .cont_li .li_a .li_cont {
        width: 785px;
    }
}
@media only screen and (max-width: 1250px) {
    .cont_ul .cont_li .li_a .li_cont {
        width: 575px;
    }
}
@media only screen and (max-width: 970px) {
    .cont_ul .cont_li {
        height: 190px;
    }
    .cont_ul .cont_li .li_a .li_img {
        width: 120px;
        height: 154px;
    }
    .cont_ul .cont_li .li_a .li_cont {
        width: 450px;
        height: 120px;
    }
    .cont_ul .cont_li .li_a .li_cont .li_title {
        font-size: 18px;
    }
    .cont_ul .cont_li .li_a .li_cont span {
        font-size: 15px;
    }
    .cont_ul .cont_li .li_a .li_cont .li_text {
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px) {
    .cont_ul .cont_li {
        height: 3.68421rem;
    }
    .cont_ul .cont_li .li_a .li_img {
        width: 2.368421rem;
        height: 2.973684rem;
    }
    .cont_ul .cont_li .li_a .li_cont {
        width: 6.578947rem;
        height: 2.894736rem;
    }
    .cont_ul .cont_li .li_a .li_cont .li_title {
        font-size: 0.421052rem;
        margin-bottom: 0.001rem;
    }
    .cont_ul .cont_li .li_a .li_cont span {
        font-size: 0.368421rem;
    }
    .cont_ul .cont_li .li_a .li_cont .li_text {
        font-size: 0.315789rem;

        line-height: 0.4rem;
    }
}


.div_ul {
    width: 100%;
    height: auto;
    padding-top: 40px;
}
.div_ul .div_li {
    width: 100%;
    height: 85px;
    background-image: linear-gradient(to right, #e5e5e5 0%, #e5e5e5 50%, transparent 50%);
    background-size: 8px 1px;
    background-repeat: repeat-x;
    background-position: bottom;
    background-position: top;
    cursor: pointer;
    transition: 0.5s;
}
.div_ul .div_li a {
    font-size: 17px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    width: 100%;
    height: 100%;
    line-height: 60px;
}

.div_ul .div_li:hover {
    background-color: #F6F6F6;
}
@media only screen and (max-width: 1460px) {
    .div_ul .div_li {
        height: 80px;
    }
    .div_ul .div_li a {
        font-size: 17px;
        color: #333;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        line-height: 60px;
    }
    .div_ul .div_li:first-child {
        margin-top: 55px;
    }
    .div_ul .div_li:hover {
        background-color: #F6F6F6;
    }
}
@media only screen and (max-width: 970px) {
    .div_ul .div_li {
        height: 80px;
    }
    .div_ul .div_li a {
        font-size: 15px;
        color: #333;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        line-height: 60px;
    }
    .div_ul .div_li:first-child {
        margin-top: 30px;
    }
}
@media only screen and (max-width: 767px) {
    .div_ul .div_li {
        height: 80px;
    }
    .div_ul .div_li a {
        font-size: 15px;
        color: #333;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-height: 0.921052rem;
        padding-top: 0.394736rem;
    }
    .div_ul .div_li:first-child {
        margin-top: 0.789473rem;
    }
}

/* 本例子css */
.slideBox{ width:100%;height:800px;overflow:hidden; position:relative;text-align: center}
.slideBox .bd{ position:relative;z-index:0;}
.slideBox .bd li{ zoom:1; vertical-align:middle; }
.slideBox .bd img{ width:90%;display:block;margin:0 auto;}

/* 下面是前/后按钮代码，如果不需要删除即可 */
.btnbox{
    position: absolute;
    top:300px;
    z-index: 999;
    width: 100%;
}
.prev,.next{
    display: block;
    width: 36px;
    height: 39px;
    background: grey;
}
.prev{
    float: left;
    background: url("../images/icon_left.png") no-repeat;
    left:0;
}
.next{
    float: right;
    background: url("../images/icon_left.png") no-repeat;
    transform:rotateY(180deg);
    right:0
}
.prev:hover{
    background: url("../images/icon_right.png") no-repeat;
    transform:rotateY(180deg);
}
.next:hover{
    background: url("../images/icon_right.png") no-repeat;
    transform:rotateY(0deg);
}
.slideBox .prevStop{ display:none;  }
.slideBox .nextStop{ display:none;  }

.tkx_ul {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.tkx_ul .tkx_li {
    width: 354px;
    height: 236px;
    margin-left: 34px;
    cursor: pointer;
    margin-bottom: 44px;
    transition: 0.5s;
}
.tkx_ul .tkx_li:nth-child(3n+1) {
    margin-left: 0px;
}
.tkx_ul .tkx_li .li_img {
    width: 122px;
    height: 122px;
    border-radius: 27px;
    margin: 30px auto;
}
.tkx_ul .tkx_li .li_img img {
    width: 100%;
    display: block;
}
.tkx_ul .tkx_li p {
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.tkx_ul .tkx_li:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 1460px) {
    .tkx_ul .tkx_li {
        width: 293px;
        margin-bottom: 35px;
    }
}
@media only screen and (max-width: 1250px) {
    .tkx_ul .tkx_li {
        width: 215px;
        height: 205px;
        margin-bottom: 30px;
    }
    .tkx_ul .tkx_li .li_img {
        width: 95px;
        height: 95px;
    }
}
@media only screen and (max-width: 970px) {
    .tkx_ul .tkx_li {
        width: 170px;
        height: 185px;
        margin-bottom: 20px;
    }
    .tkx_ul .tkx_li .li_img {
        width: 80px;
        height: 80px;
    }
    .tkx_ul .tkx_li p {
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px) {
    .tkx_ul .tkx_li {
        width: 4.3421rem;
        height: 185px;
        margin-bottom: 0.5263rem;
        margin-left: 0.5263rem;
    }
    .tkx_ul .tkx_li .li_img {
        width: 2.1053rem;
        height: 2.1053rem;
    }
    .tkx_ul .tkx_li p {
        font-size: 14px;
    }
    .tkx_ul .tkx_li:nth-child(3n+1) {
        margin-left: 0.5263rem;
    }
    .tkx_ul .tkx_li:nth-child(2n+1) {
        margin-left: 0rem;
    }
}

.contx_ul {
    width: 100%;
    height: auto;
}
.contx_ul .ul_head {
    height: 50px;
    background-color: #ededed;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contx_ul .ul_head div {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}
.contx_ul .ul_head,
.contx_ul .contx_li {
    width: 100%;
}
.contx_ul .ul_head .head_zw,
.contx_ul .contx_li .head_zw {
    text-align: center;
    width: 50%;
}
.contx_ul .ul_head .head_xl,
.contx_ul .contx_li .head_xl,
.contx_ul .ul_head .head_rs,
.contx_ul .contx_li .head_rs,
.contx_ul .ul_head .head_sj,
.contx_ul .contx_li .head_sj {
    width: 15%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.contx_ul .contx_li {
    height: 86px;
    cursor: pointer;
    background-image: linear-gradient(to right, #e5e5e5 0%, #e5e5e5 50%, transparent 50%);
    background-size: 8px 1px;
    background-repeat: repeat-x;
    background-position: bottom;
    transition: 0.5s;
}
.contx_ul .contx_li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contx_ul .contx_li div {
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #666;
    margin: 23px 0px;
}
.contx_ul .contx_li:hover {
    background-color: #F6F6F6;
}
.contx_ul .contx_li:hover div {
    color: #197465;
}
@media only screen and (max-width: 1250px) {
    .contx_ul .ul_head {
        height: 45px;
    }
    .contx_ul .ul_head div {
        font-size: 15px;
    }
    .contx_ul .contx_li div {
        font-size: 15px;
    }
}
@media only screen and (max-width: 970px) {
    .contx_ul .ul_head {
        height: 45px;
    }
    .contx_ul .ul_head div {
        font-size: 14px;
    }
    .contx_ul .contx_li div {
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px) {
    .contx_ul .ul_head {
        height: 1.0526rem;
    }
    .contx_ul .ul_head div {
        font-size: 0.3158rem;
    }
    .contx_ul .contx_li {
        height: 1.8421rem;
    }
    .contx_ul .contx_li div {
        font-size: 0.3158rem;
        padding: 0.3947rem 0px;
        line-height: 0.5rem;
    }
}

.prd_ul {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-items: flex-start;
    flex-wrap: wrap;
    max-height: 930px;
    overflow: hidden;
}
.prd_ul .prd_li {
    width: 265px;
    height: 310px;
    margin-left: 23px;
    cursor: pointer;
}
.prd_ul .prd_li .prd_img {
    width: 100%;
    height: 257px;
    border: 4px solid #f6f6f6;
    overflow: hidden;
}
.prd_ul .prd_li .prd_img img {
    width: 100%;
    display: block;
    transition: 0.5s;
}
.prd_ul .prd_li p {
    width: 100%;
    font-size: 16px;
    color: #333333;
    line-height: 40px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: 0.5s;
}
.prd_ul .prd_li:nth-child(4n+1) {
    margin-left: 0px;
}
.prd_ul .prd_li:hover .prd_img > img {
    transform: scale(1.05);
}
.prd_ul .prd_li:hover p {
    color: #197465;
}
@media only screen and (max-width: 1460px) {
    .prd_ul .prd_li {
        width: 220px;
        height: 260px;
    }
    .prd_ul .prd_li .prd_img {
        height: 220px;
    }
}
@media only screen and (max-width: 1250px) {
    .prd_ul .prd_li {
        width: 228px;
        height: 270px;
    }
    .prd_ul .prd_li .prd_img {
        height: 228px;
    }
    .prd_ul .prd_li:nth-child(4n+1) {
        margin-left: 23px;
    }
    .prd_ul .prd_li:nth-child(3n+1) {
        margin-left: 0px;
    }
}
@media only screen and (max-width: 970px) {
    .prd_ul .prd_li {
        width: 178px;
        height: 220px;
    }
    .prd_ul .prd_li .prd_img {
        height: 178px;
    }
    .prd_ul .prd_li p {
        font-size: 14px;
    }
    .prd_ul .prd_li:nth-child(4n+1) {
        margin-left: 23px;
    }
    .prd_ul .prd_li:nth-child(3n+1) {
        margin-left: 0px;
    }
}
@media only screen and (max-width: 767px) {
    .prd_ul {
        max-height: initial;
    }
    .prd_ul .prd_li {
        width: 4.4737rem;
        height: 5.7895rem;
    }
    .prd_ul .prd_li p {
        font-size: 0.3684rem;
    }
    .prd_ul .prd_li .prd_img {
        height: 4.4737rem;
    }
    .prd_ul .prd_li:nth-child(3n+1) {
        margin-left: 0.6053rem;
    }
    .prd_ul .prd_li:nth-child(2n+1) {
        margin-left: 0px;
    }
}

.cont_div {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: flex-start;
}
.cont_div .swiper_box {
    position: relative;
}
.cont_div .swiper_box #gallery {
    width: 600px;
    height: 600px;
    border: solid 4px #f6f6f6;
}
.cont_div .swiper_box #gallery .swiper-button-next,
.cont_div .swiper_box #gallery .swiper-button-prev {
    top: 88%;
    z-index: 2;
}
.cont_div .swiper_box #gallery img {
    width: 100%;
    display: block;
}
.cont_div .swiper_box #gallery .swiper-button-prev {
    background-image: url(../images/left.png);
    outline: none;
    width: 45px;
    height: 104px;
    left: 0px;
    background-size: 45px 104px;
}
.cont_div .swiper_box #gallery .swiper-button-prev.swiper-button-disabled {
    background-image: url(../images/leftA.png);
    opacity: 1;
}
.cont_div .swiper_box #gallery .swiper-button-next {
    background-image: url(../images/right.png);
    outline: none;
    width: 45px;
    height: 104px;
    right: 0px;
    background-size: 45px 104px;
}
.cont_div .swiper_box #gallery .swiper-button-next.swiper-button-disabled {
    background-image: url(../images/rightA.png);
    opacity: 1;
}
.cont_div .swiper_box #thumbs {
    width: 450px;
    height: 110px;
    margin: auto;
    margin-top: 15px;
    overflow: hidden;
}
.cont_div .swiper_box #thumbs .swiper-slide {
    border: 1px solid #F6F6F6;
}
.cont_div .swiper_box #thumbs .swiper-slide img {
    width: 100%;
    display: block;
    cursor: pointer;
}
.cont_div .swiper_box #thumbs .my-slide-thumb-active {
    border: 1px solid #8d8d8d;
}
.cont_div .cont_text {
    width: 460px;
    height: auto;
}
.cont_div .cont_text p {
    font-size: 18px;
    color: #999;
    line-height: 38px;
    margin-bottom: 8px;
}
.cont_div .cont_text p span {
    font-size: 18px;
    color: #333;
    margin-right: 25px;
}
@media only screen and (max-width: 1460px) {
    .cont_div .swiper_box #gallery {
        width: 520px;
        height: 520px;
    }
    .cont_div .swiper_box #gallery .swiper-button-next,
    .cont_div .swiper_box #gallery .swiper-button-prev {
        width: 40px;
        height: 98px;
        top: 86%;
        background-size: 40px 98px;
    }
    .cont_div .swiper_box #thumbs {
        width: 410px;
    }
    .cont_div .cont_text {
        width: 405px;
    }
}
@media only screen and (max-width: 1250px) {
    .cont_div .swiper_box #gallery {
        width: 410px;
        height: 410px;
    }
    .cont_div .swiper_box #gallery .swiper-button-next,
    .cont_div .swiper_box #gallery .swiper-button-prev {
        width: 30px;
        height: 75px;
        top: 88%;
        background-size: 30px 75px;
    }
    .cont_div .swiper_box #thumbs {
        width: 330px;
        height: 80px;
    }
    .cont_div .cont_text {
        width: 305px;
    }
    .cont_div .cont_text p {
        font-size: 16px;
    }
    .cont_div .cont_text p span {
        font-size: 16px;
        margin-right: 15px;
    }
}
@media only screen and (max-width: 970px) {
    .cont_div {
        flex-wrap: wrap;
    }
    .cont_div .swiper_box {
        width: 100%;
    }
    .cont_div .swiper_box #gallery {
        width: 100%;
        height: 585px;
    }
    .cont_div .swiper_box #gallery .swiper-button-next,
    .cont_div .swiper_box #gallery .swiper-button-prev {
        width: 40px;
        height: 100px;
        top: 88%;
        background-size: 40px 100px;
    }
    .cont_div .swiper_box #thumbs {
        width: 480px;
        height: 118px;
    }
    .cont_div .cont_text {
        width: 100%;
        margin-top: 30px;
    }
    .cont_div .cont_text p {
        font-size: 14px;
        line-height: 35px;
    }
    .cont_div .cont_text p span {
        font-size: 14px;
        margin-right: 15px;
    }
}
@media only screen and (max-width: 767px) {
    .cont_div {
        flex-wrap: wrap;
    }
    .cont_div .swiper_box {
        width: 100%;
    }
    .cont_div .swiper_box #gallery {
        width: 100%;
        height: 9.4737rem;
    }
    .cont_div .swiper_box #gallery .swiper-button-next,
    .cont_div .swiper_box #gallery .swiper-button-prev {
        width: 0.7895rem;
        height: 1.5789rem;
        top: 88%;
        background-size: 1.0526rem 2.6316rem;
    }
    .cont_div .swiper_box #thumbs {
        width: 80%;
        height: 2.1053rem;
    }
    .cont_div .cont_text {
        width: 100%;
        margin-top: 0.6579rem;
    }
    .cont_div .cont_text p {
        font-size: 0.3684rem;
        line-height: 0.7895rem;
    }
    .cont_div .cont_text p span {
        font-size: 0.3684rem;
        margin-right: 0.3947rem;
    }
}
@media all and (max-width:750px){
    .rHead_title{
        display: none;
    }
}

