body * {
  box-sizing: border-box;
  flex-shrink: 0;
}
body {
  font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma,
    Arial, PingFang SC-Light, Microsoft YaHei;
}
input {
  background-color: transparent;
  border: 0;
}
button {
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  outline: none;
  background-color: transparent;
}

button:active {
  opacity: 0.6;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.justify-start {
  display: flex;
  justify-content: flex-start;
}
.justify-center {
  display: flex;
  justify-content: center;
}

.justify-end {
  display: flex;
  justify-content: flex-end;
}
.justify-evenly {
  display: flex;
  justify-content: space-evenly;
}
.justify-around {
  display: flex;
  justify-content: space-around;
}
.justify-between {
  display: flex;
  justify-content: space-between;
}
.align-start {
  display: flex;
  align-items: flex-start;
}
.align-center {
  display: flex;
  align-items: center;
}
.align-end {
  display: flex;
  align-items: flex-end;
}
* {
    padding: 0;
    margin: 0;
}

/**
 * base.css - 航洋无声
 * mail -  hangyangws@foxmail.com
 * weibo - http://weibo.com/512jj
 */

 html {
    /*标准字体大小设置 14 像素「rem 参照对象」*/
    font-size: 14px;
    /*滚动事件发生在 html 元素上；JS 中可以监听 html 的滚动*/
    overflow-y: auto;
    /*让 html 和浏览器窗口高度一致*/
    height: 100%;
    /*少数浏览器默认背景色为浅灰色，所以设置默认背景颜色为纯白*/
    background-color: #fff;
  }
  
  html,
  body {
    /*body 宽度大 html 度时，某些浏览器会出现内部滚动条；所以设置「html、body」宽度相同且「overflow-x: hidden」*/
    width: 100%;
    height: 100%;
    /*取消部分浏览器点击有阴影*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /*优化移动端滚动事件*/
    -webkit-overflow-scrolling: touch;
    /* overflow-scrolling: touch; */
  }
  
  body {
    /*设置基本字体配置*/
    font: 1rem 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft Yahei', Arial, sans-serif;
    font-family: PingFangSC-Regular, PingFang SC;
    /*让绝对定位元素，根据 body 定位*/
    position: relative;
    /*设置网页基本字体颜色为浅灰色*/
   // color: #666;
    /*使字体渲染更顺滑*/
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  
  
  /**
   * 移除常用标签的浏览器默认的「margin、padding」
   * pre、code、legend、fieldset、blockquote … 等标签不是很常用，所以就不一一列举，如果项目中使用到，可以自己单独写
   */
  
  body,
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  dl,
  dd,
  ul,
  ol,
  th,
  td,
  button,
  figure,
  input,
  textarea,
  form {
    margin: 0;
    padding: 0;
  }
  
  
  /**
   * 不同浏览器的 input、select、textarea 的盒子模型宽度计算方式不同，统一为最常见的 content-box
   */
  
  input,
  select,
  textarea {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
  }
  
  table {
    /*table 相邻单元格的边框间的距离设置为 0*/
    border-spacing: 0;
    /*默认情况下给 tr 设置 border 没有效果，如果 table 设置了边框为合并模式：「border-collapse: collapse;」就可以了*/
    border-collapse: collapse;
  }
  
  
  /**
   * 移除浏览器部分元素的默认边框
   * acronym、fieldset … 等其他标签不是很常用，就不会一一列举；如果项目中用到，可以自己单独写
   */
  
  img,
  input,
  button,
  textarea {
    border: none;
    /* -webkit-appearance: none; */
  }
  
  input {
    /*由于 input 默认不继承父元素的居中样式，所以设置：「text-align: inherit」*/
    text-align: inherit;
  }
  
  textarea {
    /*textarea 默认不可以放缩*/
    resize: none;
  }
  
  
  /**
   * 由于以下元素的部分属性没有继承父节点样式，所以声明这些元素的这些属性为父元素的属性
   * 取消这些元素 `outline` 样式
   */
  
  a,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  input,
  select,
  button,
  option,
  textarea,
  optgroup {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    color: inherit;
    outline: none;
  }
  
  
  /**
   * 取消超链接元素的默认文字装饰
   * 另外 del、ins 标签的中划线、下划线还是挺好的，就不去掉
   */
  
  a {
    text-decoration: none;
  }
  
  ol,
  ul {
    /*开发中 UI 设计的列表都是和原生的样式差太多，所以直接给取消 ol，ul 默认列表样式*/
    list-style: none;
  }
  
  button,
  input[type='submit'],
  input[type='button'] {
    /*鼠标经过是「小手」形状表示可点击*/
    cursor: pointer;
  }
  
  input::-moz-focus-inner {
    /*取消火狐浏览器部分版本 input 聚焦时默认的「padding、border」*/
    padding: 0;
    border: 0;
  }
  
  
  /*取消部分浏览器数字输入控件的操作按钮*/
  
  input[type='number'] {
    -moz-appearance: textfield;
  }
  
  input[type=number]::-webkit-inner-spin-button,
  input[type=number]::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  
  
  /*输入控件 placeholder 色设置 #999*/
  
  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    color: #999;
  }
  
  input:-moz-placeholder,
  textarea:-moz-placeholder {
    color: #999;
  }
  
  input::-moz-placeholder,
  textarea::-moz-placeholder {
    color: #999;
  }
  
  input:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    color: #999;
  }





