/* 修改滚动条宽度和颜色 */
::-webkit-scrollbar {
  border-radius: 10px;
  width: 10px;
  height: 10px;
  background-color: #f5f5f5;
}
/* 修改滚动条 thumb 的颜色和形状 */
::-webkit-scrollbar-thumb {
  background-color: #c6c6c6;
  border-radius: 20px;
}
/* 修改滚动条 hover 状态下的 thumb 颜色 */
::-webkit-scrollbar-thumb:hover {
  background-color: #c6c6c6;
}
/* 修改滚动条在 active 状态下 thumb 的颜色 */
::-webkit-scrollbar-thumb:active {
  background-color: #c6c6c6;
}
body {
  margin: 0;
  padding: 0;
}
#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.whole {
  width: 100%;
}
.whole .top {
  width: 100%;
  height: 960px;
  background-image: url('../img/background.png');
  /* background-repeat: no-repeat; */
  /* background-size: 100% 100%; */
  background-size: cover;
}
.whole .top .logo {
  padding: 32px 0 0 120px;
  width: 68px;
}
.whole .top .phoneimg {
  justify-content: space-between;
  display: flex;
  padding: 88px 115px;
}
.whole .top .phoneimg .appimg {
  margin-top: 70px;
  width: 290px;
  height: 628px;
}
.whole .top .phoneimg .appimgs {
  width: 290px;
  /* height: 628px; */
}
.whole .top .phoneimg img {
  border-radius: 30px;
  border: 5px solid #fff;
  width: 100%;
  /* height: 440px;
					object-fit: cover; */
}
.whole .logo img {
  width: 100%;
  height: 70px;
  object-fit: contain;
}
.whole .mid {
  background: #06113b;
  display: flex;
  justify-content: space-between;
  padding: 120px 160px;
}
.whole .mid .mid_left .mid_head .mid_logo {
  width: 111px;
  height: 111px;
}
.whole .mid .mid_left .mid_head .mid_logo img {
  width: 100%;
  object-fit: cover;
}
.whole .mid .mid_left .mid_head .logo_name {
  padding: 23px 0 63px 0;
  font-size: 16px;
  text-align: left;
  color: #fff;
}
.whole .mid .mid_left .mid_head .logo_name p {
  margin: 0;
  font-family: "Microsoft YaHei";
  font-weight: normal;
  font-size: 36px;
  text-align: left;
  color: #fff;
}
.whole .mid .mid_left .app_version {
  display: flex;
  align-items: center;
}
.whole .mid .mid_left .app_version .version_down {
  text-align: center;
  cursor: pointer;
  margin-right: 40px;
  width: 180px;
  /* 	height: 60px; */
  padding: 10px 0;
  border-radius: 4px;
  background: #408fff00;
  border: 1px solid #408fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whole .mid .mid_left .app_version .version_down .down_txt {
  font-family: "Microsoft YaHei";
  font-weight: normal;
  font-size: 16px;
  color: #fff;
  padding-left: 10px;
}
.whole .mid .mid_left .app_version .version_down .down_txted {
  font-family: "Microsoft YaHei";
  font-weight: normal;
  font-size: 16px;
  color: #408FFF;
  padding-left: 10px;
}
.whole .mid .mid_left .app_version .version_down img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}
.whole .mid .mid_left .app_version :last-child {
  margin-right: 0;
}
.whole .mid .mid_left .down_fun .down_href {
  padding: 40px 0;
  font-family: "Microsoft YaHei";
  font-weight: normal;
  font-size: 16px;
  text-align: left;
  color: #408fff;
}
.whole .mid .mid_left .down_fun .down_href a {
  text-decoration: none;
}
.whole .mid .mid_left .down_fun .down_code {
  width: 400px;
  height: 400px;
  border-radius: 20px;
  background: #fff;
}
.whole .mid .mid_left .down_fun .down_code img {
  width: 380px;
  margin: 10px;
  height: 380px;
}
.whole .mid .mid_right {
  width: 1000px;
}
.whole .mid .mid_right .title {
  padding-top: 14px;
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
  font-family: "Microsoft YaHei";
  font-weight: normal;
  font-size: 24px;
  text-align: left;
  color: #fff;
  margin-bottom: 20px;
}
.whole .mid .mid_right .newslist {
  padding-top: 1px;
  overflow-y: scroll;
  height: 740px;
  /* 设置元素高度 */
}
.whole .mid .mid_right .newslist .listone_of {
  cursor: pointer;
  margin-top: 20px;
  display: flex;
  align-items: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
}
.whole .mid .mid_right .newslist .listone_of .oneof_l {
  width: 90px;
  height: 90px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  font-family: "PingFang SC";
  font-weight: normal;
  font-size: 14px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.whole .mid .mid_right .newslist .listone_of .oneof_l p {
  margin: 0;
  font-weight: bold;
  font-size: 28px;
}
.whole .mid .mid_right .newslist .listone_of .oneof_r {
  margin-left: 40px;
}
.whole .mid .mid_right .newslist .listone_of .oneof_r .oneof_content {
  width: 790px;
  font-family: "Microsoft YaHei";
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.whole .mid .mid_right .newslist .listone_of .oneof_r p {
  padding-bottom: 15px;
  margin: 0;
  font-family: "Microsoft YaHei";
  font-weight: normal;
  font-size: 20px;
  line-height: 34px;
  text-align: left;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.details_whole {
  padding: 80px 0 140px 0;
  width: 100%;
  background: #06113b;
  min-height: 60vh;
}
.details_whole .back {
  cursor: pointer;
  width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-bottom: 40px;
  font-family: "Microsoft YaHei";
  font-weight: normal;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  color: #fff;
}
.details_whole .back img {
  margin-right: 5px;
  width: 20px;
  height: 20px;
}
.details_whole .details {
  width: 1000px;
  margin: 0 auto;
}
.details_whole .details .details_title {
  font-family: "Microsoft YaHei Bold";
  font-weight: bold;
  font-size: 36px;
  text-align: left;
  color: #fff;
}
.details_whole .details .push_time {
  padding: 20px 0 40px 0;
  font-family: "Microsoft YaHei";
  font-weight: normal;
  font-size: 14px;
  line-height: 28px;
  text-align: left;
  color: #fff;
}
.details_whole .details .details_content {
  color: #fff;
  line-height: 30px;
}
.details_whole .details .details_content img {
  display: block;
  margin: 0 auto;
  width: 100%;
  object-fit: cover;
}
.details_whole .details img {
  display: block;
  margin: 0 auto;
  width: 100%;
  object-fit: cover;
}
.bottom {
  height: 200px;
  padding: 40px 360px;
  display: flex;
  justify-content: space-between;
  background: #0e1726;
}
.bottom .bottom_r {
  font-family: "Microsoft YaHei";
  font-weight: normal;
  text-align: left;
  color: #fff;
}
.bottom .bottom_r .bottom_r_down {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
.bottom .bottom_r .which_down {
  padding-top: 20px;
  font-size: 16px;
}
.bottom .bottom_r .which_down img {
  width: 20px;
  height: 20px;
}
.bottom .bottom_l .bottom_title {
  font-size: 30px;
  color: #fff;
  /* padding-bottom: 30px; */
  padding: 32px 0 20px 0px;
  width: 68px;
}
.bottom .bottom_l .bottom_title img {
  width: 100%;
}
.bottom .bottom_l .bottom_info {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 810px) {
  #app .whole {
    width: 100%;
  }
  #app .whole .top {
    width: 100%;
    height: 195px !important;
    background-size: cover;
    background-repeat: no-repeat;
    object-fit: cover;
  }
  #app .whole .top .logo {
    padding: 10px 0 0 10px;
    width: 68px;
  }
  #app .whole .top .logo img {
    width: 100%;
    height: 35px;
    object-fit: contain;
  }
  #app .whole .top .phoneimg {
    justify-content: space-between;
    display: flex;
    padding: 0px 40px;
  }
  #app .whole .top .phoneimg .appimg {
    margin-top: 20px;
    width: 60px;
    height: 120px;
  }
  #app .whole .top .phoneimg .appimgs {
    width: 60px;
    height: 120px;
  }
  #app .whole .top .phoneimg img {
    border-radius: 5px;
    border: 2px solid #fff;
    width: 70%;
  }
  #app .whole .mid {
    width: 100%;
    background: #06113b;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0px;
  }
  #app .whole .mid .mid_left {
    width: 80%;
    padding-left: 5px;
  }
  #app .whole .mid .mid_left .mid_head {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #app .whole .mid .mid_left .mid_head .mid_logo {
    width: 40px;
    height: 40px;
  }
  #app .whole .mid .mid_left .mid_head .mid_logo img {
    width: 100% 100%;
    object-fit: cover;
  }
  #app .whole .mid .mid_left .mid_head .logo_name {
    padding: 10px 0 30px 0;
    font-size: 7px;
    text-align: center;
    color: #fff;
  }
  #app .whole .mid .mid_left .mid_head .logo_name p {
    margin: 0;
    padding-bottom: 10px;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 17px;
    text-align: center;
    color: #fff;
  }
  #app .whole .mid .mid_left .app_version {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #app .whole .mid .mid_left .app_version .version_down {
    width: 45%;
    padding-top: 10px;
    cursor: pointer;
    margin-right: 10px;
    /* width: 90px; */
    height: 35px;
    border-radius: 4px;
    background: #408fff00;
    border: 1px solid #408fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  #app .whole .mid .mid_left .app_version .version_down .down_txt {
    -webkit-transform: scale(0.5);
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 7px;
    color: #fff;
    padding-left: 5px;
  }
  #app .whole .mid .mid_left .app_version .version_down .down_txted {
    -webkit-transform: scale(0.5);
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 7px;
    color: #408FFF;
    padding-left: 5px;
  }
  #app .whole .mid .mid_left .app_version .version_down img {
    width: 15px;
    height: 15px;
    object-fit: cover;
  }
  #app .whole .mid .mid_left .app_version :last-child {
    margin-right: 0;
  }
  #app .whole .mid .mid_left .down_fun {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #app .whole .mid .mid_left .down_fun .down_href {
    padding: 30px 0;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 5px;
    text-align: center;
    color: #408fff;
  }
  #app .whole .mid .mid_left .down_fun .down_href a {
    display: block;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  #app .whole .mid .mid_left .down_fun .down_code {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: #fff;
  }
  #app .whole .mid .mid_left .down_fun .down_code img {
    width: 100px;
    margin: 10px;
    height: 100px;
  }
  #app .whole .mid .mid_right {
    margin-top: 30px;
    padding-right: 0px;
    width: 85%;
  }
  #app .whole .mid .mid_right .title {
    width: 100%;
    padding-top: 5px;
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 20px;
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
  }
  #app .whole .mid .mid_right .newslist {
    width: 100%;
    padding-top: 1px;
    overflow-y: scroll;
    height: 340px;
    /* 设置元素高度 */
  }
  #app .whole .mid .mid_right .newslist .listone_of {
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_l {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    font-family: "PingFang SC";
    font-weight: normal;
    font-size: 6px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_l p {
    margin: 0;
    font-weight: bold;
    font-size: 12px;
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_r {
    width: 75%;
    margin-left: 5px;
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_r .oneof_content {
    /* width: 790px; */
    width: 110px;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 12px;
    line-height: 24px;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_r p {
    padding-bottom: 5px;
    margin: 0;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    line-height: 20px;
    font-size: 15px;
    text-align: left;
    color: #fff;
    width: 85%;
  }
  #app .bottom {
    width: 100%;
    height: 125px;
    padding: 20px 0px;
    display: flex;
    justify-content: space-between;
    background: #0e1726;
  }
  #app .bottom .bottom_r {
    padding-right: 10px;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    text-align: left;
    color: #fff;
  }
  #app .bottom .bottom_r .bottom_r_down {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
  }
  #app .bottom .bottom_r .which_down {
    display: flex;
    align-items: center;
    padding-top: 20px;
    font-size: 10px;
  }
  #app .bottom .bottom_r .which_down img {
    width: 15px;
    height: 15px;
  }
  #app .bottom .bottom_l {
    padding-left: 20px;
  }
  #app .bottom .bottom_l .bottom_title {
    font-size: 15px;
    color: #fff;
    padding: 22px 0 20px 0px;
    width: 50px;
  }
  #app .bottom .bottom_l .bottom_title img {
    width: 100%;
  }
  #app .bottom .bottom_l .bottom_info {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
  }
  #app .details_whole {
    padding: 80px 0 140px 0;
    width: 100%;
    background: #06113b;
    min-height: 60vh;
  }
  #app .details_whole .back {
    cursor: pointer;
    width: 360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding-bottom: 40px;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    color: #fff;
  }
  #app .details_whole .back img {
    margin-right: 5px;
    width: 20px;
    height: 20px;
  }
  #app .details_whole .details {
    width: 360px;
    margin: 0 auto;
  }
  #app .details_whole .details .details_title {
    font-family: "Microsoft YaHei Bold";
    font-weight: bold;
    font-size: 36px;
    text-align: left;
    color: #fff;
  }
  #app .details_whole .details .push_time {
    padding: 20px 0 40px 0;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;
    text-align: left;
    color: #fff;
  }
  #app .details_whole .details .details_content {
    color: #fff;
    line-height: 30px;
  }
  #app .details_whole .details .details_content img {
    display: block;
    margin: 0 auto;
    width: 80%;
    object-fit: cover;
  }
  #app .details_whole .details img {
    display: block;
    margin: 0 auto;
    width: 80%;
    object-fit: cover;
  }
}
@media screen and (min-width: 810px) and (max-width: 1024px) {
  #app .whole {
    width: 100%;
  }
  #app .whole .top {
    width: 100%;
    height: 600px !important;
    background-size: cover;
    background-repeat: no-repeat;
    object-fit: cover;
  }
  #app .whole .top .logo {
    padding: 25px 0 0 50px;
    width: 120px;
  }
  #app .whole .top .logo img {
    width: 100%;
    height: 60px;
    object-fit: contain;
  }
  #app .whole .top .phoneimg {
    justify-content: space-between;
    display: flex;
    padding: 20px 60px;
  }
  #app .whole .top .phoneimg .appimg {
    margin-top: 40px;
  }
  #app .whole .top .phoneimg img {
    border-radius: 15px;
    border: 3px solid #fff;
    width: 75%;
    /* height: 440px;
							object-fit: cover; */
  }
  #app .whole .mid {
    background: #06113b;
    display: flex;
    justify-content: space-between;
    padding: 120px 10px;
  }
  #app .whole .mid .mid_left .mid_head .mid_logo {
    width: 60px;
    height: 60px;
  }
  #app .whole .mid .mid_left .mid_head .mid_logo img {
    width: 100%;
    object-fit: cover;
  }
  #app .whole .mid .mid_left .mid_head .logo_name {
    padding: 23px 0 63px 0;
    font-size: 14px;
    text-align: left;
    color: #fff;
  }
  #app .whole .mid .mid_left .mid_head .logo_name p {
    margin: 0;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 26px;
    text-align: left;
    color: #fff;
  }
  #app .whole .mid .mid_left .app_version {
    display: flex;
    align-items: center;
  }
  #app .whole .mid .mid_left .app_version .version_down {
    text-align: center;
    cursor: pointer;
    margin-right: 10px;
    width: 120px;
    height: 45px;
    border-radius: 4px;
    background: #408fff00;
    border: 1px solid #408fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #app .whole .mid .mid_left .app_version .version_down .down_txt {
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 14px;
    color: #fff;
    padding-left: 10px;
  }
  #app .whole .mid .mid_left .app_version .version_down .down_txted {
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 14px;
    color: #408FFF;
    padding-left: 10px;
  }
  #app .whole .mid .mid_left .app_version .version_down img {
    width: 18px;
    height: 18px;
    object-fit: cover;
  }
  #app .whole .mid .mid_left .app_version :last-child {
    margin-right: 0;
  }
  #app .whole .mid .mid_left .down_fun .down_href {
    padding: 40px 0;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 16px;
    text-align: left;
    color: #408fff;
  }
  #app .whole .mid .mid_left .down_fun .down_href a {
    width: 260px;
    display: block;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  #app .whole .mid .mid_left .down_fun .down_code {
    width: 260px;
    height: 260px;
    border-radius: 20px;
    background: #fff;
  }
  #app .whole .mid .mid_left .down_fun .down_code img {
    width: 240px;
    margin: 10px;
    height: 240px;
  }
  #app .whole .mid .mid_right {
    width: 500px;
  }
  #app .whole .mid .mid_right .title {
    padding-top: 14px;
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 24px;
    text-align: left;
    color: #fff;
    margin-bottom: 20px;
  }
  #app .whole .mid .mid_right .newslist {
    padding-top: 1px;
    overflow-y: scroll;
    height: 740px;
    /* 设置元素高度 */
  }
  #app .whole .mid .mid_right .newslist .listone_of {
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_l {
    width: 90px;
    height: 90px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    font-family: "PingFang SC";
    font-weight: normal;
    font-size: 14px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_l p {
    margin: 0;
    font-weight: bold;
    font-size: 28px;
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_r {
    width: 76%;
    margin-left: 40px;
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_r .oneof_content {
    /* width: 790px; */
    width: 100%;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_r p {
    padding-bottom: 15px;
    margin: 0;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 20px;
    line-height: 34px;
    text-align: left;
    color: #fff;
  }
  .details_whole {
    padding: 80px 0 140px 0;
    width: 100%;
    background: #06113b;
    min-height: 60vh;
  }
  .details_whole .back {
    cursor: pointer;
    width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding-bottom: 40px;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    color: #fff;
  }
  .details_whole .back img {
    margin-right: 5px;
    width: 20px;
    height: 20px;
  }
  .details_whole .details {
    width: 700px;
    margin: 0 auto;
  }
  .details_whole .details .details_title {
    font-family: "Microsoft YaHei Bold";
    font-weight: bold;
    font-size: 36px;
    text-align: left;
    color: #fff;
  }
  .details_whole .details .push_time {
    padding: 20px 0 40px 0;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;
    text-align: left;
    color: #fff;
  }
  .details_whole .details .details_content {
    color: #fff;
    line-height: 30px;
  }
  .details_whole .details .details_content img {
    display: block;
    margin: 0 auto;
    width: 100%;
    object-fit: cover;
  }
  .details_whole .details img {
    display: block;
    margin: 0 auto;
    width: 100%;
    object-fit: cover;
  }
  .bottom {
    height: 200px;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    background: #0e1726;
  }
  .bottom .bottom_r {
    font-family: "Microsoft YaHei";
    font-weight: normal;
    text-align: left;
    color: #fff;
  }
  .bottom .bottom_r .bottom_r_down {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
  }
  .bottom .bottom_r .which_down {
    padding-top: 20px;
    font-size: 16px;
  }
  .bottom .bottom_r .which_down img {
    width: 20px;
    height: 20px;
  }
  .bottom .bottom_l .bottom_title {
    font-size: 30px;
    color: #fff;
    padding: 22px 0 20px 0px;
    width: 100px;
  }
  .bottom .bottom_l .bottom_title img {
    width: 100%;
  }
  .bottom .bottom_l .bottom_info {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #app .whole {
    width: 100%;
  }
  #app .whole .top {
    width: 100%;
    height: 600px !important;
    background-size: cover;
    background-repeat: no-repeat;
    object-fit: cover;
  }
  #app .whole .top .logo {
    padding: 25px 0 0 50px;
    width: 120px;
  }
  #app .whole .top .logo img {
    width: 100%;
    height: 60px;
    object-fit: contain;
  }
  #app .whole .top .phoneimg {
    justify-content: space-between;
    display: flex;
    padding: 20px 60px;
  }
  #app .whole .top .phoneimg .appimg {
    margin-top: 40px;
  }
  #app .whole .top .phoneimg img {
    border-radius: 15px;
    border: 5px solid #fff;
    width: 70%;
    /* height: 440px;
							object-fit: cover; */
  }
  #app .whole .mid {
    background: #06113b;
    display: flex;
    justify-content: space-between;
    padding: 120px 30px;
  }
  #app .whole .mid .mid_left .mid_head .mid_logo {
    width: 60px;
    height: 60px;
  }
  #app .whole .mid .mid_left .mid_head .mid_logo img {
    width: 100%;
    object-fit: cover;
  }
  #app .whole .mid .mid_left .mid_head .logo_name {
    padding: 23px 0 63px 0;
    font-size: 14px;
    text-align: left;
    color: #fff;
  }
  #app .whole .mid .mid_left .mid_head .logo_name p {
    margin: 0;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 26px;
    text-align: left;
    color: #fff;
  }
  #app .whole .mid .mid_left .app_version {
    display: flex;
    align-items: center;
  }
  #app .whole .mid .mid_left .app_version .version_down {
    text-align: center;
    cursor: pointer;
    margin-right: 20px;
    width: 140px;
    height: 50px;
    border-radius: 4px;
    background: #408fff00;
    border: 1px solid #408fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #app .whole .mid .mid_left .app_version .version_down .down_txt {
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 14px;
    color: #fff;
    padding-left: 10px;
  }
  #app .whole .mid .mid_left .app_version .version_down .down_txted {
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 14px;
    color: #408FFF;
    padding-left: 10px;
  }
  #app .whole .mid .mid_left .app_version .version_down img {
    width: 18px;
    height: 18px;
    object-fit: cover;
  }
  #app .whole .mid .mid_left .app_version :last-child {
    margin-right: 0;
  }
  #app .whole .mid .mid_left .down_fun .down_href {
    padding: 40px 0;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 16px;
    text-align: left;
    color: #408fff;
  }
  #app .whole .mid .mid_left .down_fun .down_href a {
    text-decoration: none;
  }
  #app .whole .mid .mid_left .down_fun .down_code {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    background: #fff;
  }
  #app .whole .mid .mid_left .down_fun .down_code img {
    width: 280px;
    margin: 10px;
    height: 280px;
  }
  #app .whole .mid .mid_right {
    width: 700px;
  }
  #app .whole .mid .mid_right .title {
    padding-top: 14px;
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 24px;
    text-align: left;
    color: #fff;
    margin-bottom: 20px;
  }
  #app .whole .mid .mid_right .newslist {
    padding-top: 1px;
    overflow-y: scroll;
    height: 740px;
    /* 设置元素高度 */
  }
  #app .whole .mid .mid_right .newslist .listone_of {
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    align-items: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_l {
    width: 90px;
    height: 90px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    font-family: "PingFang SC";
    font-weight: normal;
    font-size: 14px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_l p {
    margin: 0;
    font-weight: bold;
    font-size: 28px;
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_r {
    width: 76%;
    margin-left: 40px;
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_r .oneof_content {
    /* width: 790px; */
    width: 100%;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_r p {
    padding-bottom: 15px;
    margin: 0;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 20px;
    line-height: 34px;
    text-align: left;
    color: #fff;
  }
  .details_whole {
    padding: 80px 0 140px 0;
    width: 100%;
    background: #06113b;
    min-height: 60vh;
  }
  .details_whole .back {
    cursor: pointer;
    width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding-bottom: 40px;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    color: #fff;
  }
  .details_whole .back img {
    margin-right: 5px;
    width: 20px;
    height: 20px;
  }
  .details_whole .details {
    width: 700px;
    margin: 0 auto;
  }
  .details_whole .details .details_title {
    font-family: "Microsoft YaHei Bold";
    font-weight: bold;
    font-size: 36px;
    text-align: left;
    color: #fff;
  }
  .details_whole .details .push_time {
    padding: 20px 0 40px 0;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;
    text-align: left;
    color: #fff;
  }
  .details_whole .details .details_content {
    color: #fff;
    line-height: 30px;
  }
  .details_whole .details .details_content img {
    display: block;
    margin: 0 auto;
    width: 100%;
    object-fit: cover;
  }
  .details_whole .details img {
    display: block;
    margin: 0 auto;
    width: 100%;
    object-fit: cover;
  }
  .bottom {
    height: 200px;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    background: #0e1726;
  }
  .bottom .bottom_r {
    font-family: "Microsoft YaHei";
    font-weight: normal;
    text-align: left;
    color: #fff;
  }
  .bottom .bottom_r .bottom_r_down {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
  }
  .bottom .bottom_r .which_down {
    padding-top: 20px;
    font-size: 16px;
  }
  .bottom .bottom_r .which_down img {
    width: 20px;
    height: 20px;
  }
  .bottom .bottom_l .bottom_title {
    font-size: 30px;
    color: #fff;
    padding: 20px 0 20px 0px;
    width: 68px;
  }
  .bottom .bottom_l .bottom_title img {
    width: 100%;
  }
  .bottom .bottom_l .bottom_info {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
  }
}
@media screen and (min-width: 1280px) and (max-width: 1440px) {
  #app .whole {
    width: 100%;
  }
  #app .whole .top {
    width: 100%;
    height: 680px !important;
    background-size: cover;
    background-repeat: no-repeat;
    object-fit: cover;
  }
  #app .whole .top .logo {
    padding: 25px 0 0 50px;
    width: 120px;
  }
  #app .whole .top .logo img {
    width: 100%;
    height: 60px;
    object-fit: contain;
  }
  #app .whole .top .phoneimg {
    justify-content: space-between;
    display: flex;
    padding: 20px 60px;
  }
  #app .whole .top .phoneimg .appimg {
    margin-top: 40px;
  }
  #app .whole .top .phoneimg img {
    border-radius: 20px;
    border: 4px solid #fff;
    width: 80%;
    /* height: 440px;
							object-fit: cover; */
  }
  #app .whole .mid {
    background: #06113b;
    display: flex;
    justify-content: space-between;
    padding: 120px 120px;
  }
  #app .whole .mid .mid_left .mid_head .mid_logo {
    width: 80px;
    height: 80px;
  }
  #app .whole .mid .mid_left .mid_head .mid_logo img {
    width: 100%;
    object-fit: cover;
  }
  #app .whole .mid .mid_left .mid_head .logo_name {
    padding: 23px 0 63px 0;
    font-size: 14px;
    text-align: left;
    color: #fff;
  }
  #app .whole .mid .mid_left .mid_head .logo_name p {
    margin: 0;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 26px;
    text-align: left;
    color: #fff;
  }
  #app .whole .mid .mid_left .app_version {
    display: flex;
    align-items: center;
  }
  #app .whole .mid .mid_left .app_version .version_down {
    text-align: center;
    cursor: pointer;
    margin-right: 20px;
    width: 140px;
    height: 60px;
    border-radius: 4px;
    background: #408fff00;
    border: 1px solid #408fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #app .whole .mid .mid_left .app_version .version_down .down_txt {
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 16px;
    color: #fff;
    padding-left: 10px;
  }
  #app .whole .mid .mid_left .app_version .version_down .down_txted {
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 16px;
    color: #408FFF;
    padding-left: 10px;
  }
  #app .whole .mid .mid_left .app_version .version_down img {
    width: 20px;
    height: 20px;
    object-fit: cover;
  }
  #app .whole .mid .mid_left .app_version :last-child {
    margin-right: 0;
  }
  #app .whole .mid .mid_left .down_fun .down_href {
    padding: 40px 0;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 15px;
    text-align: left;
    color: #408fff;
  }
  #app .whole .mid .mid_left .down_fun .down_href a {
    text-decoration: none;
  }
  #app .whole .mid .mid_left .down_fun .down_code {
    width: 340px;
    height: 340px;
    border-radius: 20px;
    background: #fff;
  }
  #app .whole .mid .mid_left .down_fun .down_code img {
    width: 320px;
    margin: 5px;
    height: 320px;
  }
  #app .whole .mid .mid_right {
    width: 650px;
  }
  #app .whole .mid .mid_right .title {
    padding-top: 14px;
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 24px;
    text-align: left;
    color: #fff;
    margin-bottom: 20px;
  }
  #app .whole .mid .mid_right .newslist {
    padding-top: 1px;
    overflow-y: scroll;
    height: 740px;
    /* 设置元素高度 */
  }
  #app .whole .mid .mid_right .newslist .listone_of {
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    align-items: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_l {
    width: 90px;
    height: 90px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    font-family: "PingFang SC";
    font-weight: normal;
    font-size: 14px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_l p {
    margin: 0;
    font-weight: bold;
    font-size: 28px;
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_r {
    width: 76%;
    margin-left: 40px;
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_r .oneof_content {
    /* width: 790px; */
    width: 100%;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_r p {
    padding-bottom: 15px;
    margin: 0;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 20px;
    line-height: 34px;
    text-align: left;
    color: #fff;
  }
}
@media screen and (min-width: 1440px) and (max-width: 1700px) {
  #app .whole {
    width: 100%;
  }
  #app .whole .phoneimg img {
    border-radius: 30px;
    border: 5px solid #fff;
    width: 90%;
    /* height: 440px;
					object-fit: cover; */
  }
  #app .whole .mid {
    background: #06113b;
    display: flex;
    justify-content: space-between;
    padding: 120px 160px;
  }
  #app .whole .mid .mid_right {
    width: 800px;
  }
  #app .whole .mid .mid_right .title {
    padding-top: 14px;
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 24px;
    text-align: left;
    color: #fff;
    margin-bottom: 20px;
  }
  #app .whole .mid .mid_right .newslist {
    padding-top: 1px;
    overflow-y: scroll;
    height: 740px;
    /* 设置元素高度 */
  }
  #app .whole .mid .mid_right .newslist .listone_of {
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    align-items: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_l {
    width: 90px;
    height: 90px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    font-family: "PingFang SC";
    font-weight: normal;
    font-size: 14px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_l p {
    margin: 0;
    font-weight: bold;
    font-size: 28px;
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_r {
    width: 75%;
    margin-left: 40px;
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_r .oneof_content {
    /* width: 790px; */
    width: 100%;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
  #app .whole .mid .mid_right .newslist .listone_of .oneof_r p {
    padding-bottom: 15px;
    margin: 0;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-size: 20px;
    line-height: 34px;
    text-align: left;
    color: #fff;
  }
}
