/*
 *** 
 *** 首屏CSS 
 *** time:2020-7-22
 ***
*/

/* 清除默认 */
*{
  font-family: PingFang-SC-Regular;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}
body,
ul,
ol,
li,
dl,
dt,
dd,
p,
h1,
h2,
h3 {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul,
li {
  list-style: none;
  cursor: pointer;
}
a {
  text-decoration: none;
  color: white;
}
img {
  vertical-align: top;
  border: none;
}

/* 导航栏代码 */

.header {
  width: 100%;
  height: 0.62rem;
  background: #060b29;
  /* background-color: rgba(14,14,14,0.3); */
  display: flex;
}

.headerLogo {
  width: 30%;
  text-align: right;
}

.headerLogo > a {
  width: 1.85rem;
  height: 0.44rem;
}

.headerLogo > a > img {
  width: 1.85rem;
  height: 0.44rem;
  margin-top: 0.08rem;
}

.headerOption {
  width: 75%;
}

.bgOption {
  width: 60%;
  margin-left: 13%;
}

.bgOption > ul {
  display: flex;
  width: 110%;
}

.bgOption > ul > li {
  width: 15%;
  text-align: center;
  line-height: 0.62rem;
  font-size: 0.16rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  cursor: pointer;
}

.bgOption > ul > li >a {
  padding: 0.1rem;
}

.bgOption > ul > li > a:hover {
  color: #a0da00;
  border-bottom: 0.02rem solid #a0da00;
}

/* 导航栏App下载二维码动画效果 */

#App_Code {
  position: relative;
}

#App_Code:hover .App_QRcode {
  opacity: 0.28;
  transition-duration: 1s;
}

.App_QRcode {
  width: 0.76rem;
  height: 0.76rem;
  background: rgb(240, 10, 10);
  position: absolute;
  left: 16%;
  bottom: -62;
  opacity: 0;
}

.App_QRcode > img {
  width: 0.66rem;
  height: 0.66rem;
  margin: 0.05rem;
}

/* 首屏样式 */
.first_Screen {
  width: 100%;
  height: 8.69rem;
  background: url("../images/bannerbg.png") no-repeat;
  background-size: 100% 100%;
  color: white;
  display: flex;
}

.screenTitle {
  width: 11.25rem;
  height: auto;
  margin: auto;
}

.screenTitle > h1 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: rgba(255, 255, 255, 1);
  font-size: 0.82rem;
}

.screenBrief {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 0.66rem;
}

.screenBrief > div {
  width: 1.29rem;
  height: 0.44rem;
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 4px;
  margin-left: 0.26rem;
  font-size: 0.26rem;
  font-family: PingFang SC;
  font-weight: bold;
  color: rgba(255, 255, 255, 1);
  line-height: 0.44rem;
  text-align: center;
}

.screenTitle > h2 {
  font-size: 0.36rem;
  font-family: PingFang SC;
  font-weight: bold;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  margin-top: 0.52rem;
}

.productCode {
  width: 100%;
  display: flex;
  margin-top: 2.47rem;
  align-items: center;
  justify-content: center;
}

.productCode > div {
  padding: 0 0.09rem;
  /* background: #122127; */
  background-color: rgba(18,33,39, 0.75);
  /* opacity: 0.75; */
  border-radius: 4px;
  font-size: 0.18rem;
  color: rgba(255, 255, 255, 1);
  line-height: 0.37rem;
  margin-left: 0.22rem;
  cursor: pointer;
  position: relative;
}

.productCode > div > img {
  width: 0.23rem;
  height: 0.23rem;
  margin-top: 0.07rem;
}

.productCode > div > div {
  width: 1.02rem;
  height: 1.02rem;
  background: rgb(240, 10, 10);
  opacity: 0;
}

.QRcodeClass {
  width: 1.02rem;
  height: 1.02rem;
}

#IOS:hover .IosQRcode {
  opacity: 1;
  transition-duration: 1s;
}
#Android:hover .AndroidQRcode {
  opacity: 1;
  transition-duration: 1s;
}
#Applets:hover .AppletsQRcode {
  opacity: 1;
  transition-duration: 1s;
}
#officialAccount:hover .AccountQRcode {
  opacity: 1;
  transition-duration: 1s;
}

.IosQRcode {
  position: absolute;
  bottom: 0.4rem;
  right: 0.02rem;
}
.AndroidQRcode {
  position: absolute;
  bottom: 0.4rem;
}
.AppletsQRcode {
  position: absolute;
  bottom: 0.4rem;
  left: 0.2rem;
}
.AccountQRcode {
  position: absolute;
  bottom: 0.4rem;
  left: 0.2rem;
}