.lunbo {
	position: relative;
	width: 100%;
	height: 450px !important;
	margin: 0 auto;
	overflow: hidden;
        top: -15px;
}
.lunbo  .swiper {
       width: 100%;
       height: 450px;
}
.lunbo #b04 {
	width: 100%;
	height: 450px !important;
	border-radius: 4px;
	behavior: url(../pie/PIE.htc);
}

.lunbo #b04 .dots {
    position: absolute;
    right: 0;
    left: 0;
    width: 75px;
    bottom: 34px;
    z-index: 1;
    margin: 0 auto;
}

.lunbo #b04 .dots li {
	width: 12px;
	display: inline-block;
	height: 12px;
	background-color: #fff;
	opacity: 0.5;
	border-radius: 50%;
	behavior: url(../pie/PIE.htc);
	cursor: pointer;
	margin-right: 10px;
}

.lunbo #b04 .dots li.active {
	width: 20px;
	opacity: 1;
	border-radius: 6px;
	behavior: url(../pie/PIE.htc);
}

.lunbo #b04 .arrow {
	position: absolute;
	top: 200px;
}

.lunbo #b04 #al {
	left: 50px;
	top: 195px;
	color: #fff;
	font-size: 60px;
}


.lunbo #b04 #ar {
	right: 50px;
	top: 195px;
	color: #fff;
	font-size: 60px;
}


 .lunbo #b04 ul{
	display: flex;
}

.lunbo #b04 ul li {
	/* float: left; */
	flex: 1;
}

.lunbo .slider-content {
	border-radius: 4px;
	behavior: url(../../src/pie/PIE.htc);
}

.lunbo #b04 ul li a {
	display: block;
	position: relative;
}

 .lunbo #b04 ul li .text {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 80px;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9;
	line-height: 80px;
	color: #fff;
	font-weight: bolder;
	font-size: 28px;
	left: 0;
}

.lunbo #b04 ul li .text:hover {
	color: #E30B20;
}

.lunbo .text .special {
	width: 80px;
	height: 35px;
	background-color: #E30B20;
	color: #fff;
	font-size: 16px;
	font-weight: bolder;
	line-height: 35px;
	text-align: center;
	border-radius: 4px;
	display: inline-block
}



.jSlider .navigator .prev {
	margin-left: -50px
}

.lunbo .jSlider .navigator .next {
	margin-right: -50px
}

