/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #e9e5ef;
}

/* 导航栏样式 */
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: white;
}

.logo {
  width: 80px;
  height: 80px;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
}

.contact-button {
  padding: 10px 20px;
  border: 2px solid #e04e90;
  border-radius: 20px;
  text-decoration: none;
  color: #e04e90;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-button:hover {
  background-color: #e04e90;
  color: white;
}

.main-title {
  width: 100%;
  height: auto;
  margin: 5px;
  text-align: center;
  font-size: 20px;
}
/* 内容区域样式 */
main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background-color: #e9e5ef; /* 添加背景色 */
}

.product-card {
  width: calc(50% - 5px); /* 减去右边距 */
  height: auto;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-top: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.product-image {
  width: 100%;
  height: auto;
  background-color: white;
  padding: 50px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.product-info {
  width: 100%;
  height: auto;
  background-color: white;
  padding: 20px;
  font-size: 16px;
  /*margin-bottom: 5px;*/
}

.product-info-tips {
  margin-left: 10px;
  text-align: center;
}

.product-icon {
  height: 40px;
  margin-bottom: 10px;
}

.download-buttons {
  display: flex;
  align-items: center; /* 垂直居中对齐 */
}

.download-buttons img {
  margin: 5px;
  height: 40px;
}

.download-buttons strong {
  height: 30px;
  margin: 5px;
  text-align: center;
  line-height: 30px;
}

.name_pc {
  color: #4d4da2;
  margin-left: 10px;
}

.appName_pc {
  font-size: 16px;
  margin-bottom: 10px;
}

.appTip_pc{
  font-size: 14px;
}

.footer_pc {
  width: 100%;
  /*height: 1.15rem;*/
  height: auto;
  background: #4d4da2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9;
  color: #fff;
  padding: 20px;
  /*padding: 0 0.9042rem;*/
}

.corybuy_pc {
  /*font-size: 0.09rem;*/
  font-size: 14px;
  margin-top: 0.13rem;
}

.pc_telephone {
  /*font-size: 0.08rem;*/
  font-size: 14px;
  margin-top: 5px;
}

.pc_email {
  /*font-size: 0.08rem;*/
  font-size: 14px;
  margin-top: 5px;
}

/* 媒体查询，适配手机屏幕 */
@media (max-width: 768px){
  .product-card {
    width: 100%;
    background-color: #e9e5ef;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    display: flex;
  }
  .product-image{
    width: 100%;
    height: auto;
    background-color: white;
    padding: 20px;
    margin-right: 5px;
    margin-bottom: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  .product-info{
    width: 100%;
    height: auto;
    background-color: white;
    padding: 20px;
    margin-bottom: 5px;
    font-size: 14px;
  }
}
