body,
html {
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.page {
  width: 100%;
  min-width: 1200px;
  min-height: 100%;
  background: url("../img/sy_banner.jpg") no-repeat;
  background-size: 100% 100%;
  position: relative;
  overflow: hidden;
}

.main {
  width: 1300px;
  margin: 5% auto 0;
  /* overflow: hidden; */
  padding-bottom: 50px;
  /* background-color: palegoldenrod; */
}

.main .top {
  width: 800px;
  margin: 0 auto;
}

.main .top img {
  display: block;
  width: 100%;
}

.mainArea {
  width: 1200px;
  padding: 25px 0px;
  box-sizing: border-box;
  border-radius: 10px;
  margin: 100px auto;
  background-color: #fff;
  display: flex;
}

/* 登录 */
.login_content {
  width: 45%;
  border-right: 2px solid #eeeeee;
  box-sizing: border-box;
  padding: 30px 40px 45px;
  box-sizing: border-box;

}

/* title */
.content_title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aa4241;
}

.content_title .tips {
  margin: 0 10px;
  letter-spacing: 2px;
  font-size: 23px;
}

.content_title .circle {
  width: 5px;
  height: 5px;
  background-color: #aa4241;
  border-radius: 50%;
}


/* login_area */
#login_area {
  margin-top: 55px;

}

/* input */
.area_item {
  width: 100%;
  margin-bottom: 25px;
}

.area_item input {
  padding: 0 15px;
  display: block;
  width: 100%;
  height: 60px;
  background-color: #eeeeee;
  border-radius: 6px;
  box-sizing: border-box;
  border: none;
  outline: none;
  font-size: 19px;
  color: #333333;
}

.area_item input::placeholder {
  color: #838383;
}


/* 提交 */
.subBtn {
  display: block;
  width: 100%;
  height: 65px;
  background-image: linear-gradient(#ec6661, #a82420);
  text-align: center;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 20px;
  color: #ffffff;
  line-height: 65px;
  cursor: pointer;
  margin-top: 40px;
}

/* 底部点击弹框 */
#loginMsg {
  margin-top: 40px;
  /* background-color: lightblue; */

}

.msg_left {
  width: 100%;
}

.msg_left a {
  font-size: 16px;
  text-decoration: underline;
}

.msg_right {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}

.msg_right .foget {
  color: #999999;
}

.bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .7);
  z-index: 99;
}

.bgResult {
  width: 500px;
  height: 500px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 1px 1px 50px rgba(0, 0, 0, .3);
}

.bgResult .close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 24px;
}

/* 资讯公告 */

.announce_content {
  width: 55%;
  /* background-color: lightcoral; */
}

.contentBox {
  width: 95%;
  margin-left: 5%;
  padding-right: 3px;
  box-sizing: border-box;
  /* background-color: lightblue; */
}

.boxTitle {
  width: 142px;
  margin: 0 auto;
}

.boxTitle img {
  width: 100%;
  height: auto;
  display: block;
}



.newsArea {
  /* background-color:pink; */
  height: 440px;
  margin-top: 30px;
  overflow-y: scroll;
  scrollbar-arrow-color: #e6e6e6;
  /*顶部/底部图标颜色*/
  scrollbar-face-color: #e6e6e6;
  /*滚动条颜色*/
  scrollbar-shadow-color: #e6e6e6;
}


/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
.newsArea::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.newsArea::-ms-scrollbar {
  width: 4px;
  height: 4px;
}

.newsArea::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #e6e6e6;
}

.newsArea::-ms-scrollbar-thumb {
  border-radius: 5px;
  -ms-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #e6e6e6;
}





.newsEle {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-right: 10px;
  box-sizing: border-box;
}

.ele_left {
  width: 25%;
  height: 90px;
  /* margin-right: 30px; */
  background-image: linear-gradient(#ec6661, #a82420);
  position: relative;
  flex-shrink: 0;
}

.ele_left .dateBox {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* background-color: pink; */
  text-align: center;
}

.dateBox span {
  display: block;
  font-size: 25px;
  color: #fff;
}

.dateBox span:nth-child(2) {
  font-size: 19px;
  margin-top: 10px;
}

.ele_left img {
  width: 100%;
  height: 100%;
  display: block;
}

.ele_left .modalBg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(226, 95, 133, .6);
  /* display: none; */
  opacity: 0;
  transition: all .3s linear;
}

.ele_left:hover .modalBg {
  opacity: 1;
}

.searchBtn {
  position: relative;
  top: 30px;
  left: 50%;
  transform: translate(-50%);
  width: 30px;
  height: 30px;
  /* background-color: orange; */
}

.searchBtn img {
  width: 100%;
  height: 100%;
  display: block;
}





.ele_right {
  width: 72%;
  margin-left: 3%;
  height: 90px;
  padding: 10px;
  box-sizing: border-box;
  /* background-color: palegoldenrod; */

}

.ele_right:hover {
  background-color: #eeeeee;
}

.ele_right .ele_title {
  width: 100%;
  /* background-color: orange; */
  line-height: 26px;
  font-size: 17px;
  text-align: justify;
  position: relative;
  top: -7px;
}
.ele_right .ele_time{
  color: #b5b5b5;
  font-size: 13px;
  margin-top: 10px;
}
.banquan {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 8%;
  z-index: 12;
}

.banquan p {
  font-size: 16px;
  text-align: center;
  width: 100%;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #fff;
}




