/* 全局默认内容宽度 */
:root {
  --content-width: 80%;
  --nav-font-size: 20px;
  --title-font-size: 20px;
  --text-font-size: 16px;
}
.footer {
  width: 100%;
  margin-top: 60px;
  margin-bottom: auto;
  background: rgb(18, 21, 36);
  color: white;
  text-align: start;
  padding: 10px 0;
  /* position: fixed;
  bottom: 0; */
}

.footer .content {
width: 80%;
margin: 0 auto;
padding: 10px 0;
}
.footer .footer-text{
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  font-size: var(--text-font-size);
  font-weight: normal;
  line-height: normal;
  letter-spacing: 0em;
  font-variation-settings: "opsz" auto;
  color: #BEC3D0;
  
}
.footer .footer-text span{

  cursor: pointer;
}
.footer-select{
  width: 100%;
  display: flex;
  gap: 32px;
}
#mySelect{
  width: 200px;
  height: 37px;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: #FFFFFF;
  margin-top: 20px;
}
#mySelect2{
  width: 200px;
  height: 37px;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: #FFFFFF;
  margin-top: 20px;
}
.footer-bottom-box{
  display: flex;
  justify-content: space-between;
}
.footer-bottom-box p{
  font-size: var(--text-font-size);
  font-weight: normal;
  line-height: 28px;
  letter-spacing: 0em;
  font-variation-settings: "opsz" auto;
  /* 深 */
  color: #6C7487;
}
.footer-imgs{
  width: 500px;
  height: 133px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.footer-imgs-item{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.footer-imgs-item img{
  width: 84px;
  height: 84px;
}
.footer-imgs-item div{
  font-size: 13px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: 0em;
  font-variation-settings: "opsz" auto;
  /* 灰 */
  color: #BEC3D0;
  width: 120px;
  height: 17px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 6px;
}
.icon-wx::before{
  content: '';
  width: 14px;
  height: 14px;
  background-image: url('/templates/1/new2/_files/imgs/wx_icon.png');
  background-repeat: no-repeat;
}
.icon-dy::before{
  content: '';
  width: 14px;
  height: 14px;
  background-image: url('/templates/1/new2/_files/imgs/dy_icon.png');
  background-repeat: no-repeat;
}
.icon-sp::before{
  content: '';
  width: 14px;
  height: 14px;
  background-image: url('/templates/1/new2/_files/imgs/sp_icon.png');
  background-repeat: no-repeat;
}
/* 返回顶部 */

.to-top-box.fixed{
  bottom: 250px;
}
.to-top-box{
  width: 60px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: -54px;
  right: 50px;
  background: #c11f1c;
  border-radius: 2px;
  box-sizing: border-box;
  padding: 10px;
  z-index: 10;
  flex-wrap: wrap;
  transition: all 0.4s linear;
  cursor: pointer;
  font-size: var(--text-font-size);
  color: #fff;
  text-decoration: none;
}
.to-top-box img{
  border: 0;
  vertical-align: middle;
}