.lunbo .jSlider .controller .indicator {
	text-align: right;
	margin-right: 20px;
	z-index: 10
}

.section .typeArea .lunbo .jSlider .controller .indicator span {
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#66000000, endColorstr=#66000000)
}

.lunbo .jSlider .controller .indicator .selected {
	background-color: #fff;
	width: 20px
}


.newsInfoBox {
       width: 100%;
       height: 444px;
       background-color:  #f0f0f0;
       position: relative;
       top: -15px;
       padding-top: 15px;
}
.newsInfo{
       width: 1200px;
       height: 430px;
       margin: auto;
}
.newsImgList {
       float: left;
       width: 423px;
       box-sizing: border-box;
       padding-top:12px;
       margin-right: 30px;
}
.newsImgList_box {
       width: 423px;
       height: 282px;
       position: relative;
       overflow: hidden;
}
.newsImgList_con {
      width: 100%;
      height: 100%;
      position: relative;
}
.newsImgList_con  img {
      display: none;
     transform: scale(1);
    transform: rotateY(0);
    -webkit-transition: transform .3s ease-in,top .3s,left .3s;
    -moz-transition: transform .3s ease-in,top .3s,left .3s;
    transition: transform .3s ease-in,top .3s,left .3s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    animation-fill-mode: both;
}
.newsImgList_con  img:hover {
     transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    transition: 0.3s;
}
.newsImgList_con  img:nth-child(1) {
      display: block;
}
.newsImgList_tip {
     position: absolute;
     left: 0;
     right: 0;
     bottom: 0;
     height: 39px;
     padding: 0 10px;
     background-color: rgba(0,0,0,.8);
}
.newsImgList_tip  p {
     display: none;
     padding: 10px 0;
     font-size: 14px;
     color: #fff;
     
}
.newsImgList_tip  p:nth-child(1) {
      display: inline-block;
}
.newsImgList_tip > ul {
       float:right;
       padding-top: 10px;
}
.newsImgList_tip > ul  > li {
      float: left;
      width: 20px;
      height: 20px;
      margin-right: 10px;
      text-align: center;
      line-height: 20px;
      background-color: rgba(255, 255, 255, 1);
      color: #333 ;
      font-size: 12px;
      cursor: pointer;
}
.newsImgList_tip > ul  > li.selectedActive {
    background-color: rgba(140,140,140, 1) !important;
    color: rgba(255,255,255,1) !important;
}



.newsInfoList {
       float: left;
       width:363px;
       box-sizing: border-box;
       padding-top:71px;
}
.newsInfoList_box p {
     padding: 12.5px 0;
     height: 46.43px;
     box-sizing: border-box;
}
.newsInfoList_box p  a{
     display: inline-block;
     height: 20px;
     width: 100%;
     overflow: hidden;
     text-overflow: ellipsis;
     white-space: nowrap;
     color: rgb(136, 136, 136);
     font-family: 微软雅黑;
     font-size: 14px;
     font-weight: normal;
     font-style: normal;
     line-height: 20px;
}














.meettingList {
        float: right;
        width:363px;
        box-sizing: border-box;
        padding-top:12px;
}

.newsImgList_tit, .meettingList_tit {
       width: 84px;
       height:42px;
       text-align: left;
       line-height: 42px;
       color: rgb(102, 102, 102);
       font-family: 微软雅黑;
       font-size: 15px;
       font-weight: normal;
       font-style: normal;
       cursor: pointer;
}
.newsImgList_underLine, .meettingList_underLine {
      width:40px;
      height:2px;
      background-color: rgb(12, 98, 168);
      margin-bottom: 25px;
}
.meettingList_underLine {
      margin-bottom: 15px;
}
.meettingList_box p {
     padding: 12.5px 0;
     height: 46.43px;
     box-sizing: border-box;
}
.meettingList_box p  a{
     display: inline-block;
     height: 20px;
     width: 100%;
     overflow: hidden;
     text-overflow: ellipsis;
     white-space: nowrap;
     color: rgb(136, 136, 136);
     font-family: 微软雅黑;
     font-size: 14px;
     font-weight: normal;
     font-style: normal;
     line-height: 20px;
}



