@charset "utf-8";
/* CSS Document */

/*
First Write : 2024-07-18
Last Update : 2024-07-18
Author: Jcode
*/

/* S : Common Set */
body {
  line-height: 1.5;
  font-family: '맑은고딕', Malgun Gothic, '돋움', Dotum, '굴림', Gulim,
    Helvetica, Apple Gothic, Arial, sans-serif;
  color: #333;
  -webkit-text-size-adjust: none; /* 가로세로 전환시 폰트사이즈 고정 */
}

/* 타이틀 숨김 */
.blind {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
}
.hide {
  display: none;
}

/* Font Color Style */
.f_bold {
  font-weight: bold;
}
.f_purple {
  color: #893bb6;
}
.f_red {color: #ff0000;}


/* Link Set */
a:link {
  color: #333;
  text-decoration: none;
}
a:visited {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #333;
  text-decoration: none;
}
a:active {
  color: #333;
  text-decoration: none;
}
a:focus {
  color: #333;
  text-decoration: none;
}

.link_b:link {
  color: #0000d4;
  text-decoration: none;
}
.link_b:visited {
  color: #0000d4;
  text-decoration: none;
}
.link_b:hover {
  text-decoration: underline;
}

/* Form Style */
input {
  /* width: 100%; */
  padding: 12px;
  border: none;
  font-size: 0.9rem;
  background-color: #f1f1f1;
}
input:focus {
  outline: 1px solid #ccc;
} /* 선택 시 outline 테두리 */
table {
  border-spacing: 0;
  font-size: 0.8rem;
  width: 100%;
}
table,
th,
td {
  padding: 8px;
  border: 1px solid #ccc;
  border-collapse: collapse;
}
table th {
  background-color: #f2f2f2;
}
caption {
  font-weight: bold;
  text-align: left;
  color: #2e54ce;
  margin: 10px 0;
}
.t_scroll {
  width: 100%;
  overflow: auto;
  white-space: nowrap;
  margin-bottom: 20px;
}

/* TOP으로 이동 */
.movetop {position: fixed; right: 20px; bottom: 20px; z-index: 1;}
.movetop button {
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.5) url(../images/icon.png) no-repeat 14px 10px / 50%;
  border: 1px solid #ccc; border-radius: 12px; cursor: pointer;
}
.movetop span {display: inline-block; text-indent: -9999px;}
/* E : Common Set */

/*** Header ***/
h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
h1 a {
  display: inline-block;
  text-indent: -9999px;
  width: 180px;
  background: transparent url(../images/logo.png) no-repeat center / 90%;
}

/* 주메뉴
.gnb nav {background-color: #000;}
.gnb ul {display: flex; margin: 0 10px;} */

/* 주메뉴(가로스크롤) */
.gnb nav {
  background-color: #000;
  overflow-x: auto;
}
.gnb ul {
  width: 600px;
  display: flex;
  margin: 0 10px;
}

.gnb ul li {
  /*width: 25%;*/
  margin: 0 10px;
  display: flex;
  justify-content: center;
}
.gnb ul li a {
  display: inline-block;
  width: 100%;
  padding: 12px 5px 10px 5px;
  text-align: center;
  color: #999;
  border-bottom: 3px solid #000;
}
.gnb ul li a:hover {
  color: #fff;
  border-bottom: 3px solid #ff0000;
}

.gnb ul li .on {
  color: #fff;
  border-bottom: 3px solid #ff0000;
}

/* 메뉴 고정 */
.gnb {
  position: sticky; top: 0px;
}
.navfix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.padtop {
  padding-top: 50px;
}

/*** 상단이미지 ***/
.topimg {
  display: flex; justify-content: center; align-items: center; flex-direction: column;
  padding: 25px 20px 20px 20px;
  background-image: url(../images/topimg.png), url(../images/topbg.png);
  background-repeat: no-repeat, repeat;
  background-position: center top 0, 0 0;
  background-size: cover, auto;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
}

/* txt 타이틀 */
.topimg > div:nth-child(1) {margin-bottom: 25px;}
.topimg > div:nth-child(1) p:nth-child(1) {margin: 0 45px;  text-align: center;}
.topimg > div:nth-child(1) p:nth-child(2) {margin-top: 20px; text-align: center;}

