#page{
  background-color: #fff;
  box-sizing: border-box;
}
.topContent{
  padding: 10px;
}
.searchBox{
  width: 100%;
  display: flex;
  background-color: #f3f3f3;
  padding: 4px 10px;
  border-radius: 50px;
  align-items: center;
}
.searchBox .searchBoxLeft{
  flex: 1; 
}
.searchBox .searchBoxLeft input{
  margin-bottom: 0;
  background-color: #f3f3f3;
}

.searchBox .searchBoxLeft input::-webkit-input-placeholder{
	font-size:12px;
}
.searchBox .searchBoxLeft input:-moz-placeholder{
	font-size:12px;
}
.searchBox .searchBoxLeft input::moz-placeholder{
	font-size:12px;
}
.searchBox .searchBoxLeft input:-ms-input-placeholder{
    font-size:12px;
}

.searchBoxRight{
  color: #0060af;
  font-weight: bold;
}

.remark{
  background: rgb(0,76,182);
  background: linear-gradient(300deg, rgba(0,76,182,1) 0%, rgba(14,139,245,1) 100%);
  padding: 10px;
}

.remark .remark-content{
  padding: 12px;
  border: 1px solid #fff;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.remark-title{
  margin-bottom: 10px;
  position: relative;
  transform: skew(-10deg);
  text-shadow:2px 2px 1px rgba(0,0,0,0.2);
  font-weight: bold;
}

.remark-title::after, .remark-title::before{
  content: '';
  width: 60px;
  height: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.remark-title::after{
  right: 40px;
  background: rgb(255,255,255);
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.remark-title::before{
  left: 40px;
  background: rgb(255,255,255);
  background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.remark-text{
  font-size: 12px;
}
.homeimg{
  width: 100%;
  margin-bottom: 10px;
}
.homeimg img{
  width: 100%;
}
.swiper{
     margin: 10px;
    position: relative;
    background: rgb(0,76,182);
    background: linear-gradient(260deg, rgba(0,76,182,1) 0%, rgba(14,139,245,1) 100%);
    border-radius: 8px;
    padding-bottom:30px;
}
.swiper::before{
    display: block;
    position: absolute;
    width:100%;
    height:100%;
    content:'';
    background: url('../../imgs/sliderbg.png') 140% 80% no-repeat;
    background-size: 70%;
}
.swiper .mui-slider-item{
  min-height: 400px;
  padding: 10px;
}
.swiper .swiper-content{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.swiper .swiper-title{
  color: #fff;
  font-size: 26px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.swiper .swiper-content .btns {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  height: 100%;
  width: 100%;
}
.swiper .swiper-content .btns .btns-item {
  flex: 0 0 60px;
  background-image: url(../../imgs/btnbg.png);
  width: 96%;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 19px;
  text-shadow:2px 2px 1px rgba(0,0,0,0.2);
  padding-right: 15px;
}
.dot{
  position: absolute;
  color: #fff;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  display: flex;
}
.dot .dot-item{
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgb(195,243,148);
  background: linear-gradient(0deg, rgba(195,243,148,1) 0%, rgba(96,237,202,1) 50%, rgba(57,182,223,1) 100%);
  opacity: 0.5;
}
.dot .dot-item.dotActive{
  opacity: 1;
}

.modal{
  border-radius: 8px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
}
.modal .content{
  background-color: #fff;
  position: absolute;
  width: 90%;
  box-sizing: border-box;
  z-index: 999;
  border-radius: 8px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 30px 30px 40px 30px;
}
.close{
  position: absolute;
  top: 10px;
  right: 10px;
  font-weight: bold;
}

.modallist {
  margin-top: 20px;
}

.modallist p{
        margin-bottom: 15px;
    font-size: 14px;
    color: #0060af;
    position: relative;
    text-indent: 20px;
}

.modallist p::before {
    content: '';
    position: absolute;
    background-image: url(../../imgs/jiantou.png);
    width: 10px;
    height: 10px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    left: 0;
    top: 5px;
}

.modallist-ul{
  padding: 0;
  margin: 0;
  list-style: none;
}
.modallist-li{
  margin-bottom: 15px;
  font-size: 14px;
  color: #0060af;
  position: relative;
  text-indent: 20px;
}
.modallist-li::before{
  content: '';
  position: absolute;
  background-image: url(../../imgs/jiantou.png);
  width: 10px;
  height: 10px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  left:0;
  top: 5px;
}

.modelbtn{
  width: 100%;
  display: flex;
  justify-content: center;
}
.modelbtn button {
  background-color: #0060af;
  color: #fff;
  width: 80%;
  border-radius: 50px;
  border: none;
}