/****室内时间信息*****/
.evaBox {
     width: 100%;
     background-color:#FFFFFF;
}
.evaBox_con {
      width: 1200px;
      margin:0 auto;
      padding-top: 62px;
}
.evaBox_con_header {
      text-align: center;
      font-family: 微软雅黑;
      color: #0c62a8;
      font-weight: bold;
      width:180px;
      height: 40px;
      position: relative;
      font-size: 30px;
      margin: auto;
}
.evaBox_con_header:after {
      content: "";
      position: absolute;
      background-color: rgb(12, 98, 168);
      height: 3px;
      width:84px;
      top:56px;
      left: 0;
      right: 0;
      margin:  0 auto;
}
.evaBox_con_underLine {
       width: 490px;
       margin:16px auto 25px;
       height: 1px;
       background-color: #a0a09f;
       transform: scaleY(0.5);
}
.evaBox_con_detailsBox {
        margin-top: 20px;
}
.evaBox_con_loginIn {
       width: 293px;
       height: 428px;
       display: inline-block;
}
.evaBox_con_loginInCon {
       width: 272px;
       height: 422px;
       background-repeat: no-repeat;
       background-attachment: initial; 
       background-position: 0 0;
       background-size: 100% 100%;
       background-image:url('/r/cms/sdslcjyzx/sdccl/img/20190121093702214.jpg');   
       position: relative;
}
.evaBox_con_loginInCon_header {
    width: 119px;
    height: 42px;
    left: 23.5px;
    top: 31.5px;
    position: absolute;
}
.evaBox_con_loginInCon_header > span {
    height: 42px;
    line-height: 42px;
    color: rgb(255, 255, 255);
    text-align: center;
    font-family: 微软雅黑;
    font-size: 24px;
    font-weight: bold;
    font-style: normal;
    box-shadow: 0 0 0 0 transparent;
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    cursor:pointer;
}

.evaBox_con_loginInCon_header > span:hover{
    color: rgb(102, 102, 102);
}

.evaBox_con_loginInCon_underLine{
    width: 49px;
    height: 25px;
    left: 34.5px;
    top: calc(70.5px + 11px);
    position: absolute;
}

.evaBox_con_loginInCon_underLine > div{
    background-color: rgb(255, 255, 255);
    height: 3px;
}
.evaBox_con_loginInCon_eqaBtn{
    width: 193px;
    height: 42px;
    left: 34.5px;
    top: 109.5px;
    position: absolute;
}
.evaBox_con_loginInCon_qualabBtn{
    width: 193px;
    height: 42px;
    left: 34.5px;
    top: 159px;
    position: absolute;
}

.evaBox_con_loginInCon_eqaBtn > a,.evaBox_con_loginInCon_qualabBtn > a,.evaBox_con_loginInCon_biqasBtn>a{
     height: 42px;
    line-height: 42px;
    color: rgba(255,255,255,1);
    border-width: 0px;
    border-style: solid;
    border-color: rgba(33, 150, 243, 1);
    border-radius: 0;
    background-color: rgb(31, 126, 203);
    box-shadow: 0 0 0 0 transparent;
    display: block;
}
.evaBox_con_loginInCon_eqaBtn > a:hover ,.evaBox_con_loginInCon_qualabBtn > a:hover,.evaBox_con_loginInCon_biqasBtn>a:hover{
    background-color: rgb(53, 150, 230);
    color: #ffffff;
    border-style: solid;
    border-color: rgba(26, 121, 196, 0);
    border-radius: 0;
}

