.footer_box {
  width: 100%;
  background: #F1F2F8;
  padding-bottom: calc(10px + 5rem);
}

.footer {
  max-width: 1480px;
  width: 85%;
  margin: auto;
}

.footer_top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(12px + 1rem) 0;
  border-bottom: calc(0px + 0.1rem) #D8DDEB solid;
}

.footer_top_item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: calc(4px + 0.5rem);
}

.footer_top_item img {
  width: calc(6px + 3rem);
}

.footer_top_item p {
  width: calc(22px + 15rem);
  font-family: OPPOSans-B;
  font-weight: normal;
  font-size: calc(8px + 0.5rem);
  color: #333333;
  line-height: calc(10px + 1rem);
}

.footer_main {
  padding-top: calc(17px + 3rem);
  display: flex;
  justify-content: space-between;
}

.footer_left {
  width: calc(54px + 15rem);
}

.footer_logo img {
  height: calc(15px + 5rem);
}


.footer_left p {
  font-family: OPPOSans-B;
  font-weight: normal;
  font-size: calc(10px + 0.5rem);
  color: #333333;
  line-height: calc(10px + 1rem);
  margin-top: calc(5px + 1rem);
}

.footer_left_icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: calc(5px + 0.25rem);
  margin-top: calc(2px + 2rem);
}

.footer_icon_item {
  width: calc(5px + 2rem);
  height: calc(5px + 2rem);
  border-radius: 50%;
}

.footer_icon_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.link_title {
  font-family: OPPOSans-B;
  font-weight: normal;
  font-size: calc(10px + 0.5rem);
  color: #333333;
}

.link_nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: calc(7px + 1rem);
  margin-top: calc(8px + 1.5rem);
}

.link_nav p a {
  font-family: OPPOSans-R;
  font-weight: normal;
  font-size: calc(6px + 0.5rem);
  color: #333333;
}
.message_box{
  width:calc(74px + 20rem);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: calc(4px + 0.5rem);
  margin-top: calc(4px + 1.5rem);
}
.message_box .input{
  width: 48.5232%;
height: calc(12px + 2rem);
background: #F1F2F8;
border-radius: calc(2px + 0.1rem);
border: 1px solid #CCCCCC;
font-family: OPPOSans-R;
font-weight: normal;
font-size: calc(6px + 0.5rem);
color: #666666;
padding-left: calc(9px + 0.5rem);
}

.message_box .input::placeholder{
font-family: OPPOSans-R;
font-weight: normal;
font-size: calc(6px + 0.5rem);
color: #666666;
}
.message_box input:nth-of-type(3){
  width: 100%;
}

.message{
  width:calc(74px + 20rem);
  display: flex;
  justify-content: space-between;
}

.message textarea{
  width: calc(42px + 15rem);
  height: calc(20px + 4rem);
  background: #F1F2F8;
border-radius: calc(2px + 0.1rem);
border: 1px solid #CCCCCC;
border-right: none;
font-family: OPPOSans-R;
font-weight: normal;
font-size: calc(6px + 0.5rem);
color: #666666;
padding-left: calc(9px + 0.5rem);
padding-top: calc(3px + 0.5rem);
}
.message input{
  flex: 1;
  height: calc(20px + 4rem);
  background: #00529D;
  border-radius: 0px calc(2px + 0.1rem) calc(2px + 0.1rem) 0px;
  border: none;
font-family: Century Gothic;
font-weight: 400;
font-size: calc(6px + 0.5rem);
color: #FFFFFF;

}

.copyright_box{
  width: 100%;
  background: #F1F2F8;
}

.copyright{
  max-width: 1480px;
  width: 85%;
  margin: auto;
  height: calc(18px + 3rem);
  background: #00529D;
  transform: skewX(-10deg);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(10px + 5rem);
}

.copyright P{
font-family: Century Gothic;
font-weight: 400;
font-size: calc(8px + 0.5rem);
color: #FFFFFF;
text-align: center;
transform: skewX(10deg);
}

@media (max-width: 800px){
  .footer_top {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: calc(10px + 1rem);
  }
  .footer_top_item{
    width: 100%;
  }
  .footer_top_item p{
    width: 100%;
    font-size: calc(10px + 1rem);
    line-height: 1.5;
  }
  .footer_top_item img{
    width: calc(6px + 9rem)
  }

  .footer_main{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(10px + 4rem);
  }
.footer_left {
  width: 100%;
}
.footer_logo img {
  height: calc(15px + 16rem);
}
.footer_left p {
 
  font-size: calc(10px + 1rem);
  line-height: 1.5;
  
}
.footer_icon_item {
  width: calc(5px + 7rem);
  height: calc(5px + 7rem);
  
}
.link_title{
  font-size: calc(14px + 1rem);
}
.link_nav{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: calc(10px + 1rem);
}
.link_nav p{
  width: max-content;
}
.link_nav p a {
  font-size: calc(10px + 1rem);
}
.message_box{
  width: 100%;
}
.message{
  width: 100%;
}
.message textarea {
  width: calc(42px + 50rem);
  height: calc(20px + 12rem);
  font-size: calc(10px + 1rem);
}
.message_box .input {
  height: calc(12px + 6rem);
  font-size: calc(10px + 1rem);
}
.message_box .input::placeholder{
  font-size: calc(10px + 1rem);
}
.message input {
 
  height: calc(20px + 12rem);
  font-size: calc(12px + 1rem);
}
.copyright{
  height: calc(18px + 15rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: calc(5px + 0.5rem);
}
.copyright P{
  font-size: calc(10px + 1rem);
  line-height: 1.5;
}
}