/* 2023.8.30适配手机 */
@media only screen and (max-device-width : 768px) {

  .page {
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    padding-bottom: 30px;
  }

  .main {
    width: 92%;
    /* background-color: palegoldenrod; */

  }

  .main .top {
    width: 90%;
    margin: 100px auto 0;
  }

  .main .top img {
    display: block;
    width: 100%;
  }
  .mainArea{
    width: 100%;
    flex-direction: column;
    margin: 50px auto 0;
  }
  .login_content {
    width: 100%;
    padding: 0 20px 20px;
    border-right: none;
    border-bottom: 2px solid #eeeeee;
  }

  .content_title .tips {
    font-size: 18px;
  }
  .announce_content {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
   
  }
  #login_area {
    margin-top: 30px;
  }
  .area_item input{
    height: 50px;
    font-size: 17px;
  }
  .area_item input::placeholder{
    font-size:17px ;
  }
  .subBtn {
    height: 55px;
    line-height: 55px;
  }
  .msg_right{
    margin-top: 30px;
  }
  .contentBox{
    width: 100%;
    margin-left: 0;
  }
  .boxTitle{
    width: 35%;
    margin-top: 20px;
  }
  .newsArea{
    margin-top: 20px;
    height: 100%;
    overflow-y: auto;
  }

  .newsEle{
    padding-right: 0;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
  }
  .dateBox span{
    font-size: 20px;
  }
  .dateBox span:nth-child(2) {
    font-size: 14px;
    margin-top: 10px;
}
.ele_left{
  height: 70px;
}
.ele_right {
  height: 70px;
  /* background-color: palegoldenrod; */
  padding: 10px 5px;
}
  .ele_right .ele_title{
    font-size: 13px;
    align-self: flex-start;
    line-height: 20px;
  }
  .ele_right .ele_time{
    display: none;
  }

  .bgResult {
    width: 90%;
  }
  .banquan{
    bottom: 2%;
  }

  .banquan p {
    font-size: 14px;
  } 
}
@media only screen and (max-device-width : 650px) {

  .page {
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    padding-bottom: 30px;
  }

  .main {
    width: 92%;
    /* background-color: palegoldenrod; */

  }

  .main .top {
    width: 90%;
    margin: 100px auto 0;
  }

  .main .top img {
    display: block;
    width: 100%;
  }
  .mainArea{
    width: 100%;
    flex-direction: column;
    margin: 50px auto 0;
  }
  .login_content {
    width: 100%;
    padding: 0 20px 20px;
    border-right: none;
    border-bottom: 2px solid #eeeeee;
  }

  .content_title .tips {
    font-size: 18px;
  }
  .announce_content {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
   
  }
  #login_area {
    margin-top: 30px;
  }
  .area_item input{
    height: 50px;
    font-size: 17px;
  }
  .area_item input::placeholder{
    font-size:17px ;
  }
  .subBtn {
    height: 55px;
    line-height: 55px;
  }
  .msg_right{
    margin-top: 30px;
  }
  .contentBox{
    width: 100%;
    margin-left: 0;
  }
  .boxTitle{
    width: 35%;
    margin-top: 20px;
  }
  .newsArea{
    margin-top: 20px;
    height: 100%;
    overflow-y: auto;
  }

  .newsEle{
    padding-right: 0;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
  }
  .dateBox span{
    font-size: 20px;
  }
  .dateBox span:nth-child(2) {
    font-size: 14px;
    margin-top: 10px;
}
.ele_left{
  height: 70px;
}
.ele_right {
  height: 70px;
  /* background-color: palegoldenrod; */
  padding: 10px 5px;
}
  .ele_right .ele_title{
    font-size: 13px;
    align-self: flex-start;
    line-height: 20px;
  }
  .ele_right .ele_time{
    display: none;
  }

  .bgResult {
    width: 90%;
  }
  .banquan{
    bottom: 2%;
  }

  .banquan p {
    font-size: 14px;
  } 
}
@media only screen and (max-device-width : 500px) {

  .page {
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    padding-bottom: 30px;
  }

  .main {
    width: 92%;
    /* background-color: palegoldenrod; */

  }

  .main .top {
    width: 90%;
    margin: 100px auto 0;
  }

  .main .top img {
    display: block;
    width: 100%;
  }
  .mainArea{
    width: 100%;
    flex-direction: column;
    margin: 50px auto 0;
  }
  .login_content {
    width: 100%;
    padding: 0 20px 20px;
    border-right: none;
    border-bottom: 2px solid #eeeeee;
  }

  .content_title .tips {
    font-size: 18px;
  }
  .announce_content {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
   
  }
  #login_area {
    margin-top: 30px;
  }
  .area_item input{
    height: 50px;
    font-size: 17px;
  }
  .area_item input::placeholder{
    font-size:17px ;
  }
  .subBtn {
    height: 55px;
    line-height: 55px;
  }
  .msg_right{
    margin-top: 30px;
  }
  .contentBox{
    width: 100%;
    margin-left: 0;
  }
  .boxTitle{
    width: 35%;
    margin-top: 20px;
  }
  .newsArea{
    margin-top: 20px;
    height: 100%;
    overflow-y: auto;
  }

  .newsEle{
    padding-right: 0;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
  }
  .dateBox span{
    font-size: 20px;
  }
  .dateBox span:nth-child(2) {
    font-size: 14px;
    margin-top: 10px;
}
.ele_left{
  height: 70px;
}
.ele_right {
  height: 70px;
  /* background-color: palegoldenrod; */
  padding: 10px 5px;
}
  .ele_right .ele_title{
    font-size: 13px;
    align-self: flex-start;
    line-height: 20px;
  }
  .ele_right .ele_time{
    display: none;
  }

  .bgResult {
    width: 90%;
  }
  .banquan{
    bottom: 2%;
  }

  .banquan p {
    font-size: 14px;
  } 
}