.evaBox_con_loginInCon_eqaBtn > a>span,.evaBox_con_loginInCon_qualabBtn > a>span,.evaBox_con_loginInCon_biqasBtn>a>span{
    color: rgba(255,255,255,1);
    text-align: center;
    font-family: 微软雅黑;
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}
.evaBox_con_loginInCon_tip {
    width: 195px;
    height: 48px;
    left: 36.5px;
    top: 208px;
    position: absolute;
}
.evaBox_con_loginInCon_reportTip {
    width: 195px;
    height: 72px;
    left: 36px;
    top: 321.5px;
    position: absolute;
}
.evaBox_con_loginInCon_tip > p,.evaBox_con_loginInCon_reportTip > p {
    text-align: center;
    line-height: 1.75;
    color: #ffffff;
    font-size: 14px;
    font-family: 微软雅黑,Microsoft YaHei,STHeiti Light;
    white-space: normal;
}
.evaBox_con_loginInCon_biqasBtn {
    width: 193px;
    height: 42px;
    left: 34.5px;
    top: 268.5px;
    position: absolute;
}









.evaBox_con_detailsInfo {
       width: 893px;
       height: 428px;
       float: right;
}
.evaBox_con_detailsClass {
    height: 45px;
}
.evaBox_con_detailsClass > p {
    width: 441.5px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color:#fff;
    border-color: #dddddd;
    border-style: solid;
    border-width: 0px;
    border-bottom: none;
    box-sizing: border-box;
    font-weight: normal;
    font-style: normal;
    font-family: 微软雅黑;
    font-size: 16px;
    background-color: rgb(11, 97, 169);
    float: left;
    cursor:pointer;
}
.evaBox_con_detailsClass > p:nth-child(1) {
     margin-right: 10px;
}
.evaBox_con_detailsClass > p:hover {
     background-color: rgb(230, 2, 17);
}
.evaBox_con_detailsClass > p.slideActive {
    background-color: rgb(230, 2, 17);
}
.evaBox_con_detailsCon {
    width: 100%;
    height: 383px;
    overflow: hidden;
    position: relative;
}
.evaBox_con_detailsCon > div {
       width:100%;
       position: absolute;
       top: 0;
       left: 0;
}
.evaBox_con_detailsCon > div > p {
     padding-left: 2px;
}
.evaBox_con_detailsCon > div > p > a {
     display:inline-block;
     width: 100%;
     padding:14px 0;
     font-family: Arial,Helvetica,sans-serif;
     font-weight: 400;
     color: inherit;
     font-size: 14px;
}
.evaBox_con_detailsCon > div > p > a > span {
     float: right;
     font-family: Arial,Helvetica,sans-serif;
     font-weight: 400;
     color: inherit;
     font-size: 14px;
}
.evaBox_con_detailsCon > div:nth-child(1) > p > a ,.evaBox_con_detailsCon > div:nth-child(1) > p > a >span{
      height: 22px;
      line-height:22px;
}
.evaBox_con_detailsCon > div:nth-child(2) {
     padding-top:13px;
     left: 893px;
}
.evaBox_con_detailsCon > div:nth-child(2) > p > a,.evaBox_con_detailsCon > div:nth-child(2) > p > a >span {
      height: 20px;
      line-height:20px;
}

/******************资料下载 政策法规*******************/
.bgColoroverlay {
      margin-top: 36px;
      width: 100%;
}
.bgColoroverlay_empty {
     width:100%;
     height: 267px;
}
.bgColoroverlay_box {
      padding-top:22px;
      width: 1200px;
      margin: 0 auto;
      height:453px;
}
.bgColoroverlay_box_down {
      float:left;
}
.bgColoroverlay_box_law{
      float:right;
}
.bgColoroverlay_box_con  {
     width: 580px;
     height: 400px;
     position: relative;
}
.bgColoroverlay_box_conHeader {
     font-size:26px;
     color:#0c62a8;
     font-family: 微软雅黑;
     margin-bottom: 13px;
}
.bgColoroverlay_box_conUnderLine {
      width:70px;
      height:3px;
      margin-bottom: 27px;
      background:rgb(12, 98, 168);
}
.bgColoroverlay_box_conList {
     width: 580px;
     height: 320px;
    transform: translate(0px, -100px);
    left: 0;
    top: 180px;
    position: absolute;
    animation-duration: 0.5s;
    visibility: inherit;
    background-color:rgb(248,248,248);
    padding-top:8px;
    padding-left: 9px;
    box-sizing: border-box;
}
.bgColoroverlay_box_conList > ul {
    width: 535px;
    height: 314px;
}
.bgColoroverlay_box_conList > ul  > li {
      width: 535px;
      height: 97px;
      border-bottom:1px dashed rgba(179, 179, 179, 0.46);
      margin-bottom: 10px;
}
.bgColoroverlay_box_conList > ul  > li  > a {
       display: block;
       height: 100%;
       width: 100%;
}