/* txt 날짜 + 장소 */
.topimg > div:nth-child(2) {display: flex; flex-direction: column; padding: 15px 0; border-top: 1px solid #ddd;}
.topimg > div:nth-child(2) p {display: flex; align-items: center; font-weight: bold;}
.topimg > div:nth-child(2) p span:nth-child(1) {margin-right: 10px; font-size: 0.95rem;}
.topimg > div:nth-child(2) p span:nth-child(2) {color: #666; font-size: 0.9rem;}

/* txt 주최 + 후원 */
.topimg > div:nth-child(3) {display: flex; flex-direction: column; gap: 5px;}
.topimg > div:nth-child(3) div {display: flex; align-items: flex-start; margin-top: 4px; padding: 0; font-size: 0.85rem; font-weight: bold;}
.topimg > div:nth-child(3) div span {margin-right: 5px; flex-basis: 40px; padding: 2px 6px; text-align: center; background-color: rgba(0, 0, 0, 0.5); color: #fff; border-radius: 4px;}
.topimg > div:nth-child(3) ul {display: flex; flex: 1;}
.topimg > div:nth-child(3) ul li {display: flex; align-items: center; margin-right: 14px;}
.topimg > div:nth-child(3) ul li img {width: 100%;}
.topimg > div:nth-child(3) div:nth-child(1) ul li:nth-child(1) {width: 90px;}
.topimg > div:nth-child(3) div:nth-child(1) ul li:nth-child(2) {width: 53px;}

.topimg > div:nth-child(3) div:nth-child(2) ul {flex-wrap: wrap; gap:5px 0}
.topimg > div:nth-child(3) ul li img { max-height: 30px; width: auto;}
.topimg > div:nth-child(3) div:nth-child(2) ul li:nth-child(1) {width: 94px;}
.topimg > div:nth-child(3) div:nth-child(2) ul li:nth-child(2) {width: 222px;}


/* .topimg .txt {
  padding: 8% 8% 0 8%;
}
.topimg .txt p:nth-child(1) img {
  width: 100%;
}
.topimg .txt p:nth-child(2) img {
  width: 100%;
}
.topimg .txt p:nth-child(3) img {
  width: 100%;
}
.topimg .txt p:nth-child(2) {
  margin: 3% 0 3% 0;
}
.topimg .txt1 {
  display: inline-block;
  width: 75%;
  margin: 14% 0 8% 5%;
  padding: 0 0 0 10px;
}
.topimg .txt1 p:nth-child(1) img {
  width: 80%;
}
.topimg .txt1 p:nth-child(2) img {
  width: 80%;
}
.topimg .txt1 p:nth-child(3) img {
  width: 80%;
} */

/* .topimg .dateinfo {margin: 32% 20px 20px 20px;}
.topimg .dateinfo ul {padding: 14px 15px; color: #fff; border-radius: 15px; background-color: rgba(0, 0, 0, .5);}
.topimg .dateinfo ul li {margin-bottom: 2px; font-size: 0.85rem;}
.topimg .dateinfo ul li:last-child {margin-bottom: 0;}
.topimg .dateinfo ul li span:nth-child(1) {display: inline-block; margin-right: 10px; padding: 4px 10px; background-color: rgba(255, 255, 255, .1);}
.topimg .dateinfo ul li span:nth-child(2) {color: #5f86c1;} */

/* 사전등록신청 메뉴 있을 때 활성화 */
.btn_request a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0 10px 12px;
  width: calc(100% - 12px);
  color: #fff;
  /* background-color: #ff0000; */
  background-color: #2a51ac;
}

/*** 유튜브 영상 ***/
.videobox {
  position: relative;
  top: 0;
  margin-top: 2px;
  padding-bottom: 56.25%;
  width: 100%;
  height: 0;
  overflow: hidden;
  background-color: #000;
}
.videobox iframe,
.videobox object,
.videobox embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/*** Footer ***/
footer {
  margin-top: 40px;
  padding: 20px 0 40px 0;
  border-top: 1px solid #ddd;
  background-color: #f8f8f8;
}
footer .inwrap {
  margin: 0 20px 20px 20px;
}
footer p {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
address {
  margin: 4px 0 5px 0;
  font-style: normal;
}
address span {
  margin-right: 20px;
  font-size: 0.8rem;
  color: #666;
  line-height: 1.2;
  display: inline-block;
}
address span:nth-child(1) {
  display: block;
  margin-bottom: 5px;
}
small {
  font-size: 0.7rem;
  color: #999;
}

/*** Layout ***/
.container {
  margin-top: 20px;
}
.inwrap {
  margin: 0 20px 100px 20px;
}
section {
  margin-bottom: 60px;
}
section:last-child {
  border-bottom: none;
}
h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/*** Temp ***/
/* PDF 다운로드 버튼 */
.pdf_down span {
  display: inline-block;
  margin: 5px 0 0 0;
  padding: 2px 10px 3px 10px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 4px;
  background-color: #ff0000;
}

/* 유튜브 PLAY 아이콘 */
.ico_play {
  display: inline-block;
  margin-top: 2px;
  width: 25px;
  height: 23px;
  vertical-align: middle;
  /* border: 1px solid coral; */
}
.ico_play img {
  width: 100%;
  cursor: pointer;
}

/* 삼각형 화살표(사전등록신청) */
.arrow {
  margin-left: 10px;
  width: 0;
  height: 0;
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  border-left: 10px solid #fff;
  border-right: 10px solid transparent;
  border-radius: 2px;
}

/*** container ***/
/* 행사개요 */
.summary .txt {margin-bottom: 20px; padding: 20px; background-color: #d9e9f0;}
.summary .txt p {margin-bottom: 15px; font-size: 0.9rem;}
.summary .txt p:last-child {margin-bottom: 0;}
.summary table td div {display: flex; align-items: center; flex-wrap: wrap;}
.summary table td div p {display: flex; align-items: center; margin-right: 5px;}
.redtxt {display: inline-block; font-size: 0.8rem; color: #ff0000;}
.k {color: #c0202b; font-weight: bold; font-size: 1.1rem;}
.y {color: #eea225; font-weight: bold; font-size: 1.1rem;}
.d {color: #285c93; font-weight: bold; font-size: 1.1rem;}


/* 연사소개 */
.speaker h3 {margin-bottom: 20px; padding: 6px 10px; color: #fff; text-align: center; font-size: 1rem; background-color: #999; border-radius: 4px;}
.speaker .inbox {margin-bottom: 80px;}
.speaker .box {
  margin-bottom: 40px;
}
.speaker .box .pic {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.speaker .box .pic p:nth-child(1) {
  width: 70px;
  margin-right: 20px;
}
.speaker .box .pic p:nth-child(2) span {
  display: block;
  font-weight: bold;
}
.speaker .box .pic p:nth-child(2) span:nth-child(1) {
  font-size: 1.3rem;
}
.speaker .box .pic p:nth-child(2) span:nth-child(2) {
  font-size: 0.95rem;
  color: #666;
  margin: 5px 0;
}
.speaker .career > h1 {
  font-size: 1rem;
  justify-content: flex-start;
  color: #666;
  padding: 10px 0;
}
.speaker .career .list {
  padding: 15px;
  font-size: 0.9rem;
  background-color: #eee;
}
.speaker .career .list ul li {
  padding: 2px 8px;
  background: transparent url(../images/icon.png) no-repeat left 0 top -66px;
}



/* 아시아 민주주의 기여상 */
.speaker .box1 {
  margin-bottom: 40px;
  border: 10px solid #eee;
}
.speaker .box1 .pic {
  display: flex;
  align-items: center;
  margin: 10px 10px 5px 10px;
}
.speaker .box1 .pic p:nth-child(1) {
  width: 70px;
  margin-right: 20px;
}
.speaker .box1 .pic p:nth-child(2) span {
  display: block;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #2c5fa4;
}
.speaker .box1 .pic p:nth-child(2) span:nth-child(1) {
  font-size: 1.3rem;
}
.speaker .box1 .pic p:nth-child(2) span:nth-child(2) {
  font-size: 0.95rem;
  color: #666;
  margin: 5px 0;
}
.speaker .career1 > h1 {
  font-size: 1rem;
  justify-content: flex-start;
  color: #666;
  padding: 10px 0;
}
.speaker .career1 .list {
  padding: 15px;
  font-size: 0.9rem;
  background-color: #eee;
}
.speaker .career1 .list ul li {
  padding: 2px 8px;
  color: #2c5fa4;
  background: transparent url(../images/icon.png) no-repeat left 0 top -66px;
}




/* 뉴스핌민주주의상 */
/* .award .inbox {margin-bottom: 40px;}
.award .inbox .box {margin-bottom: 20px; background-color: #f4f4f4; padding: 15px 0;}
.award .box h1 {
    justify-content: flex-start; align-items: flex-start; margin-left: 10px; padding-left: 10px; height: 0px; font-size: 1.1em; font-weight: bold; color: #2e4f87; line-height: 2.3;
    border-bottom: 40px solid #cfd3dc; border-left: 30px solid transparent;
}
.award .box h1.long {
    justify-content: flex-start; align-items: flex-start; margin-left: 10px; padding-left: 10px; height: 0; font-size: 1.1rem; font-weight: bold; color: #2e4f87; line-height: 1.4;
    border-bottom: 54px solid #cfd3dc; border-left: 30px solid transparent; border-left: 40px solid #f4f4f4; background-color: #cfd3dc;
}
.award .pic {display: flex; align-items: center; padding: 15px;}
.award .pic > p {width: 30%; margin-right: 20px;}
.award .pic > p img {width: 100%; display: block;}
.award .pic .name p:nth-child(1) {margin-right: 20px; font-weight: bold; font-size: 1.4rem; letter-spacing: -2px; color: #000;}
.award .pic .name p:nth-child(2) {font-weight: bold; color: #666; line-height: 1.2;}
.award .list {margin: 0 20px;}
.award .list > p {margin-bottom: 5px;}
.award .list ul li {padding: 1px 8px; font-size: 0.95rem; background: transparent url(../images/icon.png) no-repeat left 0 top -66px;}
 */






/* 프로그램 */
.program .inbox > p {
  margin: 8px 0 0 5px;
  font-size: 0.8rem;
}
.program table .time {
  color: #2e54ce;
  text-align: center;
}
.program table .bg_color {background-color: #999; color: #fff; font-weight: bold; font-size: 1rem;}
.program table td p {
  margin-bottom: 15px;
}
.program .ico_play {
  margin-left: 2px;
  width: 26px;
  height: 28px;
}
.program h5 {
  margin: 20px 0 5px 0;
  font-size: 0.85rem;
}
.youtubebox_wrap {
  overflow-y: scroll;
  height: 220px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #f2f2f2;
}
.youtubebox {
  display: flex;
  align-items: center;
  padding-top: 5px;
}
.youtubebox a {
  display: flex;
  align-items: center;
}
.youtubebox strong {
  margin-right: 5px;
  min-width: 40px;
}

/* 시상분야 */
.award table {
  margin-bottom: 20px;
}
.award td {
  text-align: center;
}
.award .txt {
  margin-top: 20px;
}
.award .txt p {
  margin-bottom: 8px;
}
.award .txt p:first-child {
  margin-bottom: 10px;
  font-weight: bold;
}
.award .txt p span {
  font-size: 0.9rem;
}
.award .txt p span:first-child {
  display: inline-block;
  padding: 4px;
  margin-right: 10px;
  color: #fff;
  width: 100px;
  text-align: center;
  background-color: #666;
}

/* 관련기사 */
/* .news .inbox {margin: 0 20px;} */
.news article a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
.news article a p:nth-child(2) {
  margin-top: 10px;
  color: #666;
  font-size: 0.8rem;
}





/* 오시는길 */
.map .mapbox {border: 1px solid #ccc; background-color: #eee;}
.map iframe {display: block;}
.map .txt h3 {margin: 20px 0 30px 0; font-size: 1.1rem;}
.map .txt h4 {font-weight: bold; color: #2e54ce; margin-bottom: 5px;}
.map .txt ul {margin-bottom: 20px;}
.map .txt ul li {margin-bottom: 15px;}
.map .txt ul li:last-child p:last-child {margin-bottom: 0;}
.map .txt ul li p:nth-child(1) span {padding: 2px 0; width: 100px; display: inline-block; font-size: 0.9rem; color: #fff; text-align: center;}
.map .txt h4 {padding: 10px 0;}
.bg_line5 {background-color: #893bb6;} /* 5호선 */
.bg_line9 {background-color: #9c8714;} /* 9호선 */
.bg_green {background-color: #48922d;} /* 일반버스 */
.bg_blue {background-color: #395cb4;} /* 간선버스 */
.bg_crimson {background-color: #f64941;} /* 광역버스 */
.bg_skyblue {background-color: #7293bc;} /* 공항버스 */
.f_line5 {color: #893bb6; font-weight: bold;}
.f_line9 {color: #9c8714; font-weight: bold;}
.part {margin-top: 30px;}


.map .txt dt {font-weight: bold; color: #0a5ccb; margin-bottom: 10px;}
.map .txt dd {font-size: 0.9rem; margin-bottom: 30px;}
.map .txt dd p {margin-bottom: 6px;}
.map .txt dd span {display: inline-block;}
.map .txt dd span:first-child {min-width: 80px; text-align: center; padding: 4px; margin-right: 10px; color: #fff;}






/* 사전등록신청 */
.request .txt {padding: 2px 15px; background-color: #f2f2f2; border-radius: 10px;}
.request .txt p {padding: 10px 0; font-size: 0.85rem;}
.request .txt p:nth-child(2) {color: #2e54ce;}
.formbox .formbox-title {display: flex; justify-content: space-between; margin: 30px 0 10px 0;font-weight: bold; font-size: 0.8rem; color: #666;}
.formbox table tr {border-bottom: 1px solid #ccc;}
.formbox table tr td {display: flex; border: none;}
.formbox table tr td > label {color: #666; flex-basis: 22%; padding: 10px 5px;}
.formbox table tr td > input {flex: 1;}
.request .btn_area {margin-top: 40px; display: flex; justify-content: center;}
.request .btn_area a {display: inline-block; padding: 12px 40px; color: #fff; font-size: 0.9rem; background-color: #2a51ac; border-radius: 10px;}
.request .btn_area a.close {color: #333; background-color: #ddd;}

.request .selbox {background-color: #f1f1f1; padding: 10px 15px; flex: 1; display: flex; flex-direction: column;}
.request .selbox p {display: flex; align-items: center; margin: 8px 0;}
.request .selbox p label {margin-left: 8px;}
.request .selbox input[type="checkbox"] {width: 18px; height: 18px;}
.request .selbox input[type="radio"] {width: 18px; height: 18px; margin: 0;}
.request .selbox > span {font-size: 0.8rem; color: #666;}
.request .selbox label > span {font-weight: bold; font-size: 1.1rem; line-height: 1.2;}



/* 개인정보 수집 동의 */
.prpo {margin-top: 30px; }
.prpo .header {font-size: 0.9rem; margin-bottom: 10px; vertical-align: middle; font-weight: 700;}
.prpo .header input[type="checkbox"] {width: 20px; height: 20px; margin-right: 10px;}
.prpo .agree > div:first-child {
  display: block; width: calc(100% - 40px); height: 200px; padding: 15px 20px; 
  border:solid #AAA 1px; overflow: scroll;
}
.prpo .agree > div > p {font-size: 0.9rem; letter-spacing: -1px; margin-bottom: 10px;}
.prpo .agree > div > p:last-child {margin-bottom: 0;}
.prpo .agree > div > p > span { font-weight: 700; }



/* 뉴스핌민주주의상 */
/* .award {border: 4px solid pink;} */
.award h3 {margin-bottom: 20px; font-weight: bolder; font-size: 2.2rem; color: #ddd; text-align: center;}
.award h3 span:nth-child(1) {margin-right: 20px;}
.award .snav {margin-bottom: 30px; padding: 10px 20px; background-color: #eee;}
.award .snav ul {display: flex; align-items: center; flex-wrap: wrap;}
.award .snav ul li {margin: 5px 10px 5px 0;}
.award .snav ul li a {display: inline-block; padding: 10px 14px; font-weight: bold; font-size: 0.9rem; color: #fff; border-radius: 10px;}
.award .snav ul li:nth-child(odd) a {background-color: #3e5487;}
.award .snav ul li:nth-child(even) a {background-color: #3a735e;}
.award .snav ul li:nth-child(odd) a:hover {background-color: #65769f;}
.award .snav ul li:nth-child(even) a:hover {background-color: #618f7e;}
.award section {background-color: #eee; margin-bottom: 20px; padding: 20px 20px 40px 20px; border-radius: 30px;}
.award .inbox h2 {display: flex; padding-bottom: 10px; font-weight: bold; border-bottom: 2px dashed rgba(255, 255, 255, 0.6);}
.award .inbox h2 p {margin-right: 10px;}
.award .inbox h2 p:nth-child(1) span {font-size: 2.2rem;}
.award .inbox h2 p:nth-child(2) {margin-top: 10px;}
.award .inbox h2 span {font-size: 1.1rem; font-weight: bold; letter-spacing: -1px; line-height: 1.4;}
.award .inbox h2 .fsize1 {margin: 0 10px; font-size: 1.2rem;}
.award section > div {padding: 5px 10px;}
.award section > div .txt1 {
    font-size: 0.9rem;
    font-weight: bold;
}
.award section > div p {margin-bottom: 15px; line-height: 1.6; font-size: 0.95rem;}
.award section > div p:last-child {margin-bottom: 0;}

.award .no1 h2 span:nth-child(1) {color: #3e5487;}
.award .no2 h2 span:nth-child(1) {color: #3a735e;}
.award .no3 h2 span:nth-child(1) {color: #3e5487;}
.award .no4 h2 span:nth-child(1) {color: #3a735e;}
.award .no5 h2 span:nth-child(1) {color: #3e5487;}

.award .no1 h2 {color: #2a3c6b;}
.award .no2 h2 {color: #275845;}
.award .no3 h2 {color: #2a3c6b;}
.award .no4 h2 {color: #275845;}
.award .no5 h2 {color: #2a3c6b;}


/* 01. 취지 */
.award .no1 {border: 1px solid #c5cbdb; background-color: #d8dde7;}


/* 02. 수상자 발표 */
.award .no2 {border: 1px solid #c4d5ce; background-color: #d8e3df;}


/* 03. 민주주의상이란 */
.award .no3 {border: 1px solid #c5cbdb; background-color: #d8dde7;}
.award .no3 ul {
  margin-top: 20px;
}
.award .no3 ul li span:nth-child(1) {
    margin-right: 10px;
    /* font-size: 1.2rem; */
    font-weight: bold;
}
.award .no3 ul li span:nth-child(2) {
    font-size: 0.9rem;
    font-weight: bold;
    color: #666;
}

/* 04. 후보 선정 과정 */
.award .no4 {border: 1px solid #c4d5ce; background-color: #d8e3df;}


/* 05. 후보 선정 기준 */
.award .no5 {border: 1px solid #c5cbdb; background-color: #d8dde7;}
.award .no5 ul li {
    margin-bottom: 5px;
    padding: 5px 5px 5px 20px;
    font-weight: bold;
    font-size: 0.9rem;
    color: #333;
    background: rgba(255, 255, 255, 0.3) url(../images/icon.png) no-repeat 10px -64px / auto;
}



/* 협찬사 */
.sponsor .inbox {
  display: flex; justify-self: center; align-items: center;
  padding: 20px 20px; border: 1px solid #ddd; border-radius: 20px;
}
.sponsor .inbox .box {display: flex; justify-content: space-between; flex-wrap: wrap;}
.sponsor .inbox .box span {margin: 15px 0; width: 30%;}
.sponsor .inbox .box span img {display: block;}