
:root {
  --primary-color: #ec470e;
  --secondary-color: #cd211d;
  --text-color: #323232;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-60 {
  margin-top: 60px;
}
.d-flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.align-items-start {
  align-items: flex-start;
}
.flex-lg-column {
  flex-direction: column;
}
@media (min-width: 1440px) {
  .container {
    width: 1320px;
  }
}

.language-btn {
  background-color: rgba(31,31,31,0.8);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  margin-top: 40px;
  color: rgba(255, 255, 255, .5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.language-btn a {
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.5);
}
.language-btn a.active {
  color: rgba(255, 255, 255, 1);
}

.language-re-btn {
  display: inline-block;
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
}
.language-re-btn a {
  background-color: rgba(31,31,31,0.8);
  padding: 6px 10px;
  border-radius: 5px;
  color: rgba(255, 255, 255, .5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.language-re-btn a.active {
  color: rgba(255, 255, 255, 1);
  background-color: rgba(31,31,31,.9);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.news-section {
  position: relative;
  background: url("../../images/music.png") no-repeat right -100px;
  padding: 30px 0;
}
.news-section:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 60%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#2B221D 0 60%, transparent 60% 100%);
  z-index: -1;
}

.title-01 {
  position: relative;
  font-weight: 700;
  color: #fff;
  padding-top: 20px;
  margin-bottom: 30px;
}
.title-01:before {
  position: absolute;
  top: 1px;
  left: 0;
  content: '';
  width: 240px;
  height: 1px;
  background: var(--primary-color);
  margin-bottom: 10px;
}
.title-01:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 96px;
  height: 3px;
  background: var(--primary-color);
  margin-bottom: 10px;
}
.title-01 span {
  font-weight: normal;
  color: var(--primary-color);
  font-size: 1.2rem;
  padding-left: 10px;
}

.news-nav {
  width: 200px;
  margin-right: 30px;
}
.news-nav button {
  color: #fff;
  font: 700 1.05rem/1.5 sans-serif;
  text-wrap: nowrap;
  white-space: nowrap;
  margin-top: 30px;
  appearance: none;
  background: none;
  border: none;
  padding:5px 15px;
}
.news-nav button.active {
  color: #EC470E;
  border-radius: 25px;
  border: 1px solid var(--primary-color);
}

.news-box .news-item {
  width: 30%;
  background: #fff;
  border: 1px solid #3D0E01;
  padding: 20px;
  transition: transform .5s;
}
.news-box .news-item .news-title {
  font: 600 1.2rem/1.5 sans-serif;
  color: var(--text-color);
}
.news-img {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  margin: 15px 0;
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}
.news-box .news-item .news-text p{
  font: normal 1rem/1.5 sans-serif;
  color: #4C4645;
}
.news-box .news-item .news-more {
  margin-top: 15px;
  font-size: .88rem;
  color: #66615F;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}
.news-box .news-item .news-more:hover {
  color: var(--primary-color);
  text-decoration: none;
}
.news-box .news-item .news-more span,
.news-box .news-item .news-more i {
  vertical-align: middle;
}
.news-box .news-item .news-date span {
  display: block;
}
.news-box .news-item .news-date span:first-child {
  font-size: 1.8rem;
  color: #66615F;
}
.news-box .news-item:hover {
  background: #5e4c40;
  border-bottom: 2px solid var(--primary-color);
  transform: scaleY(1.05);
}
.news-box .news-item:hover div,
.news-box .news-item:hover h4,
.news-box .news-item:hover p,
.news-box .news-item:hover a,
.news-box .news-item:hover .news-date span{
  color: #fff;
}
@media (max-width: 1024px) {
  .news-section-box {
    flex-direction: column;
  }
  .flex-md-row {
    flex-direction: row;
  }
  .news-nav button {
    margin-top: 0;
    margin-bottom: 20px;
    text-wrap: nowrap;
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .news-section:before {
    background: #2B221D;
  }
  .news-nav button {
    margin-top: 0;
    margin-bottom: 0;
  }
  .news-box {
    flex-direction: column;
  }

  .news-box .news-item {
    width: 100%;
    margin-top: 30px;
  }
}


.news-block-more,
.news-block-more2 {
  text-align: center;
}
.news-block-more > a,
.news-block-more2 > a {
  position: relative;
  display: inline-block;
  background: var(--primary-color);
  padding: 10px 40px 10px 30px;
  border-radius: 40px;
  color: #fff;
  text-wrap: nowrap;
  white-space: nowrap;
}
.news-block-more2 > a > i {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}
.news-block-more2 > a > span {
  margin-left: 35px;
}
.news-block-more > a > span {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  background: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
}
.news-block-more > a > span> i {
  color: var(--primary-color);
}
.news-block-more > a:hover,
.news-block-more2 > a:hover {
  background: var(--secondary-color);
}



/*footer*/
.site-footer .widget-title h3 span {
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 0.5em;
}
.footer-add .nav-tabs {
  border: none;
}
.footer-add .nav-link {
  background: none;
  appearance: none;
  color: rgba(255, 255, 255, 0.6);
  font-weight: bold;
  border: none;
}
.footer-add .nav-link.active{
  border-bottom: 1px solid var(--primary-color);
  color: rgba(255, 255, 255, 1);
  padding-bottom: 0.5em;
}
@media (max-width: 991px) {
  .about-widget {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .site-footer .link-widget ul > li + li {
    margin-top: 15px;
  }
  .site-footer .contact-widget .social-icons {
    text-align: right;
  }
}
@media (max-width: 767px) {
  .site-footer .contact-widget .social-icons {
    text-align: left;
  }
}
.contact-icon  {
  display: inline-block;
  width: 16px;
  height: 20px;
  vertical-align: middle;
  background: url("../../images/add-icon.png") no-repeat;
  background-size: 16px;
}
.i-add {
  background-position: 0 -8px;
}
.i-phone {
  background-position: 0 -60px;
}
.i-email {
  background-position: 0 -112px;
}

.ti-tw {
  fill: #fff;
  width: 20px;
  height: 20px;
  margin-top: 10px;
}
.ti-tw:hover {
  fill: var(--secondary-color);
}

.my-5 {
  margin-top: 60px;
  margin-bottom: 60px;
}
.text-white {
  color: #fff;
}
.text-gold {
  color: #bb9179;
}
@media (min-width: 1024px) {
  .position-lg-absolute {
    position: absolute;
  }
  .position-lg-site {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.about-icon-box {
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
}
.about-icon-box .about-icon-item {
  width: 33.333333%;
  text-align: center;
  margin-top: 50px;
}
.about-icon-box .about-icon-item div > h3 {
  font-size:2rem;
  color: var(--text-color);
}
.about-icon-box .about-icon-item div > h4 > span {
  color: #545454;
  font-weight: normal;
  font-size: 1.1rem;
  padding-bottom: 5px;
  border-bottom: 3px solid var(--primary-color);
  white-space: nowrap;
}
.about-icon-box .about-icon-item > div:first-child {
  display: inline-block;
  background: var(--primary-color);
  width: 68px;
  height: 68px;
  border-radius: 50%;
}
.about-icon-box .about-icon-item > div:first-child i {
  display: block;
  width: 68%;
  height: 68%;
  margin: 10px auto;
  transition: transform .5s;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.about-icon-box .about-icon-item > div:first-child:hover i {
  transform: scale(0.735) translateY(4px);
}

.about-icon-box .about-icon-item > div.about-icon-01 i {
  background-image: url("../../images/home-icon-01.png");
}
.about-icon-box .about-icon-item > div.about-icon-02 i {
  background-image: url("../../images/home-icon-02.png");
}
.about-icon-box .about-icon-item > div.about-icon-03 i {
  background-image: url("../../images/home-icon-03.png");
}
.about-icon-box .about-icon-item > div.about-icon-04 i {
  background-image: url("../../images/home-icon-04.png");
}
.about-icon-box .about-icon-item > div.about-icon-05 i {
  background-image: url("../../images/home-icon-05.png");
}
.about-icon-box .about-icon-item > div.about-icon-06 i {
  background-image: url("../../images/home-icon-06.png");
}
.home-right {
  position: relative;
}
.home-right .national {
  position: absolute;
  bottom: 120px;
  left: -208px;
  width: 600px;
  height: 120px;
  background: url("../../images/national.png") no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  .my-5 {
    margin: 0;
  }
  .about-icon-box {
    padding-top: 0;
  }
  .about-icon-box .about-icon-item {
    width: 33.3%;
  }
}


@media (max-width: 480px) {
  .about-icon-box .about-icon-item {
    width: 50%;
  }
}

/*--------------------------------------------------------------
	 associates-section　　　width: calc(50% - 115px);
--------------------------------------------------------------*/
.associates-section {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}
.associates-section .associates-left {
  width: calc(50% - 115px);
  float: left;
}
.associates-section .associates-area {
  width: calc(50% + 115px);
  float: right;
}
.associates-area .associates-info {
  position: relative;
  max-width: 860px;
  padding: 30px;
  margin-top: 90px;
  margin-bottom: 90px;
  margin-left: -100px;
  background: #2B221D url("../../images/music-02.png") no-repeat right bottom;
  background-size: contain;
}
.associates-area .associates-info h3,
.associates-area .associates-info h4,
.associates-area .associates-info p {
  color: #fff;
}
.associates-area .associates-info h3 {
  position: relative;
}
.associates-area .associates-info h3 span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background: #fff;
  margin-left: 5px;
}
.associates-area .associates-info h4 {
  margin-bottom: 15px;
}
.associates-area .associates-info > span {
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-top: 10px;
}
.associates-info-box {
  flex-wrap: wrap;
}
.associates-info-box > div{
  position: relative;
  width: 45%;
  padding-left: 65px;
  margin-top: 30px;
}
.associates-info-box div .icon {
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  border-radius: 50%;
  border:1px solid var(--primary-color);
  padding: 10px;
}
.associates-info-box div .icon i {
  background: url("../../images/associates-icon.png") no-repeat;
  background-size: 100%;
  display: block;
  width: 32px;
  height: 32px;
}
.associates-info-box div .icon i.associates-icon01 {
  background-position: 0 -3px;
}
.associates-info-box div .icon i.associates-icon02 {
  background-position: 0 -44px;
}
.associates-info-box div .icon i.associates-icon03 {
  background-position: 0 -84px;
}
.associates-info-box div .icon i.associates-icon04 {
  background-position: 0 -126px;
}
.associates-info-box div h4 {
  font-size: 1.2rem;
  margin: 0 0 0.4em;
}
.associates-info-box div p {
  font-size: 0.90rem;
}

@media (max-width: 991px) {
  .associates-section .left-col {
    width: auto;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    float: none;
    height: auto !important;
  }
}

.associates-section .left-col .about-area {
  max-width: 700px;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 100px;
  padding-bottom: 70px;
}
@media (max-width: 1023px) {
  .associates-section .associates-left {
    display: none;
  }
  .associates-section .associates-area {
    width: 100%;
  }
  .associates-area .associates-info {
    max-width: 100%;
    padding: 30px 30px 60px 30px;
    margin: 0 auto;
  }
  .associates-area .associates-info h3 {
    font-size: 1.3rem;
  }
  .associates-area .associates-info h3 span {
    display: none;
  }
}
@media (max-width: 767px) {
  .associates-section {
  }
  .associates-info-box {
    flex-direction: column;
  }
  .associates-info-box > div {
    width: 100%;

  }
}
.bg-gray {
  background: url("../../images/graywhite.jpg") no-repeat top;
  background-size: cover;
}
/*合作单位 */
.co-bg {
  margin-top: 120px;
  background: url("../../images/home-active-bg.jpg") no-repeat top center;
  background-size: auto 44%;
  padding-top: 60px;
}
.cooperate-section .cooerate-box{
  background: white;
  padding: 0 20px 20px 20px;
}
.cooperate-section .cooerate-box div {
  position: relative;
  width: 15%;
  background: white;
  border: 1px solid #777371;
  height: 100px;
  margin-top: 20px;
}
.cooperate-section .cooerate-box div img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
}
@media (max-width: 991px) {
  .co-bg {
    background-size: auto 36%;
    margin-top: 60px;
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .cooperate-section .cooerate-box div {
    width: 30%;
    height: 72px;
  }
}


.active-section {
  /*background: url("../../images/graywhite.jpg") no-repeat 44%;*/
  /*background-size: 100% 100%;*/
}
.co-bg h3,
.co-bg h4,
.co-bg p {
  color: #fff;
}
.active-section .active-box {
  width: 45%;
  padding:30px;
  background: linear-gradient(transparent 0% 30%, #2B221D 30% 100%);
}
@media (max-width: 991px) {
  .active-section .active-box {
    width: 100%;
  }
}
.active-section .active-box:hover {
  background: linear-gradient(transparent 0% 30%, #3d302a 30% 100%);
}
.active-section .active-box .news-img {
  border: 1px solid var(--primary-color);
  overflow: hidden;
}
.active-section .active-box .news-img img {
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
}
.active-section .active-box:hover .news-img img {
  transform: scale(1.2);
}

.title-02 {
  text-align: center;
}
.title-02 h3 {
  position: relative;
}
.title-02 h3:before,
.title-02 h3:after {
  content: "";
  position: absolute;
  bottom: 3px;
  height: 1px;
  width: 3rem;
  background: white;
}
.title-02 h3:before {
  right: 50%;
  margin-right: 6.4rem;
}
.title-02 h3:after {
  left: 50%;
  margin-left: 6.4rem;
}
.title-02-2 h3:before {
  right: 50%;
  margin-right: 4.4rem;
}
.title-02-2 h3:after {
  left: 50%;
  margin-left: 4.4rem;
}
.title-02 span {
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-top: 10px;
}

.news-more {
  color: var(--primary-color);
}
.news-more:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.term-section {
  margin-top: 60px;
  padding-bottom: 180px;
  background: url("../../images/home-form-bg.jpg") no-repeat bottom center;
  background-size: 100% 335px;
}

.term-section .section-title {
  padding-left: 50px;
  padding-right: 60px;
  padding-top: 30px;
  position: relative;
}
.term-section .section-title h3,
.term-section .section-title h3 + span {
  margin-left: 15px;
}
.mytitle-01 h3 {
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 15px;
  color: var(--text-color);
  text-wrap: nowrap;
  white-space: nowrap;
}
.mytitle-01 h3:after {
  position: absolute;
  content: '';
  width:3.2rem ;
  height: 3px;
  bottom: 0;
  left: 0;
  background: var(--primary-color);
}
.term-slider-nav {
  position: absolute;
  bottom: 20px;
}
.term-slider-nav .term-slider-arrows  div {
  background: rgba(255,255,255,.2);
  padding: 15px 30px;
}
.term-slider-nav .term-slider-arrows  div:hover {
  background: rgba(255,255,255,.4);
}
.term-slider-nav .term-slider-arrows .slider-prev {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.term-slider-nav .term-slider-arrows .slider-next {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  margin-left: 1px;
}
.term-slider-nav .term-slider-arrows  div i {
  color: #fff;
}
@media (max-width: 767px) {
  .term-section > div {
    flex-direction: column;
  }
  .term-section > div > .section-title > .news-block-more {
    display: none;
  }
  .term-section > div > .section-title {
    padding-left: 0;
    padding-top:0;
    margin-bottom: 15px;
    position: relative;
  }
  .term-section > div > .section-title h3,
  .term-section > div > .section-title h3 + span {
    display: inline-block;
  }
  .term-section > div > .section-title h3 + span {
    font-size: 1.2rem;
    margin-left: 0;
    display: none;
  }
  .term-slider-nav {
    right: 20px;
    bottom: 10px;
  }
  .term-slider-nav .term-slider-arrows  div {
    background: var(--primary-color);
    padding: 5px 10px;
  }
  .term-slider-nav .term-slider-arrows  div:hover {
    background: var(--secondary-color);
  }
  .term-slider-container {
    width: 100%;
  }

}


.term-slider {
  display: flex;
}
.term-slider-item {
  background: #2B2B2B;
  transition: background-color 0.5s ease-in-out;
}
.term-slider-item:hover {
  background: var(--secondary-color);
  transition: background-color 0.5s ease-in-out;
}
.term-slider-item .img-holder {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.term-slider-item .img-holder img{
  width: 100%;
  min-height: 100%;
  /*height: 320px;*/
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: transform .5s;
  will-change: transform;
}
.term-slider-item:hover .img-holder img{
  filter: grayscale(0%);
  transform: scale(1.2);
}
.term-slider-item .details {
  padding: 15px;
  margin-bottom: 15px;
}
.term-slider-item .details h3 {
  font-size: 1rem;
}
.term-slider-item .details p{
  font-size: 0.8rem;
}
.term-slider-item .details h3,
.term-slider-item .details p{
  color: #fff;
}

.form-section {
  background:#191210;
}
.form-section .container > div {
  background: var(--secondary-color) url("../../images/music-sy.png") no-repeat center;
  background-size: auto 160%;
  color: #fff;
  border-radius: 5px;
  margin-top: -120px;
}
.form-left,
.form-box {
  width: 50%;
  padding: 30px;
  font-size: 1.2rem;
}
.form-left p,
.form-left h3,
.form-left h4 {
  color: #fff;
  /*margin-top: 30px;*/
}
.form-left h3 {
  font-size: 2rem;
}
.form-left h4 {
  font-size: 2.1rem;
  line-height: 3.2rem;
}

.form-box input,
.form-group button {
  width: 100%;
  border-radius: 3px;
}
.input-box {
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.input-box div.input-1 {
  width: 48%;
  margin-top: 15px;
}

.form-box input,
.form-group button {
  height: 50px;
}
.form-group button {
  background: #232332;
}
.form-group button:hover {
  background: #2d2d3d;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: '';
}
@media (max-width: 1320px) {
  .form-left h3 {
    font-size: 1.6rem;
  }
  .form-left h4 {
    font-size: 2rem;
  }
}
@media (max-width: 991px) {
  .form-section .container > div {
    flex-direction: column;
  }
  .form-left,
  .form-box {
    width: 100%;
  }
  .form-left h3 {
    font-size: 1.6rem;
  }
  .form-left h4 {
    font-size: 2rem;
  }
  .form-box {
    padding-top:0;
  }
  .form-left p, .form-left h3, .form-left h4 {
    margin-top: 0;
  }
}