.bgColoroverlay_box_conList > ul  > li:hover  .showDate {
     background-color: rgb(42, 140, 219);
}
.showDate {
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center;
      -webkit-justify-content: center;
      justify-content: center;
      width: 85px;
      height: 85px;
      text-align: center;
      margin-right: 10px;
      background-color: rgb(12, 98, 168);
      float: left;
      -webkit-box-orient: vertical;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
}
.showDate  .listDatesData {
    color: rgb(255, 255, 255);
    font-family: 微软雅黑;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
}
.showDate  .listDatesmonth {
    color: rgb(255, 255, 255);
    font-family: Microsoft YaHei,Arial;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
}
.downDetailsBox {
      display:inline-block;
      width: 440px;
      height: 97px;
}
.downDetailsTit {
      width: 440px;
      height: 28px;
      font-weight: inherit;
      color: rgb(51, 51, 51);
      font-family: 微软雅黑;
      font-size: 16px;
      font-weight: normal;
      font-style: normal;
      line-height: 20px;
}

.downDetailsCon{
    width: 100%;
    height: 61px;
    box-sizing: border-box;
    margin-top: 8px;
    color: rgb(106, 106, 106);
    font-family: 微软雅黑;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    line-height: 24px;
}




/**** 友情链接  ****/
.friendShipLinkList_box {
       height:121px;
       width: 100%;
       background: rgba(12, 98, 168, 0.58);
}
.friendShipLinkList_con {
       height:121px;
       width: 1200px;
       margin: 0 auto;
       padding-left: 36.5px;
       padding-right: 36.5px;
       box-sizing: border-box;
}
.friendShipLinkList_tit {
      width: 80px;
      display: inline-block;
      font-size:16px;
      color:#ffffff;
      font-family:微软雅黑;
      padding-top: 28px;
}
.friendShipLinkList {
      float: right;
      width: calc(100% - 80px);
      padding-top: 19px;
}
.friendShipLinkList > p {
    font-size: 15px;
    color: #fff;
    float: left;
    margin-right: 25px;
    white-space: nowrap;
    line-height: 42px;
}


.friendShipLinkList_labBox {
       width: 100%;
       background: rgb(248,248,248);
}
.friendShipLinkList_labCon {
       width: 1201px;
       margin: 0 auto;
       box-sizing: border-box;
       padding:28px 0 0;
}
.friendShipLinkList_lab > ul{
       width: 100%;
}
.friendShipLinkList_lab > ul > li {
      width: 200.25px;
      margin: 0 50px 16px;
      float: left;
}
.friendShipLinkList_lab > ul > li >a {
    display: inline-block;
    height: 20px;
    color: rgb(153, 153, 153);
    text-align: left;
    font-family: 微软雅黑;
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
    line-height: 20px;
    float:left;
}


.swiper-button-prev {
     left: 50px !important;
     color: #fff;
}
.swiper-button-next {
     right: 50px !important;
     color: #fff;
}
.swiper-pagination-bullet {
      width: 10px;
      height: 10px;
}
.swiper-pagination-bullet-active {
     background: #fff;
}